oci-jms 2.27.0 → 2.28.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/lib/client.d.ts +26 -25
- package/lib/client.js +101 -50
- package/lib/client.js.map +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-fleet-compartment-request.d.ts +1 -1
- package/lib/request/create-blocklist-request.d.ts +1 -1
- package/lib/request/create-fleet-request.d.ts +1 -1
- package/lib/request/delete-blocklist-request.d.ts +1 -1
- package/lib/request/delete-fleet-request.d.ts +1 -1
- package/lib/request/get-fleet-agent-configuration-request.d.ts +1 -1
- package/lib/request/get-fleet-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-blocklists-request.d.ts +1 -1
- package/lib/request/list-fleets-request.d.ts +1 -1
- package/lib/request/list-installation-sites-request.d.ts +1 -1
- package/lib/request/list-jre-usage-request.d.ts +1 -1
- package/lib/request/list-work-items-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-fleet-installation-sites-request.d.ts +1 -1
- package/lib/request/summarize-application-usage-request.d.ts +1 -1
- package/lib/request/summarize-installation-usage-request.d.ts +1 -1
- package/lib/request/summarize-jre-usage-request.d.ts +1 -1
- package/lib/request/summarize-managed-instance-usage-request.d.ts +1 -1
- package/lib/request/summarize-resource-inventory-request.d.ts +1 -1
- package/lib/request/update-fleet-agent-configuration-request.d.ts +1 -1
- package/lib/request/update-fleet-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -60,6 +60,7 @@ class JavaManagementServiceClient {
|
|
|
60
60
|
this["_defaultHeaders"] = {};
|
|
61
61
|
this._circuitBreaker = null;
|
|
62
62
|
this._httpOptions = undefined;
|
|
63
|
+
this.targetService = "JavaManagementService";
|
|
63
64
|
const requestSigner = params.authenticationDetailsProvider
|
|
64
65
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
65
66
|
: null;
|
|
@@ -155,12 +156,14 @@ class JavaManagementServiceClient {
|
|
|
155
156
|
* @param CancelWorkRequestRequest
|
|
156
157
|
* @return CancelWorkRequestResponse
|
|
157
158
|
* @throws OciError when an error occurs
|
|
158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
159
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
159
160
|
*/
|
|
160
161
|
cancelWorkRequest(cancelWorkRequestRequest) {
|
|
161
162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
162
163
|
if (this.logger)
|
|
163
164
|
this.logger.debug("Calling operation JavaManagementServiceClient#cancelWorkRequest.");
|
|
165
|
+
const operationName = "cancelWorkRequest";
|
|
166
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkRequest/CancelWorkRequest";
|
|
164
167
|
const pathParams = {
|
|
165
168
|
"{workRequestId}": cancelWorkRequestRequest.workRequestId
|
|
166
169
|
};
|
|
@@ -184,7 +187,7 @@ class JavaManagementServiceClient {
|
|
|
184
187
|
queryParams: queryParams
|
|
185
188
|
});
|
|
186
189
|
try {
|
|
187
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
190
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
188
191
|
const sdkResponse = oci_common_1.composeResponse({
|
|
189
192
|
responseObject: {},
|
|
190
193
|
responseHeaders: [
|
|
@@ -209,12 +212,14 @@ class JavaManagementServiceClient {
|
|
|
209
212
|
* @param ChangeFleetCompartmentRequest
|
|
210
213
|
* @return ChangeFleetCompartmentResponse
|
|
211
214
|
* @throws OciError when an error occurs
|
|
212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
215
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ChangeFleetCompartment.ts.html |here} to see how to use ChangeFleetCompartment API.
|
|
213
216
|
*/
|
|
214
217
|
changeFleetCompartment(changeFleetCompartmentRequest) {
|
|
215
218
|
return __awaiter(this, void 0, void 0, function* () {
|
|
216
219
|
if (this.logger)
|
|
217
220
|
this.logger.debug("Calling operation JavaManagementServiceClient#changeFleetCompartment.");
|
|
221
|
+
const operationName = "changeFleetCompartment";
|
|
222
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/ChangeFleetCompartment";
|
|
218
223
|
const pathParams = {
|
|
219
224
|
"{fleetId}": changeFleetCompartmentRequest.fleetId
|
|
220
225
|
};
|
|
@@ -240,7 +245,7 @@ class JavaManagementServiceClient {
|
|
|
240
245
|
queryParams: queryParams
|
|
241
246
|
});
|
|
242
247
|
try {
|
|
243
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
248
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
244
249
|
const sdkResponse = oci_common_1.composeResponse({
|
|
245
250
|
responseObject: {},
|
|
246
251
|
responseHeaders: [
|
|
@@ -270,12 +275,14 @@ class JavaManagementServiceClient {
|
|
|
270
275
|
* @param CreateBlocklistRequest
|
|
271
276
|
* @return CreateBlocklistResponse
|
|
272
277
|
* @throws OciError when an error occurs
|
|
273
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/CreateBlocklist.ts.html |here} to see how to use CreateBlocklist API.
|
|
274
279
|
*/
|
|
275
280
|
createBlocklist(createBlocklistRequest) {
|
|
276
281
|
return __awaiter(this, void 0, void 0, function* () {
|
|
277
282
|
if (this.logger)
|
|
278
283
|
this.logger.debug("Calling operation JavaManagementServiceClient#createBlocklist.");
|
|
284
|
+
const operationName = "createBlocklist";
|
|
285
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Blocklist/CreateBlocklist";
|
|
279
286
|
const pathParams = {
|
|
280
287
|
"{fleetId}": createBlocklistRequest.fleetId
|
|
281
288
|
};
|
|
@@ -300,7 +307,7 @@ class JavaManagementServiceClient {
|
|
|
300
307
|
queryParams: queryParams
|
|
301
308
|
});
|
|
302
309
|
try {
|
|
303
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
310
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
304
311
|
const sdkResponse = oci_common_1.composeResponse({
|
|
305
312
|
responseObject: {},
|
|
306
313
|
body: yield response.json(),
|
|
@@ -334,12 +341,14 @@ class JavaManagementServiceClient {
|
|
|
334
341
|
* @param CreateFleetRequest
|
|
335
342
|
* @return CreateFleetResponse
|
|
336
343
|
* @throws OciError when an error occurs
|
|
337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
344
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/CreateFleet.ts.html |here} to see how to use CreateFleet API.
|
|
338
345
|
*/
|
|
339
346
|
createFleet(createFleetRequest) {
|
|
340
347
|
return __awaiter(this, void 0, void 0, function* () {
|
|
341
348
|
if (this.logger)
|
|
342
349
|
this.logger.debug("Calling operation JavaManagementServiceClient#createFleet.");
|
|
350
|
+
const operationName = "createFleet";
|
|
351
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/CreateFleet";
|
|
343
352
|
const pathParams = {};
|
|
344
353
|
const queryParams = {};
|
|
345
354
|
let headerParams = {
|
|
@@ -362,7 +371,7 @@ class JavaManagementServiceClient {
|
|
|
362
371
|
queryParams: queryParams
|
|
363
372
|
});
|
|
364
373
|
try {
|
|
365
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
374
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
366
375
|
const sdkResponse = oci_common_1.composeResponse({
|
|
367
376
|
responseObject: {},
|
|
368
377
|
responseHeaders: [
|
|
@@ -391,12 +400,14 @@ class JavaManagementServiceClient {
|
|
|
391
400
|
* @param DeleteBlocklistRequest
|
|
392
401
|
* @return DeleteBlocklistResponse
|
|
393
402
|
* @throws OciError when an error occurs
|
|
394
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
403
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/DeleteBlocklist.ts.html |here} to see how to use DeleteBlocklist API.
|
|
395
404
|
*/
|
|
396
405
|
deleteBlocklist(deleteBlocklistRequest) {
|
|
397
406
|
return __awaiter(this, void 0, void 0, function* () {
|
|
398
407
|
if (this.logger)
|
|
399
408
|
this.logger.debug("Calling operation JavaManagementServiceClient#deleteBlocklist.");
|
|
409
|
+
const operationName = "deleteBlocklist";
|
|
410
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Blocklist/DeleteBlocklist";
|
|
400
411
|
const pathParams = {
|
|
401
412
|
"{fleetId}": deleteBlocklistRequest.fleetId,
|
|
402
413
|
"{blocklistKey}": deleteBlocklistRequest.blocklistKey
|
|
@@ -421,7 +432,7 @@ class JavaManagementServiceClient {
|
|
|
421
432
|
queryParams: queryParams
|
|
422
433
|
});
|
|
423
434
|
try {
|
|
424
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
435
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
425
436
|
const sdkResponse = oci_common_1.composeResponse({
|
|
426
437
|
responseObject: {},
|
|
427
438
|
responseHeaders: [
|
|
@@ -445,12 +456,14 @@ class JavaManagementServiceClient {
|
|
|
445
456
|
* @param DeleteFleetRequest
|
|
446
457
|
* @return DeleteFleetResponse
|
|
447
458
|
* @throws OciError when an error occurs
|
|
448
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
459
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/DeleteFleet.ts.html |here} to see how to use DeleteFleet API.
|
|
449
460
|
*/
|
|
450
461
|
deleteFleet(deleteFleetRequest) {
|
|
451
462
|
return __awaiter(this, void 0, void 0, function* () {
|
|
452
463
|
if (this.logger)
|
|
453
464
|
this.logger.debug("Calling operation JavaManagementServiceClient#deleteFleet.");
|
|
465
|
+
const operationName = "deleteFleet";
|
|
466
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/DeleteFleet";
|
|
454
467
|
const pathParams = {
|
|
455
468
|
"{fleetId}": deleteFleetRequest.fleetId
|
|
456
469
|
};
|
|
@@ -474,7 +487,7 @@ class JavaManagementServiceClient {
|
|
|
474
487
|
queryParams: queryParams
|
|
475
488
|
});
|
|
476
489
|
try {
|
|
477
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
490
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
478
491
|
const sdkResponse = oci_common_1.composeResponse({
|
|
479
492
|
responseObject: {},
|
|
480
493
|
responseHeaders: [
|
|
@@ -503,12 +516,14 @@ class JavaManagementServiceClient {
|
|
|
503
516
|
* @param GetFleetRequest
|
|
504
517
|
* @return GetFleetResponse
|
|
505
518
|
* @throws OciError when an error occurs
|
|
506
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
519
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/GetFleet.ts.html |here} to see how to use GetFleet API.
|
|
507
520
|
*/
|
|
508
521
|
getFleet(getFleetRequest) {
|
|
509
522
|
return __awaiter(this, void 0, void 0, function* () {
|
|
510
523
|
if (this.logger)
|
|
511
524
|
this.logger.debug("Calling operation JavaManagementServiceClient#getFleet.");
|
|
525
|
+
const operationName = "getFleet";
|
|
526
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/GetFleet";
|
|
512
527
|
const pathParams = {
|
|
513
528
|
"{fleetId}": getFleetRequest.fleetId
|
|
514
529
|
};
|
|
@@ -531,7 +546,7 @@ class JavaManagementServiceClient {
|
|
|
531
546
|
queryParams: queryParams
|
|
532
547
|
});
|
|
533
548
|
try {
|
|
534
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
549
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
535
550
|
const sdkResponse = oci_common_1.composeResponse({
|
|
536
551
|
responseObject: {},
|
|
537
552
|
body: yield response.json(),
|
|
@@ -564,12 +579,14 @@ class JavaManagementServiceClient {
|
|
|
564
579
|
* @param GetFleetAgentConfigurationRequest
|
|
565
580
|
* @return GetFleetAgentConfigurationResponse
|
|
566
581
|
* @throws OciError when an error occurs
|
|
567
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
582
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/GetFleetAgentConfiguration.ts.html |here} to see how to use GetFleetAgentConfiguration API.
|
|
568
583
|
*/
|
|
569
584
|
getFleetAgentConfiguration(getFleetAgentConfigurationRequest) {
|
|
570
585
|
return __awaiter(this, void 0, void 0, function* () {
|
|
571
586
|
if (this.logger)
|
|
572
587
|
this.logger.debug("Calling operation JavaManagementServiceClient#getFleetAgentConfiguration.");
|
|
588
|
+
const operationName = "getFleetAgentConfiguration";
|
|
589
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/FleetAgentConfiguration/GetFleetAgentConfiguration";
|
|
573
590
|
const pathParams = {
|
|
574
591
|
"{fleetId}": getFleetAgentConfigurationRequest.fleetId
|
|
575
592
|
};
|
|
@@ -592,7 +609,7 @@ class JavaManagementServiceClient {
|
|
|
592
609
|
queryParams: queryParams
|
|
593
610
|
});
|
|
594
611
|
try {
|
|
595
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
612
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
596
613
|
const sdkResponse = oci_common_1.composeResponse({
|
|
597
614
|
responseObject: {},
|
|
598
615
|
body: yield response.json(),
|
|
@@ -625,12 +642,14 @@ class JavaManagementServiceClient {
|
|
|
625
642
|
* @param GetWorkRequestRequest
|
|
626
643
|
* @return GetWorkRequestResponse
|
|
627
644
|
* @throws OciError when an error occurs
|
|
628
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
629
646
|
*/
|
|
630
647
|
getWorkRequest(getWorkRequestRequest) {
|
|
631
648
|
return __awaiter(this, void 0, void 0, function* () {
|
|
632
649
|
if (this.logger)
|
|
633
650
|
this.logger.debug("Calling operation JavaManagementServiceClient#getWorkRequest.");
|
|
651
|
+
const operationName = "getWorkRequest";
|
|
652
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkRequest/GetWorkRequest";
|
|
634
653
|
const pathParams = {
|
|
635
654
|
"{workRequestId}": getWorkRequestRequest.workRequestId
|
|
636
655
|
};
|
|
@@ -653,7 +672,7 @@ class JavaManagementServiceClient {
|
|
|
653
672
|
queryParams: queryParams
|
|
654
673
|
});
|
|
655
674
|
try {
|
|
656
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
675
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
657
676
|
const sdkResponse = oci_common_1.composeResponse({
|
|
658
677
|
responseObject: {},
|
|
659
678
|
body: yield response.json(),
|
|
@@ -692,12 +711,14 @@ class JavaManagementServiceClient {
|
|
|
692
711
|
* @param ListBlocklistsRequest
|
|
693
712
|
* @return ListBlocklistsResponse
|
|
694
713
|
* @throws OciError when an error occurs
|
|
695
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
714
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListBlocklists.ts.html |here} to see how to use ListBlocklists API.
|
|
696
715
|
*/
|
|
697
716
|
listBlocklists(listBlocklistsRequest) {
|
|
698
717
|
return __awaiter(this, void 0, void 0, function* () {
|
|
699
718
|
if (this.logger)
|
|
700
719
|
this.logger.debug("Calling operation JavaManagementServiceClient#listBlocklists.");
|
|
720
|
+
const operationName = "listBlocklists";
|
|
721
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Blocklist/ListBlocklists";
|
|
701
722
|
const pathParams = {
|
|
702
723
|
"{fleetId}": listBlocklistsRequest.fleetId
|
|
703
724
|
};
|
|
@@ -727,7 +748,7 @@ class JavaManagementServiceClient {
|
|
|
727
748
|
queryParams: queryParams
|
|
728
749
|
});
|
|
729
750
|
try {
|
|
730
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
751
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
731
752
|
const sdkResponse = oci_common_1.composeResponse({
|
|
732
753
|
responseObject: {},
|
|
733
754
|
body: yield response.json(),
|
|
@@ -762,12 +783,14 @@ class JavaManagementServiceClient {
|
|
|
762
783
|
* @param ListFleetsRequest
|
|
763
784
|
* @return ListFleetsResponse
|
|
764
785
|
* @throws OciError when an error occurs
|
|
765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
786
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListFleets.ts.html |here} to see how to use ListFleets API.
|
|
766
787
|
*/
|
|
767
788
|
listFleets(listFleetsRequest) {
|
|
768
789
|
return __awaiter(this, void 0, void 0, function* () {
|
|
769
790
|
if (this.logger)
|
|
770
791
|
this.logger.debug("Calling operation JavaManagementServiceClient#listFleets.");
|
|
792
|
+
const operationName = "listFleets";
|
|
793
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/ListFleets";
|
|
771
794
|
const pathParams = {};
|
|
772
795
|
const queryParams = {
|
|
773
796
|
"compartmentId": listFleetsRequest.compartmentId,
|
|
@@ -797,7 +820,7 @@ class JavaManagementServiceClient {
|
|
|
797
820
|
queryParams: queryParams
|
|
798
821
|
});
|
|
799
822
|
try {
|
|
800
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
823
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
801
824
|
const sdkResponse = oci_common_1.composeResponse({
|
|
802
825
|
responseObject: {},
|
|
803
826
|
body: yield response.json(),
|
|
@@ -830,12 +853,14 @@ class JavaManagementServiceClient {
|
|
|
830
853
|
* @param ListInstallationSitesRequest
|
|
831
854
|
* @return ListInstallationSitesResponse
|
|
832
855
|
* @throws OciError when an error occurs
|
|
833
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
856
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListInstallationSites.ts.html |here} to see how to use ListInstallationSites API.
|
|
834
857
|
*/
|
|
835
858
|
listInstallationSites(listInstallationSitesRequest) {
|
|
836
859
|
return __awaiter(this, void 0, void 0, function* () {
|
|
837
860
|
if (this.logger)
|
|
838
861
|
this.logger.debug("Calling operation JavaManagementServiceClient#listInstallationSites.");
|
|
862
|
+
const operationName = "listInstallationSites";
|
|
863
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/InstallationSiteSummary/ListInstallationSites";
|
|
839
864
|
const pathParams = {
|
|
840
865
|
"{fleetId}": listInstallationSitesRequest.fleetId
|
|
841
866
|
};
|
|
@@ -871,7 +896,7 @@ class JavaManagementServiceClient {
|
|
|
871
896
|
queryParams: queryParams
|
|
872
897
|
});
|
|
873
898
|
try {
|
|
874
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
899
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
875
900
|
const sdkResponse = oci_common_1.composeResponse({
|
|
876
901
|
responseObject: {},
|
|
877
902
|
body: yield response.json(),
|
|
@@ -904,12 +929,14 @@ class JavaManagementServiceClient {
|
|
|
904
929
|
* @param ListJreUsageRequest
|
|
905
930
|
* @return ListJreUsageResponse
|
|
906
931
|
* @throws OciError when an error occurs
|
|
907
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
932
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListJreUsage.ts.html |here} to see how to use ListJreUsage API.
|
|
908
933
|
*/
|
|
909
934
|
listJreUsage(listJreUsageRequest) {
|
|
910
935
|
return __awaiter(this, void 0, void 0, function* () {
|
|
911
936
|
if (this.logger)
|
|
912
937
|
this.logger.debug("Calling operation JavaManagementServiceClient#listJreUsage.");
|
|
938
|
+
const operationName = "listJreUsage";
|
|
939
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/JreUsage/ListJreUsage";
|
|
913
940
|
const pathParams = {};
|
|
914
941
|
const queryParams = {
|
|
915
942
|
"compartmentId": listJreUsageRequest.compartmentId,
|
|
@@ -941,7 +968,7 @@ class JavaManagementServiceClient {
|
|
|
941
968
|
queryParams: queryParams
|
|
942
969
|
});
|
|
943
970
|
try {
|
|
944
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
971
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
945
972
|
const sdkResponse = oci_common_1.composeResponse({
|
|
946
973
|
responseObject: {},
|
|
947
974
|
body: yield response.json(),
|
|
@@ -975,12 +1002,14 @@ class JavaManagementServiceClient {
|
|
|
975
1002
|
* @param ListWorkItemsRequest
|
|
976
1003
|
* @return ListWorkItemsResponse
|
|
977
1004
|
* @throws OciError when an error occurs
|
|
978
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1005
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListWorkItems.ts.html |here} to see how to use ListWorkItems API.
|
|
979
1006
|
*/
|
|
980
1007
|
listWorkItems(listWorkItemsRequest) {
|
|
981
1008
|
return __awaiter(this, void 0, void 0, function* () {
|
|
982
1009
|
if (this.logger)
|
|
983
1010
|
this.logger.debug("Calling operation JavaManagementServiceClient#listWorkItems.");
|
|
1011
|
+
const operationName = "listWorkItems";
|
|
1012
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkItemSummary/ListWorkItems";
|
|
984
1013
|
const pathParams = {
|
|
985
1014
|
"{workRequestId}": listWorkItemsRequest.workRequestId
|
|
986
1015
|
};
|
|
@@ -1006,7 +1035,7 @@ class JavaManagementServiceClient {
|
|
|
1006
1035
|
queryParams: queryParams
|
|
1007
1036
|
});
|
|
1008
1037
|
try {
|
|
1009
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1038
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1010
1039
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1011
1040
|
responseObject: {},
|
|
1012
1041
|
body: yield response.json(),
|
|
@@ -1040,12 +1069,14 @@ class JavaManagementServiceClient {
|
|
|
1040
1069
|
* @param ListWorkRequestErrorsRequest
|
|
1041
1070
|
* @return ListWorkRequestErrorsResponse
|
|
1042
1071
|
* @throws OciError when an error occurs
|
|
1043
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1072
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1044
1073
|
*/
|
|
1045
1074
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1046
1075
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1047
1076
|
if (this.logger)
|
|
1048
1077
|
this.logger.debug("Calling operation JavaManagementServiceClient#listWorkRequestErrors.");
|
|
1078
|
+
const operationName = "listWorkRequestErrors";
|
|
1079
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkRequestError/ListWorkRequestErrors";
|
|
1049
1080
|
const pathParams = {
|
|
1050
1081
|
"{workRequestId}": listWorkRequestErrorsRequest.workRequestId
|
|
1051
1082
|
};
|
|
@@ -1071,7 +1102,7 @@ class JavaManagementServiceClient {
|
|
|
1071
1102
|
queryParams: queryParams
|
|
1072
1103
|
});
|
|
1073
1104
|
try {
|
|
1074
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1105
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1075
1106
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1076
1107
|
responseObject: {},
|
|
1077
1108
|
body: yield response.json(),
|
|
@@ -1105,12 +1136,14 @@ class JavaManagementServiceClient {
|
|
|
1105
1136
|
* @param ListWorkRequestLogsRequest
|
|
1106
1137
|
* @return ListWorkRequestLogsResponse
|
|
1107
1138
|
* @throws OciError when an error occurs
|
|
1108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1139
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1109
1140
|
*/
|
|
1110
1141
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1111
1142
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1112
1143
|
if (this.logger)
|
|
1113
1144
|
this.logger.debug("Calling operation JavaManagementServiceClient#listWorkRequestLogs.");
|
|
1145
|
+
const operationName = "listWorkRequestLogs";
|
|
1146
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkRequestLogEntry/ListWorkRequestLogs";
|
|
1114
1147
|
const pathParams = {
|
|
1115
1148
|
"{workRequestId}": listWorkRequestLogsRequest.workRequestId
|
|
1116
1149
|
};
|
|
@@ -1136,7 +1169,7 @@ class JavaManagementServiceClient {
|
|
|
1136
1169
|
queryParams: queryParams
|
|
1137
1170
|
});
|
|
1138
1171
|
try {
|
|
1139
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1172
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1140
1173
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1141
1174
|
responseObject: {},
|
|
1142
1175
|
body: yield response.json(),
|
|
@@ -1170,12 +1203,14 @@ class JavaManagementServiceClient {
|
|
|
1170
1203
|
* @param ListWorkRequestsRequest
|
|
1171
1204
|
* @return ListWorkRequestsResponse
|
|
1172
1205
|
* @throws OciError when an error occurs
|
|
1173
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1174
1207
|
*/
|
|
1175
1208
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1176
1209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1177
1210
|
if (this.logger)
|
|
1178
1211
|
this.logger.debug("Calling operation JavaManagementServiceClient#listWorkRequests.");
|
|
1212
|
+
const operationName = "listWorkRequests";
|
|
1213
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/WorkRequest/ListWorkRequests";
|
|
1179
1214
|
const pathParams = {};
|
|
1180
1215
|
const queryParams = {
|
|
1181
1216
|
"compartmentId": listWorkRequestsRequest.compartmentId,
|
|
@@ -1202,7 +1237,7 @@ class JavaManagementServiceClient {
|
|
|
1202
1237
|
queryParams: queryParams
|
|
1203
1238
|
});
|
|
1204
1239
|
try {
|
|
1205
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1240
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1206
1241
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1207
1242
|
responseObject: {},
|
|
1208
1243
|
body: yield response.json(),
|
|
@@ -1235,12 +1270,14 @@ class JavaManagementServiceClient {
|
|
|
1235
1270
|
* @param RemoveFleetInstallationSitesRequest
|
|
1236
1271
|
* @return RemoveFleetInstallationSitesResponse
|
|
1237
1272
|
* @throws OciError when an error occurs
|
|
1238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1273
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/RemoveFleetInstallationSites.ts.html |here} to see how to use RemoveFleetInstallationSites API.
|
|
1239
1274
|
*/
|
|
1240
1275
|
removeFleetInstallationSites(removeFleetInstallationSitesRequest) {
|
|
1241
1276
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1242
1277
|
if (this.logger)
|
|
1243
1278
|
this.logger.debug("Calling operation JavaManagementServiceClient#removeFleetInstallationSites.");
|
|
1279
|
+
const operationName = "removeFleetInstallationSites";
|
|
1280
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/InstallationSiteSummary/RemoveFleetInstallationSites";
|
|
1244
1281
|
const pathParams = {
|
|
1245
1282
|
"{fleetId}": removeFleetInstallationSitesRequest.fleetId
|
|
1246
1283
|
};
|
|
@@ -1266,7 +1303,7 @@ class JavaManagementServiceClient {
|
|
|
1266
1303
|
queryParams: queryParams
|
|
1267
1304
|
});
|
|
1268
1305
|
try {
|
|
1269
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1306
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1270
1307
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1271
1308
|
responseObject: {},
|
|
1272
1309
|
responseHeaders: [
|
|
@@ -1295,12 +1332,14 @@ class JavaManagementServiceClient {
|
|
|
1295
1332
|
* @param SummarizeApplicationUsageRequest
|
|
1296
1333
|
* @return SummarizeApplicationUsageResponse
|
|
1297
1334
|
* @throws OciError when an error occurs
|
|
1298
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1335
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/SummarizeApplicationUsage.ts.html |here} to see how to use SummarizeApplicationUsage API.
|
|
1299
1336
|
*/
|
|
1300
1337
|
summarizeApplicationUsage(summarizeApplicationUsageRequest) {
|
|
1301
1338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1302
1339
|
if (this.logger)
|
|
1303
1340
|
this.logger.debug("Calling operation JavaManagementServiceClient#summarizeApplicationUsage.");
|
|
1341
|
+
const operationName = "summarizeApplicationUsage";
|
|
1342
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/ApplicationUsage/SummarizeApplicationUsage";
|
|
1304
1343
|
const pathParams = {
|
|
1305
1344
|
"{fleetId}": summarizeApplicationUsageRequest.fleetId
|
|
1306
1345
|
};
|
|
@@ -1340,7 +1379,7 @@ class JavaManagementServiceClient {
|
|
|
1340
1379
|
queryParams: queryParams
|
|
1341
1380
|
});
|
|
1342
1381
|
try {
|
|
1343
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1382
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1344
1383
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1345
1384
|
responseObject: {},
|
|
1346
1385
|
body: yield response.json(),
|
|
@@ -1373,12 +1412,14 @@ class JavaManagementServiceClient {
|
|
|
1373
1412
|
* @param SummarizeInstallationUsageRequest
|
|
1374
1413
|
* @return SummarizeInstallationUsageResponse
|
|
1375
1414
|
* @throws OciError when an error occurs
|
|
1376
|
-
* @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.28.0/jms/SummarizeInstallationUsage.ts.html |here} to see how to use SummarizeInstallationUsage API.
|
|
1377
1416
|
*/
|
|
1378
1417
|
summarizeInstallationUsage(summarizeInstallationUsageRequest) {
|
|
1379
1418
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1380
1419
|
if (this.logger)
|
|
1381
1420
|
this.logger.debug("Calling operation JavaManagementServiceClient#summarizeInstallationUsage.");
|
|
1421
|
+
const operationName = "summarizeInstallationUsage";
|
|
1422
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/InstallationUsage/SummarizeInstallationUsage";
|
|
1382
1423
|
const pathParams = {
|
|
1383
1424
|
"{fleetId}": summarizeInstallationUsageRequest.fleetId
|
|
1384
1425
|
};
|
|
@@ -1416,7 +1457,7 @@ class JavaManagementServiceClient {
|
|
|
1416
1457
|
queryParams: queryParams
|
|
1417
1458
|
});
|
|
1418
1459
|
try {
|
|
1419
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1460
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1420
1461
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1421
1462
|
responseObject: {},
|
|
1422
1463
|
body: yield response.json(),
|
|
@@ -1449,12 +1490,14 @@ class JavaManagementServiceClient {
|
|
|
1449
1490
|
* @param SummarizeJreUsageRequest
|
|
1450
1491
|
* @return SummarizeJreUsageResponse
|
|
1451
1492
|
* @throws OciError when an error occurs
|
|
1452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1493
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/SummarizeJreUsage.ts.html |here} to see how to use SummarizeJreUsage API.
|
|
1453
1494
|
*/
|
|
1454
1495
|
summarizeJreUsage(summarizeJreUsageRequest) {
|
|
1455
1496
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1456
1497
|
if (this.logger)
|
|
1457
1498
|
this.logger.debug("Calling operation JavaManagementServiceClient#summarizeJreUsage.");
|
|
1499
|
+
const operationName = "summarizeJreUsage";
|
|
1500
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/JreUsage/SummarizeJreUsage";
|
|
1458
1501
|
const pathParams = {
|
|
1459
1502
|
"{fleetId}": summarizeJreUsageRequest.fleetId
|
|
1460
1503
|
};
|
|
@@ -1492,7 +1535,7 @@ class JavaManagementServiceClient {
|
|
|
1492
1535
|
queryParams: queryParams
|
|
1493
1536
|
});
|
|
1494
1537
|
try {
|
|
1495
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1538
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1496
1539
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1497
1540
|
responseObject: {},
|
|
1498
1541
|
body: yield response.json(),
|
|
@@ -1525,12 +1568,14 @@ class JavaManagementServiceClient {
|
|
|
1525
1568
|
* @param SummarizeManagedInstanceUsageRequest
|
|
1526
1569
|
* @return SummarizeManagedInstanceUsageResponse
|
|
1527
1570
|
* @throws OciError when an error occurs
|
|
1528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/SummarizeManagedInstanceUsage.ts.html |here} to see how to use SummarizeManagedInstanceUsage API.
|
|
1529
1572
|
*/
|
|
1530
1573
|
summarizeManagedInstanceUsage(summarizeManagedInstanceUsageRequest) {
|
|
1531
1574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1532
1575
|
if (this.logger)
|
|
1533
1576
|
this.logger.debug("Calling operation JavaManagementServiceClient#summarizeManagedInstanceUsage.");
|
|
1577
|
+
const operationName = "summarizeManagedInstanceUsage";
|
|
1578
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/ManagedInstanceUsage/SummarizeManagedInstanceUsage";
|
|
1534
1579
|
const pathParams = {
|
|
1535
1580
|
"{fleetId}": summarizeManagedInstanceUsageRequest.fleetId
|
|
1536
1581
|
};
|
|
@@ -1569,7 +1614,7 @@ class JavaManagementServiceClient {
|
|
|
1569
1614
|
queryParams: queryParams
|
|
1570
1615
|
});
|
|
1571
1616
|
try {
|
|
1572
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1617
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1573
1618
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1574
1619
|
responseObject: {},
|
|
1575
1620
|
body: yield response.json(),
|
|
@@ -1603,12 +1648,14 @@ class JavaManagementServiceClient {
|
|
|
1603
1648
|
* @param SummarizeResourceInventoryRequest
|
|
1604
1649
|
* @return SummarizeResourceInventoryResponse
|
|
1605
1650
|
* @throws OciError when an error occurs
|
|
1606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1651
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/SummarizeResourceInventory.ts.html |here} to see how to use SummarizeResourceInventory API.
|
|
1607
1652
|
*/
|
|
1608
1653
|
summarizeResourceInventory(summarizeResourceInventoryRequest) {
|
|
1609
1654
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1610
1655
|
if (this.logger)
|
|
1611
1656
|
this.logger.debug("Calling operation JavaManagementServiceClient#summarizeResourceInventory.");
|
|
1657
|
+
const operationName = "summarizeResourceInventory";
|
|
1658
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/SummarizeResourceInventory";
|
|
1612
1659
|
const pathParams = {};
|
|
1613
1660
|
const queryParams = {
|
|
1614
1661
|
"compartmentId": summarizeResourceInventoryRequest.compartmentId,
|
|
@@ -1633,7 +1680,7 @@ class JavaManagementServiceClient {
|
|
|
1633
1680
|
queryParams: queryParams
|
|
1634
1681
|
});
|
|
1635
1682
|
try {
|
|
1636
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1683
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1637
1684
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1638
1685
|
responseObject: {},
|
|
1639
1686
|
body: yield response.json(),
|
|
@@ -1661,12 +1708,14 @@ class JavaManagementServiceClient {
|
|
|
1661
1708
|
* @param UpdateFleetRequest
|
|
1662
1709
|
* @return UpdateFleetResponse
|
|
1663
1710
|
* @throws OciError when an error occurs
|
|
1664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1711
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/UpdateFleet.ts.html |here} to see how to use UpdateFleet API.
|
|
1665
1712
|
*/
|
|
1666
1713
|
updateFleet(updateFleetRequest) {
|
|
1667
1714
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1668
1715
|
if (this.logger)
|
|
1669
1716
|
this.logger.debug("Calling operation JavaManagementServiceClient#updateFleet.");
|
|
1717
|
+
const operationName = "updateFleet";
|
|
1718
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/Fleet/UpdateFleet";
|
|
1670
1719
|
const pathParams = {
|
|
1671
1720
|
"{fleetId}": updateFleetRequest.fleetId
|
|
1672
1721
|
};
|
|
@@ -1691,7 +1740,7 @@ class JavaManagementServiceClient {
|
|
|
1691
1740
|
queryParams: queryParams
|
|
1692
1741
|
});
|
|
1693
1742
|
try {
|
|
1694
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1743
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1695
1744
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1696
1745
|
responseObject: {},
|
|
1697
1746
|
responseHeaders: [
|
|
@@ -1720,12 +1769,14 @@ class JavaManagementServiceClient {
|
|
|
1720
1769
|
* @param UpdateFleetAgentConfigurationRequest
|
|
1721
1770
|
* @return UpdateFleetAgentConfigurationResponse
|
|
1722
1771
|
* @throws OciError when an error occurs
|
|
1723
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1772
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/jms/UpdateFleetAgentConfiguration.ts.html |here} to see how to use UpdateFleetAgentConfiguration API.
|
|
1724
1773
|
*/
|
|
1725
1774
|
updateFleetAgentConfiguration(updateFleetAgentConfigurationRequest) {
|
|
1726
1775
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1727
1776
|
if (this.logger)
|
|
1728
1777
|
this.logger.debug("Calling operation JavaManagementServiceClient#updateFleetAgentConfiguration.");
|
|
1778
|
+
const operationName = "updateFleetAgentConfiguration";
|
|
1779
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/jms/20210610/FleetAgentConfiguration/UpdateFleetAgentConfiguration";
|
|
1729
1780
|
const pathParams = {
|
|
1730
1781
|
"{fleetId}": updateFleetAgentConfigurationRequest.fleetId
|
|
1731
1782
|
};
|
|
@@ -1750,7 +1801,7 @@ class JavaManagementServiceClient {
|
|
|
1750
1801
|
queryParams: queryParams
|
|
1751
1802
|
});
|
|
1752
1803
|
try {
|
|
1753
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1804
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1754
1805
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1755
1806
|
responseObject: {},
|
|
1756
1807
|
responseHeaders: [
|