oci-fleetsoftwareupdate 2.77.0 → 2.77.1
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/lib/client.d.ts +51 -45
- package/lib/client.js +53 -44
- package/lib/client.js.map +1 -1
- package/lib/request/abort-fsu-discovery-request.d.ts +1 -1
- package/lib/request/add-fsu-collection-targets-request.d.ts +1 -1
- package/lib/request/cancel-fsu-action-request.d.ts +1 -1
- package/lib/request/change-fsu-action-compartment-request.d.ts +1 -1
- package/lib/request/change-fsu-collection-compartment-request.d.ts +1 -1
- package/lib/request/change-fsu-cycle-compartment-request.d.ts +1 -1
- package/lib/request/change-fsu-discovery-compartment-request.d.ts +1 -1
- package/lib/request/clone-fsu-cycle-request.d.ts +1 -1
- package/lib/request/create-fsu-action-request.d.ts +1 -1
- package/lib/request/create-fsu-collection-request.d.ts +1 -1
- package/lib/request/create-fsu-cycle-request.d.ts +1 -1
- package/lib/request/create-fsu-discovery-request.d.ts +1 -1
- package/lib/request/delete-fsu-action-request.d.ts +1 -1
- package/lib/request/delete-fsu-collection-request.d.ts +1 -1
- package/lib/request/delete-fsu-cycle-request.d.ts +1 -1
- package/lib/request/delete-fsu-discovery-request.d.ts +1 -1
- package/lib/request/delete-fsu-job-request.d.ts +1 -1
- package/lib/request/get-fsu-action-output-content-request.d.ts +1 -1
- package/lib/request/get-fsu-action-request.d.ts +1 -1
- package/lib/request/get-fsu-collection-request.d.ts +1 -1
- package/lib/request/get-fsu-cycle-request.d.ts +1 -1
- package/lib/request/get-fsu-discovery-request.d.ts +1 -1
- package/lib/request/get-fsu-job-output-content-request.d.ts +1 -1
- package/lib/request/get-fsu-job-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-fsu-actions-request.d.ts +1 -1
- package/lib/request/list-fsu-collection-targets-request.d.ts +1 -1
- package/lib/request/list-fsu-collections-request.d.ts +1 -1
- package/lib/request/list-fsu-cycles-request.d.ts +1 -1
- package/lib/request/list-fsu-discoveries-request.d.ts +1 -1
- package/lib/request/list-fsu-discovery-targets-request.d.ts +1 -1
- package/lib/request/list-fsu-job-outputs-request.d.ts +1 -1
- package/lib/request/list-fsu-jobs-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-fsu-collection-targets-request.d.ts +1 -1
- package/lib/request/resume-fsu-action-request.d.ts +1 -1
- package/lib/request/retry-fsu-job-request.d.ts +1 -1
- package/lib/request/update-fsu-action-request.d.ts +1 -1
- package/lib/request/update-fsu-collection-request.d.ts +1 -1
- package/lib/request/update-fsu-cycle-request.d.ts +1 -1
- package/lib/request/update-fsu-discovery-request.d.ts +1 -1
- package/lib/request/update-fsu-job-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -47,6 +47,7 @@ const common = require("oci-common");
|
|
|
47
47
|
const model = __importStar(require("./model"));
|
|
48
48
|
const fleetsoftwareupdate_waiter_1 = require("./fleetsoftwareupdate-waiter");
|
|
49
49
|
const oci_common_1 = require("oci-common");
|
|
50
|
+
const Breaker = require("opossum");
|
|
50
51
|
// ===============================================
|
|
51
52
|
// This file is autogenerated - Please do not edit
|
|
52
53
|
// ===============================================
|
|
@@ -183,6 +184,14 @@ class FleetSoftwareUpdateClient {
|
|
|
183
184
|
}
|
|
184
185
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
185
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
189
|
+
*/
|
|
190
|
+
shutdownCircuitBreaker() {
|
|
191
|
+
if (this._circuitBreaker) {
|
|
192
|
+
this._circuitBreaker.shutdown();
|
|
193
|
+
}
|
|
194
|
+
}
|
|
186
195
|
/**
|
|
187
196
|
* Aborts Exadata Fleet Update Discovery in progress.
|
|
188
197
|
*
|
|
@@ -190,7 +199,7 @@ class FleetSoftwareUpdateClient {
|
|
|
190
199
|
* @param AbortFsuDiscoveryRequest
|
|
191
200
|
* @return AbortFsuDiscoveryResponse
|
|
192
201
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/AbortFsuDiscovery.ts.html |here} to see how to use AbortFsuDiscovery API.
|
|
194
203
|
*/
|
|
195
204
|
abortFsuDiscovery(abortFsuDiscoveryRequest) {
|
|
196
205
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -250,7 +259,7 @@ class FleetSoftwareUpdateClient {
|
|
|
250
259
|
* @param AddFsuCollectionTargetsRequest
|
|
251
260
|
* @return AddFsuCollectionTargetsResponse
|
|
252
261
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/AddFsuCollectionTargets.ts.html |here} to see how to use AddFsuCollectionTargets API.
|
|
254
263
|
*/
|
|
255
264
|
addFsuCollectionTargets(addFsuCollectionTargetsRequest) {
|
|
256
265
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -313,7 +322,7 @@ class FleetSoftwareUpdateClient {
|
|
|
313
322
|
* @param CancelFsuActionRequest
|
|
314
323
|
* @return CancelFsuActionResponse
|
|
315
324
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CancelFsuAction.ts.html |here} to see how to use CancelFsuAction API.
|
|
317
326
|
*/
|
|
318
327
|
cancelFsuAction(cancelFsuActionRequest) {
|
|
319
328
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -371,7 +380,7 @@ class FleetSoftwareUpdateClient {
|
|
|
371
380
|
* @param ChangeFsuActionCompartmentRequest
|
|
372
381
|
* @return ChangeFsuActionCompartmentResponse
|
|
373
382
|
* @throws OciError when an error occurs
|
|
374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ChangeFsuActionCompartment.ts.html |here} to see how to use ChangeFsuActionCompartment API.
|
|
375
384
|
*/
|
|
376
385
|
changeFsuActionCompartment(changeFsuActionCompartmentRequest) {
|
|
377
386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -435,7 +444,7 @@ class FleetSoftwareUpdateClient {
|
|
|
435
444
|
* @param ChangeFsuCollectionCompartmentRequest
|
|
436
445
|
* @return ChangeFsuCollectionCompartmentResponse
|
|
437
446
|
* @throws OciError when an error occurs
|
|
438
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
447
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ChangeFsuCollectionCompartment.ts.html |here} to see how to use ChangeFsuCollectionCompartment API.
|
|
439
448
|
*/
|
|
440
449
|
changeFsuCollectionCompartment(changeFsuCollectionCompartmentRequest) {
|
|
441
450
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -499,7 +508,7 @@ class FleetSoftwareUpdateClient {
|
|
|
499
508
|
* @param ChangeFsuCycleCompartmentRequest
|
|
500
509
|
* @return ChangeFsuCycleCompartmentResponse
|
|
501
510
|
* @throws OciError when an error occurs
|
|
502
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
511
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ChangeFsuCycleCompartment.ts.html |here} to see how to use ChangeFsuCycleCompartment API.
|
|
503
512
|
*/
|
|
504
513
|
changeFsuCycleCompartment(changeFsuCycleCompartmentRequest) {
|
|
505
514
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -563,7 +572,7 @@ class FleetSoftwareUpdateClient {
|
|
|
563
572
|
* @param ChangeFsuDiscoveryCompartmentRequest
|
|
564
573
|
* @return ChangeFsuDiscoveryCompartmentResponse
|
|
565
574
|
* @throws OciError when an error occurs
|
|
566
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
575
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ChangeFsuDiscoveryCompartment.ts.html |here} to see how to use ChangeFsuDiscoveryCompartment API.
|
|
567
576
|
*/
|
|
568
577
|
changeFsuDiscoveryCompartment(changeFsuDiscoveryCompartmentRequest) {
|
|
569
578
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -621,7 +630,7 @@ class FleetSoftwareUpdateClient {
|
|
|
621
630
|
* @param CloneFsuCycleRequest
|
|
622
631
|
* @return CloneFsuCycleResponse
|
|
623
632
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
633
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CloneFsuCycle.ts.html |here} to see how to use CloneFsuCycle API.
|
|
625
634
|
*/
|
|
626
635
|
cloneFsuCycle(cloneFsuCycleRequest) {
|
|
627
636
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -697,7 +706,7 @@ class FleetSoftwareUpdateClient {
|
|
|
697
706
|
* @param CreateFsuActionRequest
|
|
698
707
|
* @return CreateFsuActionResponse
|
|
699
708
|
* @throws OciError when an error occurs
|
|
700
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
709
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CreateFsuAction.ts.html |here} to see how to use CreateFsuAction API.
|
|
701
710
|
*/
|
|
702
711
|
createFsuAction(createFsuActionRequest) {
|
|
703
712
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -771,7 +780,7 @@ class FleetSoftwareUpdateClient {
|
|
|
771
780
|
* @param CreateFsuCollectionRequest
|
|
772
781
|
* @return CreateFsuCollectionResponse
|
|
773
782
|
* @throws OciError when an error occurs
|
|
774
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
783
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CreateFsuCollection.ts.html |here} to see how to use CreateFsuCollection API.
|
|
775
784
|
*/
|
|
776
785
|
createFsuCollection(createFsuCollectionRequest) {
|
|
777
786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -845,7 +854,7 @@ class FleetSoftwareUpdateClient {
|
|
|
845
854
|
* @param CreateFsuCycleRequest
|
|
846
855
|
* @return CreateFsuCycleResponse
|
|
847
856
|
* @throws OciError when an error occurs
|
|
848
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
857
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CreateFsuCycle.ts.html |here} to see how to use CreateFsuCycle API.
|
|
849
858
|
*/
|
|
850
859
|
createFsuCycle(createFsuCycleRequest) {
|
|
851
860
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -919,7 +928,7 @@ class FleetSoftwareUpdateClient {
|
|
|
919
928
|
* @param CreateFsuDiscoveryRequest
|
|
920
929
|
* @return CreateFsuDiscoveryResponse
|
|
921
930
|
* @throws OciError when an error occurs
|
|
922
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/CreateFsuDiscovery.ts.html |here} to see how to use CreateFsuDiscovery API.
|
|
923
932
|
*/
|
|
924
933
|
createFsuDiscovery(createFsuDiscoveryRequest) {
|
|
925
934
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -993,7 +1002,7 @@ class FleetSoftwareUpdateClient {
|
|
|
993
1002
|
* @param DeleteFsuActionRequest
|
|
994
1003
|
* @return DeleteFsuActionResponse
|
|
995
1004
|
* @throws OciError when an error occurs
|
|
996
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1005
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/DeleteFsuAction.ts.html |here} to see how to use DeleteFsuAction API.
|
|
997
1006
|
*/
|
|
998
1007
|
deleteFsuAction(deleteFsuActionRequest) {
|
|
999
1008
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1054,7 +1063,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1054
1063
|
* @param DeleteFsuCollectionRequest
|
|
1055
1064
|
* @return DeleteFsuCollectionResponse
|
|
1056
1065
|
* @throws OciError when an error occurs
|
|
1057
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1066
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/DeleteFsuCollection.ts.html |here} to see how to use DeleteFsuCollection API.
|
|
1058
1067
|
*/
|
|
1059
1068
|
deleteFsuCollection(deleteFsuCollectionRequest) {
|
|
1060
1069
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1115,7 +1124,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1115
1124
|
* @param DeleteFsuCycleRequest
|
|
1116
1125
|
* @return DeleteFsuCycleResponse
|
|
1117
1126
|
* @throws OciError when an error occurs
|
|
1118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/DeleteFsuCycle.ts.html |here} to see how to use DeleteFsuCycle API.
|
|
1119
1128
|
*/
|
|
1120
1129
|
deleteFsuCycle(deleteFsuCycleRequest) {
|
|
1121
1130
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1176,7 +1185,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1176
1185
|
* @param DeleteFsuDiscoveryRequest
|
|
1177
1186
|
* @return DeleteFsuDiscoveryResponse
|
|
1178
1187
|
* @throws OciError when an error occurs
|
|
1179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/DeleteFsuDiscovery.ts.html |here} to see how to use DeleteFsuDiscovery API.
|
|
1180
1189
|
*/
|
|
1181
1190
|
deleteFsuDiscovery(deleteFsuDiscoveryRequest) {
|
|
1182
1191
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1237,7 +1246,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1237
1246
|
* @param DeleteFsuJobRequest
|
|
1238
1247
|
* @return DeleteFsuJobResponse
|
|
1239
1248
|
* @throws OciError when an error occurs
|
|
1240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/DeleteFsuJob.ts.html |here} to see how to use DeleteFsuJob API.
|
|
1241
1250
|
*/
|
|
1242
1251
|
deleteFsuJob(deleteFsuJobRequest) {
|
|
1243
1252
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1293,7 +1302,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1293
1302
|
* @param GetFsuActionRequest
|
|
1294
1303
|
* @return GetFsuActionResponse
|
|
1295
1304
|
* @throws OciError when an error occurs
|
|
1296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1305
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuAction.ts.html |here} to see how to use GetFsuAction API.
|
|
1297
1306
|
*/
|
|
1298
1307
|
getFsuAction(getFsuActionRequest) {
|
|
1299
1308
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1358,7 +1367,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1358
1367
|
* @param GetFsuActionOutputContentRequest
|
|
1359
1368
|
* @return GetFsuActionOutputContentResponse
|
|
1360
1369
|
* @throws OciError when an error occurs
|
|
1361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuActionOutputContent.ts.html |here} to see how to use GetFsuActionOutputContent API.
|
|
1362
1371
|
*/
|
|
1363
1372
|
getFsuActionOutputContent(getFsuActionOutputContentRequest) {
|
|
1364
1373
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1416,7 +1425,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1416
1425
|
* @param GetFsuCollectionRequest
|
|
1417
1426
|
* @return GetFsuCollectionResponse
|
|
1418
1427
|
* @throws OciError when an error occurs
|
|
1419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuCollection.ts.html |here} to see how to use GetFsuCollection API.
|
|
1420
1429
|
*/
|
|
1421
1430
|
getFsuCollection(getFsuCollectionRequest) {
|
|
1422
1431
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1480,7 +1489,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1480
1489
|
* @param GetFsuCycleRequest
|
|
1481
1490
|
* @return GetFsuCycleResponse
|
|
1482
1491
|
* @throws OciError when an error occurs
|
|
1483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuCycle.ts.html |here} to see how to use GetFsuCycle API.
|
|
1484
1493
|
*/
|
|
1485
1494
|
getFsuCycle(getFsuCycleRequest) {
|
|
1486
1495
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1544,7 +1553,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1544
1553
|
* @param GetFsuDiscoveryRequest
|
|
1545
1554
|
* @return GetFsuDiscoveryResponse
|
|
1546
1555
|
* @throws OciError when an error occurs
|
|
1547
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuDiscovery.ts.html |here} to see how to use GetFsuDiscovery API.
|
|
1548
1557
|
*/
|
|
1549
1558
|
getFsuDiscovery(getFsuDiscoveryRequest) {
|
|
1550
1559
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1608,7 +1617,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1608
1617
|
* @param GetFsuJobRequest
|
|
1609
1618
|
* @return GetFsuJobResponse
|
|
1610
1619
|
* @throws OciError when an error occurs
|
|
1611
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuJob.ts.html |here} to see how to use GetFsuJob API.
|
|
1612
1621
|
*/
|
|
1613
1622
|
getFsuJob(getFsuJobRequest) {
|
|
1614
1623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1672,7 +1681,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1672
1681
|
* @param GetFsuJobOutputContentRequest
|
|
1673
1682
|
* @return GetFsuJobOutputContentResponse
|
|
1674
1683
|
* @throws OciError when an error occurs
|
|
1675
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1684
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetFsuJobOutputContent.ts.html |here} to see how to use GetFsuJobOutputContent API.
|
|
1676
1685
|
*/
|
|
1677
1686
|
getFsuJobOutputContent(getFsuJobOutputContentRequest) {
|
|
1678
1687
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1730,7 +1739,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1730
1739
|
* @param GetWorkRequestRequest
|
|
1731
1740
|
* @return GetWorkRequestResponse
|
|
1732
1741
|
* @throws OciError when an error occurs
|
|
1733
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1742
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1734
1743
|
*/
|
|
1735
1744
|
getWorkRequest(getWorkRequestRequest) {
|
|
1736
1745
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1799,7 +1808,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1799
1808
|
* @param ListFsuActionsRequest
|
|
1800
1809
|
* @return ListFsuActionsResponse
|
|
1801
1810
|
* @throws OciError when an error occurs
|
|
1802
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1811
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuActions.ts.html |here} to see how to use ListFsuActions API.
|
|
1803
1812
|
*/
|
|
1804
1813
|
listFsuActions(listFsuActionsRequest) {
|
|
1805
1814
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1871,7 +1880,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1871
1880
|
* @param ListFsuCollectionTargetsRequest
|
|
1872
1881
|
* @return ListFsuCollectionTargetsResponse
|
|
1873
1882
|
* @throws OciError when an error occurs
|
|
1874
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1883
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuCollectionTargets.ts.html |here} to see how to use ListFsuCollectionTargets API.
|
|
1875
1884
|
*/
|
|
1876
1885
|
listFsuCollectionTargets(listFsuCollectionTargetsRequest) {
|
|
1877
1886
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1943,7 +1952,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1943
1952
|
* @param ListFsuCollectionsRequest
|
|
1944
1953
|
* @return ListFsuCollectionsResponse
|
|
1945
1954
|
* @throws OciError when an error occurs
|
|
1946
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1955
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuCollections.ts.html |here} to see how to use ListFsuCollections API.
|
|
1947
1956
|
*/
|
|
1948
1957
|
listFsuCollections(listFsuCollectionsRequest) {
|
|
1949
1958
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2014,7 +2023,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2014
2023
|
* @param ListFsuCyclesRequest
|
|
2015
2024
|
* @return ListFsuCyclesResponse
|
|
2016
2025
|
* @throws OciError when an error occurs
|
|
2017
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2026
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuCycles.ts.html |here} to see how to use ListFsuCycles API.
|
|
2018
2027
|
*/
|
|
2019
2028
|
listFsuCycles(listFsuCyclesRequest) {
|
|
2020
2029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2087,7 +2096,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2087
2096
|
* @param ListFsuDiscoveriesRequest
|
|
2088
2097
|
* @return ListFsuDiscoveriesResponse
|
|
2089
2098
|
* @throws OciError when an error occurs
|
|
2090
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2099
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuDiscoveries.ts.html |here} to see how to use ListFsuDiscoveries API.
|
|
2091
2100
|
*/
|
|
2092
2101
|
listFsuDiscoveries(listFsuDiscoveriesRequest) {
|
|
2093
2102
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2157,7 +2166,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2157
2166
|
* @param ListFsuDiscoveryTargetsRequest
|
|
2158
2167
|
* @return ListFsuDiscoveryTargetsResponse
|
|
2159
2168
|
* @throws OciError when an error occurs
|
|
2160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuDiscoveryTargets.ts.html |here} to see how to use ListFsuDiscoveryTargets API.
|
|
2161
2170
|
*/
|
|
2162
2171
|
listFsuDiscoveryTargets(listFsuDiscoveryTargetsRequest) {
|
|
2163
2172
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2229,7 +2238,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2229
2238
|
* @param ListFsuJobOutputsRequest
|
|
2230
2239
|
* @return ListFsuJobOutputsResponse
|
|
2231
2240
|
* @throws OciError when an error occurs
|
|
2232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuJobOutputs.ts.html |here} to see how to use ListFsuJobOutputs API.
|
|
2233
2242
|
*/
|
|
2234
2243
|
listFsuJobOutputs(listFsuJobOutputsRequest) {
|
|
2235
2244
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2296,7 +2305,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2296
2305
|
* @param ListFsuJobsRequest
|
|
2297
2306
|
* @return ListFsuJobsResponse
|
|
2298
2307
|
* @throws OciError when an error occurs
|
|
2299
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2308
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListFsuJobs.ts.html |here} to see how to use ListFsuJobs API.
|
|
2300
2309
|
*/
|
|
2301
2310
|
listFsuJobs(listFsuJobsRequest) {
|
|
2302
2311
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2366,7 +2375,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2366
2375
|
* @param ListWorkRequestErrorsRequest
|
|
2367
2376
|
* @return ListWorkRequestErrorsResponse
|
|
2368
2377
|
* @throws OciError when an error occurs
|
|
2369
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2370
2379
|
*/
|
|
2371
2380
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2372
2381
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2435,7 +2444,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2435
2444
|
* @param ListWorkRequestLogsRequest
|
|
2436
2445
|
* @return ListWorkRequestLogsResponse
|
|
2437
2446
|
* @throws OciError when an error occurs
|
|
2438
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2447
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2439
2448
|
*/
|
|
2440
2449
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2441
2450
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2504,7 +2513,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2504
2513
|
* @param ListWorkRequestsRequest
|
|
2505
2514
|
* @return ListWorkRequestsResponse
|
|
2506
2515
|
* @throws OciError when an error occurs
|
|
2507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2508
2517
|
*/
|
|
2509
2518
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2510
2519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2577,7 +2586,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2577
2586
|
* @param RemoveFsuCollectionTargetsRequest
|
|
2578
2587
|
* @return RemoveFsuCollectionTargetsResponse
|
|
2579
2588
|
* @throws OciError when an error occurs
|
|
2580
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/RemoveFsuCollectionTargets.ts.html |here} to see how to use RemoveFsuCollectionTargets API.
|
|
2581
2590
|
*/
|
|
2582
2591
|
removeFsuCollectionTargets(removeFsuCollectionTargetsRequest) {
|
|
2583
2592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2640,7 +2649,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2640
2649
|
* @param ResumeFsuActionRequest
|
|
2641
2650
|
* @return ResumeFsuActionResponse
|
|
2642
2651
|
* @throws OciError when an error occurs
|
|
2643
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/ResumeFsuAction.ts.html |here} to see how to use ResumeFsuAction API.
|
|
2644
2653
|
*/
|
|
2645
2654
|
resumeFsuAction(resumeFsuActionRequest) {
|
|
2646
2655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2698,7 +2707,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2698
2707
|
* @param RetryFsuJobRequest
|
|
2699
2708
|
* @return RetryFsuJobResponse
|
|
2700
2709
|
* @throws OciError when an error occurs
|
|
2701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2710
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/RetryFsuJob.ts.html |here} to see how to use RetryFsuJob API.
|
|
2702
2711
|
*/
|
|
2703
2712
|
retryFsuJob(retryFsuJobRequest) {
|
|
2704
2713
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2755,7 +2764,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2755
2764
|
* @param UpdateFsuActionRequest
|
|
2756
2765
|
* @return UpdateFsuActionResponse
|
|
2757
2766
|
* @throws OciError when an error occurs
|
|
2758
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2767
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/UpdateFsuAction.ts.html |here} to see how to use UpdateFsuAction API.
|
|
2759
2768
|
*/
|
|
2760
2769
|
updateFsuAction(updateFsuActionRequest) {
|
|
2761
2770
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2817,7 +2826,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2817
2826
|
* @param UpdateFsuCollectionRequest
|
|
2818
2827
|
* @return UpdateFsuCollectionResponse
|
|
2819
2828
|
* @throws OciError when an error occurs
|
|
2820
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2829
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/UpdateFsuCollection.ts.html |here} to see how to use UpdateFsuCollection API.
|
|
2821
2830
|
*/
|
|
2822
2831
|
updateFsuCollection(updateFsuCollectionRequest) {
|
|
2823
2832
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2879,7 +2888,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2879
2888
|
* @param UpdateFsuCycleRequest
|
|
2880
2889
|
* @return UpdateFsuCycleResponse
|
|
2881
2890
|
* @throws OciError when an error occurs
|
|
2882
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2891
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/UpdateFsuCycle.ts.html |here} to see how to use UpdateFsuCycle API.
|
|
2883
2892
|
*/
|
|
2884
2893
|
updateFsuCycle(updateFsuCycleRequest) {
|
|
2885
2894
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2941,7 +2950,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2941
2950
|
* @param UpdateFsuDiscoveryRequest
|
|
2942
2951
|
* @return UpdateFsuDiscoveryResponse
|
|
2943
2952
|
* @throws OciError when an error occurs
|
|
2944
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2953
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/UpdateFsuDiscovery.ts.html |here} to see how to use UpdateFsuDiscovery API.
|
|
2945
2954
|
*/
|
|
2946
2955
|
updateFsuDiscovery(updateFsuDiscoveryRequest) {
|
|
2947
2956
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2998,7 +3007,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2998
3007
|
* @param UpdateFsuJobRequest
|
|
2999
3008
|
* @return UpdateFsuJobResponse
|
|
3000
3009
|
* @throws OciError when an error occurs
|
|
3001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
3010
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/fleetsoftwareupdate/UpdateFsuJob.ts.html |here} to see how to use UpdateFsuJob API.
|
|
3002
3011
|
*/
|
|
3003
3012
|
updateFsuJob(updateFsuJobRequest) {
|
|
3004
3013
|
return __awaiter(this, void 0, void 0, function* () {
|