oci-fleetsoftwareupdate 2.67.0 → 2.68.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 +45 -44
- package/lib/client.js +49 -45
- 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
|
@@ -63,6 +63,7 @@ class FleetSoftwareUpdateClient {
|
|
|
63
63
|
this["_defaultHeaders"] = {};
|
|
64
64
|
this._circuitBreaker = null;
|
|
65
65
|
this._httpOptions = undefined;
|
|
66
|
+
this._bodyDuplexMode = undefined;
|
|
66
67
|
this.targetService = "FleetSoftwareUpdate";
|
|
67
68
|
this._regionId = "";
|
|
68
69
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -77,6 +78,9 @@ class FleetSoftwareUpdateClient {
|
|
|
77
78
|
this._httpOptions = clientConfiguration.httpOptions
|
|
78
79
|
? clientConfiguration.httpOptions
|
|
79
80
|
: undefined;
|
|
81
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
82
|
+
? clientConfiguration.bodyDuplexMode
|
|
83
|
+
: undefined;
|
|
80
84
|
}
|
|
81
85
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
82
86
|
const specCircuitBreakerEnabled = true;
|
|
@@ -87,7 +91,7 @@ class FleetSoftwareUpdateClient {
|
|
|
87
91
|
}
|
|
88
92
|
this._httpClient =
|
|
89
93
|
params.httpClient ||
|
|
90
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
94
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
91
95
|
if (params.authenticationDetailsProvider &&
|
|
92
96
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
93
97
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -182,7 +186,7 @@ class FleetSoftwareUpdateClient {
|
|
|
182
186
|
* @param AbortFsuDiscoveryRequest
|
|
183
187
|
* @return AbortFsuDiscoveryResponse
|
|
184
188
|
* @throws OciError when an error occurs
|
|
185
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/AbortFsuDiscovery.ts.html |here} to see how to use AbortFsuDiscovery API.
|
|
186
190
|
*/
|
|
187
191
|
abortFsuDiscovery(abortFsuDiscoveryRequest) {
|
|
188
192
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -242,7 +246,7 @@ class FleetSoftwareUpdateClient {
|
|
|
242
246
|
* @param AddFsuCollectionTargetsRequest
|
|
243
247
|
* @return AddFsuCollectionTargetsResponse
|
|
244
248
|
* @throws OciError when an error occurs
|
|
245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/AddFsuCollectionTargets.ts.html |here} to see how to use AddFsuCollectionTargets API.
|
|
246
250
|
*/
|
|
247
251
|
addFsuCollectionTargets(addFsuCollectionTargetsRequest) {
|
|
248
252
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -305,7 +309,7 @@ class FleetSoftwareUpdateClient {
|
|
|
305
309
|
* @param CancelFsuActionRequest
|
|
306
310
|
* @return CancelFsuActionResponse
|
|
307
311
|
* @throws OciError when an error occurs
|
|
308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CancelFsuAction.ts.html |here} to see how to use CancelFsuAction API.
|
|
309
313
|
*/
|
|
310
314
|
cancelFsuAction(cancelFsuActionRequest) {
|
|
311
315
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -363,7 +367,7 @@ class FleetSoftwareUpdateClient {
|
|
|
363
367
|
* @param ChangeFsuActionCompartmentRequest
|
|
364
368
|
* @return ChangeFsuActionCompartmentResponse
|
|
365
369
|
* @throws OciError when an error occurs
|
|
366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ChangeFsuActionCompartment.ts.html |here} to see how to use ChangeFsuActionCompartment API.
|
|
367
371
|
*/
|
|
368
372
|
changeFsuActionCompartment(changeFsuActionCompartmentRequest) {
|
|
369
373
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -427,7 +431,7 @@ class FleetSoftwareUpdateClient {
|
|
|
427
431
|
* @param ChangeFsuCollectionCompartmentRequest
|
|
428
432
|
* @return ChangeFsuCollectionCompartmentResponse
|
|
429
433
|
* @throws OciError when an error occurs
|
|
430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ChangeFsuCollectionCompartment.ts.html |here} to see how to use ChangeFsuCollectionCompartment API.
|
|
431
435
|
*/
|
|
432
436
|
changeFsuCollectionCompartment(changeFsuCollectionCompartmentRequest) {
|
|
433
437
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -491,7 +495,7 @@ class FleetSoftwareUpdateClient {
|
|
|
491
495
|
* @param ChangeFsuCycleCompartmentRequest
|
|
492
496
|
* @return ChangeFsuCycleCompartmentResponse
|
|
493
497
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
498
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ChangeFsuCycleCompartment.ts.html |here} to see how to use ChangeFsuCycleCompartment API.
|
|
495
499
|
*/
|
|
496
500
|
changeFsuCycleCompartment(changeFsuCycleCompartmentRequest) {
|
|
497
501
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -555,7 +559,7 @@ class FleetSoftwareUpdateClient {
|
|
|
555
559
|
* @param ChangeFsuDiscoveryCompartmentRequest
|
|
556
560
|
* @return ChangeFsuDiscoveryCompartmentResponse
|
|
557
561
|
* @throws OciError when an error occurs
|
|
558
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
562
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ChangeFsuDiscoveryCompartment.ts.html |here} to see how to use ChangeFsuDiscoveryCompartment API.
|
|
559
563
|
*/
|
|
560
564
|
changeFsuDiscoveryCompartment(changeFsuDiscoveryCompartmentRequest) {
|
|
561
565
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -613,7 +617,7 @@ class FleetSoftwareUpdateClient {
|
|
|
613
617
|
* @param CloneFsuCycleRequest
|
|
614
618
|
* @return CloneFsuCycleResponse
|
|
615
619
|
* @throws OciError when an error occurs
|
|
616
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CloneFsuCycle.ts.html |here} to see how to use CloneFsuCycle API.
|
|
617
621
|
*/
|
|
618
622
|
cloneFsuCycle(cloneFsuCycleRequest) {
|
|
619
623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -689,7 +693,7 @@ class FleetSoftwareUpdateClient {
|
|
|
689
693
|
* @param CreateFsuActionRequest
|
|
690
694
|
* @return CreateFsuActionResponse
|
|
691
695
|
* @throws OciError when an error occurs
|
|
692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
696
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CreateFsuAction.ts.html |here} to see how to use CreateFsuAction API.
|
|
693
697
|
*/
|
|
694
698
|
createFsuAction(createFsuActionRequest) {
|
|
695
699
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -763,7 +767,7 @@ class FleetSoftwareUpdateClient {
|
|
|
763
767
|
* @param CreateFsuCollectionRequest
|
|
764
768
|
* @return CreateFsuCollectionResponse
|
|
765
769
|
* @throws OciError when an error occurs
|
|
766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
770
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CreateFsuCollection.ts.html |here} to see how to use CreateFsuCollection API.
|
|
767
771
|
*/
|
|
768
772
|
createFsuCollection(createFsuCollectionRequest) {
|
|
769
773
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -837,7 +841,7 @@ class FleetSoftwareUpdateClient {
|
|
|
837
841
|
* @param CreateFsuCycleRequest
|
|
838
842
|
* @return CreateFsuCycleResponse
|
|
839
843
|
* @throws OciError when an error occurs
|
|
840
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CreateFsuCycle.ts.html |here} to see how to use CreateFsuCycle API.
|
|
841
845
|
*/
|
|
842
846
|
createFsuCycle(createFsuCycleRequest) {
|
|
843
847
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -911,7 +915,7 @@ class FleetSoftwareUpdateClient {
|
|
|
911
915
|
* @param CreateFsuDiscoveryRequest
|
|
912
916
|
* @return CreateFsuDiscoveryResponse
|
|
913
917
|
* @throws OciError when an error occurs
|
|
914
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/CreateFsuDiscovery.ts.html |here} to see how to use CreateFsuDiscovery API.
|
|
915
919
|
*/
|
|
916
920
|
createFsuDiscovery(createFsuDiscoveryRequest) {
|
|
917
921
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -985,7 +989,7 @@ class FleetSoftwareUpdateClient {
|
|
|
985
989
|
* @param DeleteFsuActionRequest
|
|
986
990
|
* @return DeleteFsuActionResponse
|
|
987
991
|
* @throws OciError when an error occurs
|
|
988
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
992
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/DeleteFsuAction.ts.html |here} to see how to use DeleteFsuAction API.
|
|
989
993
|
*/
|
|
990
994
|
deleteFsuAction(deleteFsuActionRequest) {
|
|
991
995
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1046,7 +1050,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1046
1050
|
* @param DeleteFsuCollectionRequest
|
|
1047
1051
|
* @return DeleteFsuCollectionResponse
|
|
1048
1052
|
* @throws OciError when an error occurs
|
|
1049
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1053
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/DeleteFsuCollection.ts.html |here} to see how to use DeleteFsuCollection API.
|
|
1050
1054
|
*/
|
|
1051
1055
|
deleteFsuCollection(deleteFsuCollectionRequest) {
|
|
1052
1056
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1107,7 +1111,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1107
1111
|
* @param DeleteFsuCycleRequest
|
|
1108
1112
|
* @return DeleteFsuCycleResponse
|
|
1109
1113
|
* @throws OciError when an error occurs
|
|
1110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/DeleteFsuCycle.ts.html |here} to see how to use DeleteFsuCycle API.
|
|
1111
1115
|
*/
|
|
1112
1116
|
deleteFsuCycle(deleteFsuCycleRequest) {
|
|
1113
1117
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1168,7 +1172,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1168
1172
|
* @param DeleteFsuDiscoveryRequest
|
|
1169
1173
|
* @return DeleteFsuDiscoveryResponse
|
|
1170
1174
|
* @throws OciError when an error occurs
|
|
1171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/DeleteFsuDiscovery.ts.html |here} to see how to use DeleteFsuDiscovery API.
|
|
1172
1176
|
*/
|
|
1173
1177
|
deleteFsuDiscovery(deleteFsuDiscoveryRequest) {
|
|
1174
1178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1229,7 +1233,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1229
1233
|
* @param DeleteFsuJobRequest
|
|
1230
1234
|
* @return DeleteFsuJobResponse
|
|
1231
1235
|
* @throws OciError when an error occurs
|
|
1232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/DeleteFsuJob.ts.html |here} to see how to use DeleteFsuJob API.
|
|
1233
1237
|
*/
|
|
1234
1238
|
deleteFsuJob(deleteFsuJobRequest) {
|
|
1235
1239
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1285,7 +1289,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1285
1289
|
* @param GetFsuActionRequest
|
|
1286
1290
|
* @return GetFsuActionResponse
|
|
1287
1291
|
* @throws OciError when an error occurs
|
|
1288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuAction.ts.html |here} to see how to use GetFsuAction API.
|
|
1289
1293
|
*/
|
|
1290
1294
|
getFsuAction(getFsuActionRequest) {
|
|
1291
1295
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1350,7 +1354,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1350
1354
|
* @param GetFsuActionOutputContentRequest
|
|
1351
1355
|
* @return GetFsuActionOutputContentResponse
|
|
1352
1356
|
* @throws OciError when an error occurs
|
|
1353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuActionOutputContent.ts.html |here} to see how to use GetFsuActionOutputContent API.
|
|
1354
1358
|
*/
|
|
1355
1359
|
getFsuActionOutputContent(getFsuActionOutputContentRequest) {
|
|
1356
1360
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1408,7 +1412,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1408
1412
|
* @param GetFsuCollectionRequest
|
|
1409
1413
|
* @return GetFsuCollectionResponse
|
|
1410
1414
|
* @throws OciError when an error occurs
|
|
1411
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuCollection.ts.html |here} to see how to use GetFsuCollection API.
|
|
1412
1416
|
*/
|
|
1413
1417
|
getFsuCollection(getFsuCollectionRequest) {
|
|
1414
1418
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1472,7 +1476,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1472
1476
|
* @param GetFsuCycleRequest
|
|
1473
1477
|
* @return GetFsuCycleResponse
|
|
1474
1478
|
* @throws OciError when an error occurs
|
|
1475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1479
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuCycle.ts.html |here} to see how to use GetFsuCycle API.
|
|
1476
1480
|
*/
|
|
1477
1481
|
getFsuCycle(getFsuCycleRequest) {
|
|
1478
1482
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1536,7 +1540,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1536
1540
|
* @param GetFsuDiscoveryRequest
|
|
1537
1541
|
* @return GetFsuDiscoveryResponse
|
|
1538
1542
|
* @throws OciError when an error occurs
|
|
1539
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1543
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuDiscovery.ts.html |here} to see how to use GetFsuDiscovery API.
|
|
1540
1544
|
*/
|
|
1541
1545
|
getFsuDiscovery(getFsuDiscoveryRequest) {
|
|
1542
1546
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1600,7 +1604,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1600
1604
|
* @param GetFsuJobRequest
|
|
1601
1605
|
* @return GetFsuJobResponse
|
|
1602
1606
|
* @throws OciError when an error occurs
|
|
1603
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1607
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuJob.ts.html |here} to see how to use GetFsuJob API.
|
|
1604
1608
|
*/
|
|
1605
1609
|
getFsuJob(getFsuJobRequest) {
|
|
1606
1610
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1664,7 +1668,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1664
1668
|
* @param GetFsuJobOutputContentRequest
|
|
1665
1669
|
* @return GetFsuJobOutputContentResponse
|
|
1666
1670
|
* @throws OciError when an error occurs
|
|
1667
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1671
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetFsuJobOutputContent.ts.html |here} to see how to use GetFsuJobOutputContent API.
|
|
1668
1672
|
*/
|
|
1669
1673
|
getFsuJobOutputContent(getFsuJobOutputContentRequest) {
|
|
1670
1674
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1722,7 +1726,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1722
1726
|
* @param GetWorkRequestRequest
|
|
1723
1727
|
* @return GetWorkRequestResponse
|
|
1724
1728
|
* @throws OciError when an error occurs
|
|
1725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1729
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1726
1730
|
*/
|
|
1727
1731
|
getWorkRequest(getWorkRequestRequest) {
|
|
1728
1732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1791,7 +1795,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1791
1795
|
* @param ListFsuActionsRequest
|
|
1792
1796
|
* @return ListFsuActionsResponse
|
|
1793
1797
|
* @throws OciError when an error occurs
|
|
1794
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1798
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuActions.ts.html |here} to see how to use ListFsuActions API.
|
|
1795
1799
|
*/
|
|
1796
1800
|
listFsuActions(listFsuActionsRequest) {
|
|
1797
1801
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1863,7 +1867,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1863
1867
|
* @param ListFsuCollectionTargetsRequest
|
|
1864
1868
|
* @return ListFsuCollectionTargetsResponse
|
|
1865
1869
|
* @throws OciError when an error occurs
|
|
1866
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1870
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuCollectionTargets.ts.html |here} to see how to use ListFsuCollectionTargets API.
|
|
1867
1871
|
*/
|
|
1868
1872
|
listFsuCollectionTargets(listFsuCollectionTargetsRequest) {
|
|
1869
1873
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1935,7 +1939,7 @@ class FleetSoftwareUpdateClient {
|
|
|
1935
1939
|
* @param ListFsuCollectionsRequest
|
|
1936
1940
|
* @return ListFsuCollectionsResponse
|
|
1937
1941
|
* @throws OciError when an error occurs
|
|
1938
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuCollections.ts.html |here} to see how to use ListFsuCollections API.
|
|
1939
1943
|
*/
|
|
1940
1944
|
listFsuCollections(listFsuCollectionsRequest) {
|
|
1941
1945
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2006,7 +2010,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2006
2010
|
* @param ListFsuCyclesRequest
|
|
2007
2011
|
* @return ListFsuCyclesResponse
|
|
2008
2012
|
* @throws OciError when an error occurs
|
|
2009
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2013
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuCycles.ts.html |here} to see how to use ListFsuCycles API.
|
|
2010
2014
|
*/
|
|
2011
2015
|
listFsuCycles(listFsuCyclesRequest) {
|
|
2012
2016
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2079,7 +2083,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2079
2083
|
* @param ListFsuDiscoveriesRequest
|
|
2080
2084
|
* @return ListFsuDiscoveriesResponse
|
|
2081
2085
|
* @throws OciError when an error occurs
|
|
2082
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2086
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuDiscoveries.ts.html |here} to see how to use ListFsuDiscoveries API.
|
|
2083
2087
|
*/
|
|
2084
2088
|
listFsuDiscoveries(listFsuDiscoveriesRequest) {
|
|
2085
2089
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2149,7 +2153,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2149
2153
|
* @param ListFsuDiscoveryTargetsRequest
|
|
2150
2154
|
* @return ListFsuDiscoveryTargetsResponse
|
|
2151
2155
|
* @throws OciError when an error occurs
|
|
2152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuDiscoveryTargets.ts.html |here} to see how to use ListFsuDiscoveryTargets API.
|
|
2153
2157
|
*/
|
|
2154
2158
|
listFsuDiscoveryTargets(listFsuDiscoveryTargetsRequest) {
|
|
2155
2159
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2221,7 +2225,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2221
2225
|
* @param ListFsuJobOutputsRequest
|
|
2222
2226
|
* @return ListFsuJobOutputsResponse
|
|
2223
2227
|
* @throws OciError when an error occurs
|
|
2224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuJobOutputs.ts.html |here} to see how to use ListFsuJobOutputs API.
|
|
2225
2229
|
*/
|
|
2226
2230
|
listFsuJobOutputs(listFsuJobOutputsRequest) {
|
|
2227
2231
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2288,7 +2292,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2288
2292
|
* @param ListFsuJobsRequest
|
|
2289
2293
|
* @return ListFsuJobsResponse
|
|
2290
2294
|
* @throws OciError when an error occurs
|
|
2291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListFsuJobs.ts.html |here} to see how to use ListFsuJobs API.
|
|
2292
2296
|
*/
|
|
2293
2297
|
listFsuJobs(listFsuJobsRequest) {
|
|
2294
2298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2358,7 +2362,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2358
2362
|
* @param ListWorkRequestErrorsRequest
|
|
2359
2363
|
* @return ListWorkRequestErrorsResponse
|
|
2360
2364
|
* @throws OciError when an error occurs
|
|
2361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2365
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2362
2366
|
*/
|
|
2363
2367
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2364
2368
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2427,7 +2431,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2427
2431
|
* @param ListWorkRequestLogsRequest
|
|
2428
2432
|
* @return ListWorkRequestLogsResponse
|
|
2429
2433
|
* @throws OciError when an error occurs
|
|
2430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2431
2435
|
*/
|
|
2432
2436
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2433
2437
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2496,7 +2500,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2496
2500
|
* @param ListWorkRequestsRequest
|
|
2497
2501
|
* @return ListWorkRequestsResponse
|
|
2498
2502
|
* @throws OciError when an error occurs
|
|
2499
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2503
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2500
2504
|
*/
|
|
2501
2505
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2502
2506
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2569,7 +2573,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2569
2573
|
* @param RemoveFsuCollectionTargetsRequest
|
|
2570
2574
|
* @return RemoveFsuCollectionTargetsResponse
|
|
2571
2575
|
* @throws OciError when an error occurs
|
|
2572
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/RemoveFsuCollectionTargets.ts.html |here} to see how to use RemoveFsuCollectionTargets API.
|
|
2573
2577
|
*/
|
|
2574
2578
|
removeFsuCollectionTargets(removeFsuCollectionTargetsRequest) {
|
|
2575
2579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2632,7 +2636,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2632
2636
|
* @param ResumeFsuActionRequest
|
|
2633
2637
|
* @return ResumeFsuActionResponse
|
|
2634
2638
|
* @throws OciError when an error occurs
|
|
2635
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/ResumeFsuAction.ts.html |here} to see how to use ResumeFsuAction API.
|
|
2636
2640
|
*/
|
|
2637
2641
|
resumeFsuAction(resumeFsuActionRequest) {
|
|
2638
2642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2690,7 +2694,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2690
2694
|
* @param RetryFsuJobRequest
|
|
2691
2695
|
* @return RetryFsuJobResponse
|
|
2692
2696
|
* @throws OciError when an error occurs
|
|
2693
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2697
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/RetryFsuJob.ts.html |here} to see how to use RetryFsuJob API.
|
|
2694
2698
|
*/
|
|
2695
2699
|
retryFsuJob(retryFsuJobRequest) {
|
|
2696
2700
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2747,7 +2751,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2747
2751
|
* @param UpdateFsuActionRequest
|
|
2748
2752
|
* @return UpdateFsuActionResponse
|
|
2749
2753
|
* @throws OciError when an error occurs
|
|
2750
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2754
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/UpdateFsuAction.ts.html |here} to see how to use UpdateFsuAction API.
|
|
2751
2755
|
*/
|
|
2752
2756
|
updateFsuAction(updateFsuActionRequest) {
|
|
2753
2757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2809,7 +2813,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2809
2813
|
* @param UpdateFsuCollectionRequest
|
|
2810
2814
|
* @return UpdateFsuCollectionResponse
|
|
2811
2815
|
* @throws OciError when an error occurs
|
|
2812
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2816
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/UpdateFsuCollection.ts.html |here} to see how to use UpdateFsuCollection API.
|
|
2813
2817
|
*/
|
|
2814
2818
|
updateFsuCollection(updateFsuCollectionRequest) {
|
|
2815
2819
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2871,7 +2875,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2871
2875
|
* @param UpdateFsuCycleRequest
|
|
2872
2876
|
* @return UpdateFsuCycleResponse
|
|
2873
2877
|
* @throws OciError when an error occurs
|
|
2874
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/UpdateFsuCycle.ts.html |here} to see how to use UpdateFsuCycle API.
|
|
2875
2879
|
*/
|
|
2876
2880
|
updateFsuCycle(updateFsuCycleRequest) {
|
|
2877
2881
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2933,7 +2937,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2933
2937
|
* @param UpdateFsuDiscoveryRequest
|
|
2934
2938
|
* @return UpdateFsuDiscoveryResponse
|
|
2935
2939
|
* @throws OciError when an error occurs
|
|
2936
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2940
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/UpdateFsuDiscovery.ts.html |here} to see how to use UpdateFsuDiscovery API.
|
|
2937
2941
|
*/
|
|
2938
2942
|
updateFsuDiscovery(updateFsuDiscoveryRequest) {
|
|
2939
2943
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2990,7 +2994,7 @@ class FleetSoftwareUpdateClient {
|
|
|
2990
2994
|
* @param UpdateFsuJobRequest
|
|
2991
2995
|
* @return UpdateFsuJobResponse
|
|
2992
2996
|
* @throws OciError when an error occurs
|
|
2993
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/fleetsoftwareupdate/UpdateFsuJob.ts.html |here} to see how to use UpdateFsuJob API.
|
|
2994
2998
|
*/
|
|
2995
2999
|
updateFsuJob(updateFsuJobRequest) {
|
|
2996
3000
|
return __awaiter(this, void 0, void 0, function* () {
|