oci-servicecatalog 2.25.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 +27 -26
- package/lib/client.js +105 -52
- package/lib/client.js.map +1 -1
- package/lib/model/create-private-application-package.js +2 -2
- package/lib/model/create-private-application-package.js.map +1 -1
- package/lib/model/private-application-package.js +2 -2
- package/lib/model/private-application-package.js.map +1 -1
- package/lib/request/bulk-replace-service-catalog-associations-request.d.ts +1 -1
- package/lib/request/change-private-application-compartment-request.d.ts +1 -1
- package/lib/request/change-service-catalog-compartment-request.d.ts +1 -1
- package/lib/request/create-private-application-request.d.ts +1 -1
- package/lib/request/create-service-catalog-association-request.d.ts +1 -1
- package/lib/request/create-service-catalog-request.d.ts +1 -1
- package/lib/request/delete-private-application-request.d.ts +1 -1
- package/lib/request/delete-service-catalog-association-request.d.ts +1 -1
- package/lib/request/delete-service-catalog-request.d.ts +1 -1
- package/lib/request/get-private-application-action-download-logo-request.d.ts +1 -1
- package/lib/request/get-private-application-package-action-download-config-request.d.ts +1 -1
- package/lib/request/get-private-application-package-request.d.ts +1 -1
- package/lib/request/get-private-application-request.d.ts +1 -1
- package/lib/request/get-service-catalog-association-request.d.ts +1 -1
- package/lib/request/get-service-catalog-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-applications-request.d.ts +1 -1
- package/lib/request/list-private-application-packages-request.d.ts +1 -1
- package/lib/request/list-private-applications-request.d.ts +1 -1
- package/lib/request/list-service-catalog-associations-request.d.ts +1 -1
- package/lib/request/list-service-catalogs-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/update-private-application-request.d.ts +1 -1
- package/lib/request/update-service-catalog-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -60,6 +60,7 @@ class ServiceCatalogClient {
|
|
|
60
60
|
this["_defaultHeaders"] = {};
|
|
61
61
|
this._circuitBreaker = null;
|
|
62
62
|
this._httpOptions = undefined;
|
|
63
|
+
this.targetService = "ServiceCatalog";
|
|
63
64
|
const requestSigner = params.authenticationDetailsProvider
|
|
64
65
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
65
66
|
: null;
|
|
@@ -155,12 +156,14 @@ class ServiceCatalogClient {
|
|
|
155
156
|
* @param BulkReplaceServiceCatalogAssociationsRequest
|
|
156
157
|
* @return BulkReplaceServiceCatalogAssociationsResponse
|
|
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/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
|
|
159
160
|
*/
|
|
160
161
|
bulkReplaceServiceCatalogAssociations(bulkReplaceServiceCatalogAssociationsRequest) {
|
|
161
162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
162
163
|
if (this.logger)
|
|
163
164
|
this.logger.debug("Calling operation ServiceCatalogClient#bulkReplaceServiceCatalogAssociations.");
|
|
165
|
+
const operationName = "bulkReplaceServiceCatalogAssociations";
|
|
166
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalogAssociation/BulkReplaceServiceCatalogAssociations";
|
|
164
167
|
const pathParams = {
|
|
165
168
|
"{serviceCatalogId}": bulkReplaceServiceCatalogAssociationsRequest.serviceCatalogId
|
|
166
169
|
};
|
|
@@ -185,7 +188,7 @@ class ServiceCatalogClient {
|
|
|
185
188
|
queryParams: queryParams
|
|
186
189
|
});
|
|
187
190
|
try {
|
|
188
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
191
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
189
192
|
const sdkResponse = oci_common_1.composeResponse({
|
|
190
193
|
responseObject: {},
|
|
191
194
|
responseHeaders: [
|
|
@@ -209,12 +212,14 @@ class ServiceCatalogClient {
|
|
|
209
212
|
* @param ChangePrivateApplicationCompartmentRequest
|
|
210
213
|
* @return ChangePrivateApplicationCompartmentResponse
|
|
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/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
|
|
213
216
|
*/
|
|
214
217
|
changePrivateApplicationCompartment(changePrivateApplicationCompartmentRequest) {
|
|
215
218
|
return __awaiter(this, void 0, void 0, function* () {
|
|
216
219
|
if (this.logger)
|
|
217
220
|
this.logger.debug("Calling operation ServiceCatalogClient#changePrivateApplicationCompartment.");
|
|
221
|
+
const operationName = "changePrivateApplicationCompartment";
|
|
222
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/ChangePrivateApplicationCompartment";
|
|
218
223
|
const pathParams = {
|
|
219
224
|
"{privateApplicationId}": changePrivateApplicationCompartmentRequest.privateApplicationId
|
|
220
225
|
};
|
|
@@ -239,7 +244,7 @@ class ServiceCatalogClient {
|
|
|
239
244
|
queryParams: queryParams
|
|
240
245
|
});
|
|
241
246
|
try {
|
|
242
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
247
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
243
248
|
const sdkResponse = oci_common_1.composeResponse({
|
|
244
249
|
responseObject: {},
|
|
245
250
|
responseHeaders: [
|
|
@@ -268,12 +273,14 @@ class ServiceCatalogClient {
|
|
|
268
273
|
* @param ChangeServiceCatalogCompartmentRequest
|
|
269
274
|
* @return ChangeServiceCatalogCompartmentResponse
|
|
270
275
|
* @throws OciError when an error occurs
|
|
271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
|
|
272
277
|
*/
|
|
273
278
|
changeServiceCatalogCompartment(changeServiceCatalogCompartmentRequest) {
|
|
274
279
|
return __awaiter(this, void 0, void 0, function* () {
|
|
275
280
|
if (this.logger)
|
|
276
281
|
this.logger.debug("Calling operation ServiceCatalogClient#changeServiceCatalogCompartment.");
|
|
282
|
+
const operationName = "changeServiceCatalogCompartment";
|
|
283
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/ChangeServiceCatalogCompartment";
|
|
277
284
|
const pathParams = {
|
|
278
285
|
"{serviceCatalogId}": changeServiceCatalogCompartmentRequest.serviceCatalogId
|
|
279
286
|
};
|
|
@@ -298,7 +305,7 @@ class ServiceCatalogClient {
|
|
|
298
305
|
queryParams: queryParams
|
|
299
306
|
});
|
|
300
307
|
try {
|
|
301
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
308
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
302
309
|
const sdkResponse = oci_common_1.composeResponse({
|
|
303
310
|
responseObject: {},
|
|
304
311
|
responseHeaders: [
|
|
@@ -322,12 +329,14 @@ class ServiceCatalogClient {
|
|
|
322
329
|
* @param CreatePrivateApplicationRequest
|
|
323
330
|
* @return CreatePrivateApplicationResponse
|
|
324
331
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
332
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
|
|
326
333
|
*/
|
|
327
334
|
createPrivateApplication(createPrivateApplicationRequest) {
|
|
328
335
|
return __awaiter(this, void 0, void 0, function* () {
|
|
329
336
|
if (this.logger)
|
|
330
337
|
this.logger.debug("Calling operation ServiceCatalogClient#createPrivateApplication.");
|
|
338
|
+
const operationName = "createPrivateApplication";
|
|
339
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/CreatePrivateApplication";
|
|
331
340
|
const pathParams = {};
|
|
332
341
|
const queryParams = {};
|
|
333
342
|
let headerParams = {
|
|
@@ -350,7 +359,7 @@ class ServiceCatalogClient {
|
|
|
350
359
|
queryParams: queryParams
|
|
351
360
|
});
|
|
352
361
|
try {
|
|
353
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
362
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
354
363
|
const sdkResponse = oci_common_1.composeResponse({
|
|
355
364
|
responseObject: {},
|
|
356
365
|
body: yield response.json(),
|
|
@@ -388,12 +397,14 @@ class ServiceCatalogClient {
|
|
|
388
397
|
* @param CreateServiceCatalogRequest
|
|
389
398
|
* @return CreateServiceCatalogResponse
|
|
390
399
|
* @throws OciError when an error occurs
|
|
391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
400
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
|
|
392
401
|
*/
|
|
393
402
|
createServiceCatalog(createServiceCatalogRequest) {
|
|
394
403
|
return __awaiter(this, void 0, void 0, function* () {
|
|
395
404
|
if (this.logger)
|
|
396
405
|
this.logger.debug("Calling operation ServiceCatalogClient#createServiceCatalog.");
|
|
406
|
+
const operationName = "createServiceCatalog";
|
|
407
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/CreateServiceCatalog";
|
|
397
408
|
const pathParams = {};
|
|
398
409
|
const queryParams = {};
|
|
399
410
|
let headerParams = {
|
|
@@ -416,7 +427,7 @@ class ServiceCatalogClient {
|
|
|
416
427
|
queryParams: queryParams
|
|
417
428
|
});
|
|
418
429
|
try {
|
|
419
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
430
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
420
431
|
const sdkResponse = oci_common_1.composeResponse({
|
|
421
432
|
responseObject: {},
|
|
422
433
|
body: yield response.json(),
|
|
@@ -449,12 +460,14 @@ class ServiceCatalogClient {
|
|
|
449
460
|
* @param CreateServiceCatalogAssociationRequest
|
|
450
461
|
* @return CreateServiceCatalogAssociationResponse
|
|
451
462
|
* @throws OciError when an error occurs
|
|
452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
463
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
|
|
453
464
|
*/
|
|
454
465
|
createServiceCatalogAssociation(createServiceCatalogAssociationRequest) {
|
|
455
466
|
return __awaiter(this, void 0, void 0, function* () {
|
|
456
467
|
if (this.logger)
|
|
457
468
|
this.logger.debug("Calling operation ServiceCatalogClient#createServiceCatalogAssociation.");
|
|
469
|
+
const operationName = "createServiceCatalogAssociation";
|
|
470
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalogAssociation/CreateServiceCatalogAssociation";
|
|
458
471
|
const pathParams = {};
|
|
459
472
|
const queryParams = {};
|
|
460
473
|
let headerParams = {
|
|
@@ -477,7 +490,7 @@ class ServiceCatalogClient {
|
|
|
477
490
|
queryParams: queryParams
|
|
478
491
|
});
|
|
479
492
|
try {
|
|
480
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
493
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
481
494
|
const sdkResponse = oci_common_1.composeResponse({
|
|
482
495
|
responseObject: {},
|
|
483
496
|
body: yield response.json(),
|
|
@@ -510,12 +523,14 @@ class ServiceCatalogClient {
|
|
|
510
523
|
* @param DeletePrivateApplicationRequest
|
|
511
524
|
* @return DeletePrivateApplicationResponse
|
|
512
525
|
* @throws OciError when an error occurs
|
|
513
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
|
|
514
527
|
*/
|
|
515
528
|
deletePrivateApplication(deletePrivateApplicationRequest) {
|
|
516
529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
517
530
|
if (this.logger)
|
|
518
531
|
this.logger.debug("Calling operation ServiceCatalogClient#deletePrivateApplication.");
|
|
532
|
+
const operationName = "deletePrivateApplication";
|
|
533
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/DeletePrivateApplication";
|
|
519
534
|
const pathParams = {
|
|
520
535
|
"{privateApplicationId}": deletePrivateApplicationRequest.privateApplicationId
|
|
521
536
|
};
|
|
@@ -539,7 +554,7 @@ class ServiceCatalogClient {
|
|
|
539
554
|
queryParams: queryParams
|
|
540
555
|
});
|
|
541
556
|
try {
|
|
542
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
557
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
543
558
|
const sdkResponse = oci_common_1.composeResponse({
|
|
544
559
|
responseObject: {},
|
|
545
560
|
responseHeaders: [
|
|
@@ -568,12 +583,14 @@ class ServiceCatalogClient {
|
|
|
568
583
|
* @param DeleteServiceCatalogRequest
|
|
569
584
|
* @return DeleteServiceCatalogResponse
|
|
570
585
|
* @throws OciError when an error occurs
|
|
571
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
586
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
|
|
572
587
|
*/
|
|
573
588
|
deleteServiceCatalog(deleteServiceCatalogRequest) {
|
|
574
589
|
return __awaiter(this, void 0, void 0, function* () {
|
|
575
590
|
if (this.logger)
|
|
576
591
|
this.logger.debug("Calling operation ServiceCatalogClient#deleteServiceCatalog.");
|
|
592
|
+
const operationName = "deleteServiceCatalog";
|
|
593
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/DeleteServiceCatalog";
|
|
577
594
|
const pathParams = {
|
|
578
595
|
"{serviceCatalogId}": deleteServiceCatalogRequest.serviceCatalogId
|
|
579
596
|
};
|
|
@@ -597,7 +614,7 @@ class ServiceCatalogClient {
|
|
|
597
614
|
queryParams: queryParams
|
|
598
615
|
});
|
|
599
616
|
try {
|
|
600
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
617
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
601
618
|
const sdkResponse = oci_common_1.composeResponse({
|
|
602
619
|
responseObject: {},
|
|
603
620
|
responseHeaders: [
|
|
@@ -621,12 +638,14 @@ class ServiceCatalogClient {
|
|
|
621
638
|
* @param DeleteServiceCatalogAssociationRequest
|
|
622
639
|
* @return DeleteServiceCatalogAssociationResponse
|
|
623
640
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
641
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
|
|
625
642
|
*/
|
|
626
643
|
deleteServiceCatalogAssociation(deleteServiceCatalogAssociationRequest) {
|
|
627
644
|
return __awaiter(this, void 0, void 0, function* () {
|
|
628
645
|
if (this.logger)
|
|
629
646
|
this.logger.debug("Calling operation ServiceCatalogClient#deleteServiceCatalogAssociation.");
|
|
647
|
+
const operationName = "deleteServiceCatalogAssociation";
|
|
648
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalogAssociation/DeleteServiceCatalogAssociation";
|
|
630
649
|
const pathParams = {
|
|
631
650
|
"{serviceCatalogAssociationId}": deleteServiceCatalogAssociationRequest.serviceCatalogAssociationId
|
|
632
651
|
};
|
|
@@ -650,7 +669,7 @@ class ServiceCatalogClient {
|
|
|
650
669
|
queryParams: queryParams
|
|
651
670
|
});
|
|
652
671
|
try {
|
|
653
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
672
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
654
673
|
const sdkResponse = oci_common_1.composeResponse({
|
|
655
674
|
responseObject: {},
|
|
656
675
|
responseHeaders: [
|
|
@@ -674,12 +693,14 @@ class ServiceCatalogClient {
|
|
|
674
693
|
* @param GetPrivateApplicationRequest
|
|
675
694
|
* @return GetPrivateApplicationResponse
|
|
676
695
|
* @throws OciError when an error occurs
|
|
677
|
-
* @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.28.0/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
|
|
678
697
|
*/
|
|
679
698
|
getPrivateApplication(getPrivateApplicationRequest) {
|
|
680
699
|
return __awaiter(this, void 0, void 0, function* () {
|
|
681
700
|
if (this.logger)
|
|
682
701
|
this.logger.debug("Calling operation ServiceCatalogClient#getPrivateApplication.");
|
|
702
|
+
const operationName = "getPrivateApplication";
|
|
703
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/GetPrivateApplication";
|
|
683
704
|
const pathParams = {
|
|
684
705
|
"{privateApplicationId}": getPrivateApplicationRequest.privateApplicationId
|
|
685
706
|
};
|
|
@@ -702,7 +723,7 @@ class ServiceCatalogClient {
|
|
|
702
723
|
queryParams: queryParams
|
|
703
724
|
});
|
|
704
725
|
try {
|
|
705
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
726
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
706
727
|
const sdkResponse = oci_common_1.composeResponse({
|
|
707
728
|
responseObject: {},
|
|
708
729
|
body: yield response.json(),
|
|
@@ -735,12 +756,14 @@ class ServiceCatalogClient {
|
|
|
735
756
|
* @param GetPrivateApplicationActionDownloadLogoRequest
|
|
736
757
|
* @return GetPrivateApplicationActionDownloadLogoResponse
|
|
737
758
|
* @throws OciError when an error occurs
|
|
738
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
|
|
739
760
|
*/
|
|
740
761
|
getPrivateApplicationActionDownloadLogo(getPrivateApplicationActionDownloadLogoRequest) {
|
|
741
762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
742
763
|
if (this.logger)
|
|
743
764
|
this.logger.debug("Calling operation ServiceCatalogClient#getPrivateApplicationActionDownloadLogo.");
|
|
765
|
+
const operationName = "getPrivateApplicationActionDownloadLogo";
|
|
766
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/GetPrivateApplicationActionDownloadLogo";
|
|
744
767
|
const pathParams = {
|
|
745
768
|
"{privateApplicationId}": getPrivateApplicationActionDownloadLogoRequest.privateApplicationId
|
|
746
769
|
};
|
|
@@ -763,7 +786,7 @@ class ServiceCatalogClient {
|
|
|
763
786
|
queryParams: queryParams
|
|
764
787
|
});
|
|
765
788
|
try {
|
|
766
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
789
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
767
790
|
const sdkResponse = oci_common_1.composeResponse({
|
|
768
791
|
responseObject: {},
|
|
769
792
|
body: response.body,
|
|
@@ -790,12 +813,14 @@ class ServiceCatalogClient {
|
|
|
790
813
|
* @param GetPrivateApplicationPackageRequest
|
|
791
814
|
* @return GetPrivateApplicationPackageResponse
|
|
792
815
|
* @throws OciError when an error occurs
|
|
793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
816
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
|
|
794
817
|
*/
|
|
795
818
|
getPrivateApplicationPackage(getPrivateApplicationPackageRequest) {
|
|
796
819
|
return __awaiter(this, void 0, void 0, function* () {
|
|
797
820
|
if (this.logger)
|
|
798
821
|
this.logger.debug("Calling operation ServiceCatalogClient#getPrivateApplicationPackage.");
|
|
822
|
+
const operationName = "getPrivateApplicationPackage";
|
|
823
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplicationPackage/GetPrivateApplicationPackage";
|
|
799
824
|
const pathParams = {
|
|
800
825
|
"{privateApplicationPackageId}": getPrivateApplicationPackageRequest.privateApplicationPackageId
|
|
801
826
|
};
|
|
@@ -818,7 +843,7 @@ class ServiceCatalogClient {
|
|
|
818
843
|
queryParams: queryParams
|
|
819
844
|
});
|
|
820
845
|
try {
|
|
821
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
846
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
822
847
|
const sdkResponse = oci_common_1.composeResponse({
|
|
823
848
|
responseObject: {},
|
|
824
849
|
body: yield response.json(),
|
|
@@ -851,12 +876,14 @@ class ServiceCatalogClient {
|
|
|
851
876
|
* @param GetPrivateApplicationPackageActionDownloadConfigRequest
|
|
852
877
|
* @return GetPrivateApplicationPackageActionDownloadConfigResponse
|
|
853
878
|
* @throws OciError when an error occurs
|
|
854
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
879
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
|
|
855
880
|
*/
|
|
856
881
|
getPrivateApplicationPackageActionDownloadConfig(getPrivateApplicationPackageActionDownloadConfigRequest) {
|
|
857
882
|
return __awaiter(this, void 0, void 0, function* () {
|
|
858
883
|
if (this.logger)
|
|
859
884
|
this.logger.debug("Calling operation ServiceCatalogClient#getPrivateApplicationPackageActionDownloadConfig.");
|
|
885
|
+
const operationName = "getPrivateApplicationPackageActionDownloadConfig";
|
|
886
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplicationPackage/GetPrivateApplicationPackageActionDownloadConfig";
|
|
860
887
|
const pathParams = {
|
|
861
888
|
"{privateApplicationPackageId}": getPrivateApplicationPackageActionDownloadConfigRequest.privateApplicationPackageId
|
|
862
889
|
};
|
|
@@ -879,7 +906,7 @@ class ServiceCatalogClient {
|
|
|
879
906
|
queryParams: queryParams
|
|
880
907
|
});
|
|
881
908
|
try {
|
|
882
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
909
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
883
910
|
const sdkResponse = oci_common_1.composeResponse({
|
|
884
911
|
responseObject: {},
|
|
885
912
|
body: response.body,
|
|
@@ -906,12 +933,14 @@ class ServiceCatalogClient {
|
|
|
906
933
|
* @param GetServiceCatalogRequest
|
|
907
934
|
* @return GetServiceCatalogResponse
|
|
908
935
|
* @throws OciError when an error occurs
|
|
909
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
936
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
|
|
910
937
|
*/
|
|
911
938
|
getServiceCatalog(getServiceCatalogRequest) {
|
|
912
939
|
return __awaiter(this, void 0, void 0, function* () {
|
|
913
940
|
if (this.logger)
|
|
914
941
|
this.logger.debug("Calling operation ServiceCatalogClient#getServiceCatalog.");
|
|
942
|
+
const operationName = "getServiceCatalog";
|
|
943
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/GetServiceCatalog";
|
|
915
944
|
const pathParams = {
|
|
916
945
|
"{serviceCatalogId}": getServiceCatalogRequest.serviceCatalogId
|
|
917
946
|
};
|
|
@@ -934,7 +963,7 @@ class ServiceCatalogClient {
|
|
|
934
963
|
queryParams: queryParams
|
|
935
964
|
});
|
|
936
965
|
try {
|
|
937
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
966
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
938
967
|
const sdkResponse = oci_common_1.composeResponse({
|
|
939
968
|
responseObject: {},
|
|
940
969
|
body: yield response.json(),
|
|
@@ -967,12 +996,14 @@ class ServiceCatalogClient {
|
|
|
967
996
|
* @param GetServiceCatalogAssociationRequest
|
|
968
997
|
* @return GetServiceCatalogAssociationResponse
|
|
969
998
|
* @throws OciError when an error occurs
|
|
970
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
999
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
|
|
971
1000
|
*/
|
|
972
1001
|
getServiceCatalogAssociation(getServiceCatalogAssociationRequest) {
|
|
973
1002
|
return __awaiter(this, void 0, void 0, function* () {
|
|
974
1003
|
if (this.logger)
|
|
975
1004
|
this.logger.debug("Calling operation ServiceCatalogClient#getServiceCatalogAssociation.");
|
|
1005
|
+
const operationName = "getServiceCatalogAssociation";
|
|
1006
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalogAssociation/GetServiceCatalogAssociation";
|
|
976
1007
|
const pathParams = {
|
|
977
1008
|
"{serviceCatalogAssociationId}": getServiceCatalogAssociationRequest.serviceCatalogAssociationId
|
|
978
1009
|
};
|
|
@@ -995,7 +1026,7 @@ class ServiceCatalogClient {
|
|
|
995
1026
|
queryParams: queryParams
|
|
996
1027
|
});
|
|
997
1028
|
try {
|
|
998
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1029
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
999
1030
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1000
1031
|
responseObject: {},
|
|
1001
1032
|
body: yield response.json(),
|
|
@@ -1028,12 +1059,14 @@ class ServiceCatalogClient {
|
|
|
1028
1059
|
* @param GetWorkRequestRequest
|
|
1029
1060
|
* @return GetWorkRequestResponse
|
|
1030
1061
|
* @throws OciError when an error occurs
|
|
1031
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1032
1063
|
*/
|
|
1033
1064
|
getWorkRequest(getWorkRequestRequest) {
|
|
1034
1065
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1035
1066
|
if (this.logger)
|
|
1036
1067
|
this.logger.debug("Calling operation ServiceCatalogClient#getWorkRequest.");
|
|
1068
|
+
const operationName = "getWorkRequest";
|
|
1069
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/WorkRequest/GetWorkRequest";
|
|
1037
1070
|
const pathParams = {
|
|
1038
1071
|
"{workRequestId}": getWorkRequestRequest.workRequestId
|
|
1039
1072
|
};
|
|
@@ -1056,7 +1089,7 @@ class ServiceCatalogClient {
|
|
|
1056
1089
|
queryParams: queryParams
|
|
1057
1090
|
});
|
|
1058
1091
|
try {
|
|
1059
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1092
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1060
1093
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1061
1094
|
responseObject: {},
|
|
1062
1095
|
body: yield response.json(),
|
|
@@ -1097,12 +1130,14 @@ class ServiceCatalogClient {
|
|
|
1097
1130
|
* @param ListApplicationsRequest
|
|
1098
1131
|
* @return ListApplicationsResponse
|
|
1099
1132
|
* @throws OciError when an error occurs
|
|
1100
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
1101
1134
|
*/
|
|
1102
1135
|
listApplications(listApplicationsRequest) {
|
|
1103
1136
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1104
1137
|
if (this.logger)
|
|
1105
1138
|
this.logger.debug("Calling operation ServiceCatalogClient#listApplications.");
|
|
1139
|
+
const operationName = "listApplications";
|
|
1140
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ApplicationSummary/ListApplications";
|
|
1106
1141
|
const pathParams = {};
|
|
1107
1142
|
const queryParams = {
|
|
1108
1143
|
"compartmentId": listApplicationsRequest.compartmentId,
|
|
@@ -1136,7 +1171,7 @@ class ServiceCatalogClient {
|
|
|
1136
1171
|
queryParams: queryParams
|
|
1137
1172
|
});
|
|
1138
1173
|
try {
|
|
1139
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1174
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1140
1175
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1141
1176
|
responseObject: {},
|
|
1142
1177
|
body: yield response.json(),
|
|
@@ -1169,12 +1204,14 @@ class ServiceCatalogClient {
|
|
|
1169
1204
|
* @param ListPrivateApplicationPackagesRequest
|
|
1170
1205
|
* @return ListPrivateApplicationPackagesResponse
|
|
1171
1206
|
* @throws OciError when an error occurs
|
|
1172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
|
|
1173
1208
|
*/
|
|
1174
1209
|
listPrivateApplicationPackages(listPrivateApplicationPackagesRequest) {
|
|
1175
1210
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1176
1211
|
if (this.logger)
|
|
1177
1212
|
this.logger.debug("Calling operation ServiceCatalogClient#listPrivateApplicationPackages.");
|
|
1213
|
+
const operationName = "listPrivateApplicationPackages";
|
|
1214
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplicationPackage/ListPrivateApplicationPackages";
|
|
1178
1215
|
const pathParams = {};
|
|
1179
1216
|
const queryParams = {
|
|
1180
1217
|
"privateApplicationId": listPrivateApplicationPackagesRequest.privateApplicationId,
|
|
@@ -1204,7 +1241,7 @@ class ServiceCatalogClient {
|
|
|
1204
1241
|
queryParams: queryParams
|
|
1205
1242
|
});
|
|
1206
1243
|
try {
|
|
1207
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1244
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1208
1245
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1209
1246
|
responseObject: {},
|
|
1210
1247
|
body: yield response.json(),
|
|
@@ -1237,12 +1274,14 @@ class ServiceCatalogClient {
|
|
|
1237
1274
|
* @param ListPrivateApplicationsRequest
|
|
1238
1275
|
* @return ListPrivateApplicationsResponse
|
|
1239
1276
|
* @throws OciError when an error occurs
|
|
1240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
|
|
1241
1278
|
*/
|
|
1242
1279
|
listPrivateApplications(listPrivateApplicationsRequest) {
|
|
1243
1280
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1244
1281
|
if (this.logger)
|
|
1245
1282
|
this.logger.debug("Calling operation ServiceCatalogClient#listPrivateApplications.");
|
|
1283
|
+
const operationName = "listPrivateApplications";
|
|
1284
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/ListPrivateApplications";
|
|
1246
1285
|
const pathParams = {};
|
|
1247
1286
|
const queryParams = {
|
|
1248
1287
|
"compartmentId": listPrivateApplicationsRequest.compartmentId,
|
|
@@ -1271,7 +1310,7 @@ class ServiceCatalogClient {
|
|
|
1271
1310
|
queryParams: queryParams
|
|
1272
1311
|
});
|
|
1273
1312
|
try {
|
|
1274
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1313
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1275
1314
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1276
1315
|
responseObject: {},
|
|
1277
1316
|
body: yield response.json(),
|
|
@@ -1304,12 +1343,14 @@ class ServiceCatalogClient {
|
|
|
1304
1343
|
* @param ListServiceCatalogAssociationsRequest
|
|
1305
1344
|
* @return ListServiceCatalogAssociationsResponse
|
|
1306
1345
|
* @throws OciError when an error occurs
|
|
1307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1346
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
|
|
1308
1347
|
*/
|
|
1309
1348
|
listServiceCatalogAssociations(listServiceCatalogAssociationsRequest) {
|
|
1310
1349
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1311
1350
|
if (this.logger)
|
|
1312
1351
|
this.logger.debug("Calling operation ServiceCatalogClient#listServiceCatalogAssociations.");
|
|
1352
|
+
const operationName = "listServiceCatalogAssociations";
|
|
1353
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalogAssociation/ListServiceCatalogAssociations";
|
|
1313
1354
|
const pathParams = {};
|
|
1314
1355
|
const queryParams = {
|
|
1315
1356
|
"serviceCatalogAssociationId": listServiceCatalogAssociationsRequest.serviceCatalogAssociationId,
|
|
@@ -1339,7 +1380,7 @@ class ServiceCatalogClient {
|
|
|
1339
1380
|
queryParams: queryParams
|
|
1340
1381
|
});
|
|
1341
1382
|
try {
|
|
1342
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1383
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1343
1384
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1344
1385
|
responseObject: {},
|
|
1345
1386
|
body: yield response.json(),
|
|
@@ -1372,12 +1413,14 @@ class ServiceCatalogClient {
|
|
|
1372
1413
|
* @param ListServiceCatalogsRequest
|
|
1373
1414
|
* @return ListServiceCatalogsResponse
|
|
1374
1415
|
* @throws OciError when an error occurs
|
|
1375
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1416
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
|
|
1376
1417
|
*/
|
|
1377
1418
|
listServiceCatalogs(listServiceCatalogsRequest) {
|
|
1378
1419
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1379
1420
|
if (this.logger)
|
|
1380
1421
|
this.logger.debug("Calling operation ServiceCatalogClient#listServiceCatalogs.");
|
|
1422
|
+
const operationName = "listServiceCatalogs";
|
|
1423
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/ListServiceCatalogs";
|
|
1381
1424
|
const pathParams = {};
|
|
1382
1425
|
const queryParams = {
|
|
1383
1426
|
"compartmentId": listServiceCatalogsRequest.compartmentId,
|
|
@@ -1406,7 +1449,7 @@ class ServiceCatalogClient {
|
|
|
1406
1449
|
queryParams: queryParams
|
|
1407
1450
|
});
|
|
1408
1451
|
try {
|
|
1409
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1452
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1410
1453
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1411
1454
|
responseObject: {},
|
|
1412
1455
|
body: yield response.json(),
|
|
@@ -1440,12 +1483,14 @@ class ServiceCatalogClient {
|
|
|
1440
1483
|
* @param ListWorkRequestErrorsRequest
|
|
1441
1484
|
* @return ListWorkRequestErrorsResponse
|
|
1442
1485
|
* @throws OciError when an error occurs
|
|
1443
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1486
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1444
1487
|
*/
|
|
1445
1488
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1446
1489
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1447
1490
|
if (this.logger)
|
|
1448
1491
|
this.logger.debug("Calling operation ServiceCatalogClient#listWorkRequestErrors.");
|
|
1492
|
+
const operationName = "listWorkRequestErrors";
|
|
1493
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/WorkRequestError/ListWorkRequestErrors";
|
|
1449
1494
|
const pathParams = {
|
|
1450
1495
|
"{workRequestId}": listWorkRequestErrorsRequest.workRequestId
|
|
1451
1496
|
};
|
|
@@ -1473,7 +1518,7 @@ class ServiceCatalogClient {
|
|
|
1473
1518
|
queryParams: queryParams
|
|
1474
1519
|
});
|
|
1475
1520
|
try {
|
|
1476
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1521
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1477
1522
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1478
1523
|
responseObject: {},
|
|
1479
1524
|
body: yield response.json(),
|
|
@@ -1507,12 +1552,14 @@ class ServiceCatalogClient {
|
|
|
1507
1552
|
* @param ListWorkRequestLogsRequest
|
|
1508
1553
|
* @return ListWorkRequestLogsResponse
|
|
1509
1554
|
* @throws OciError when an error occurs
|
|
1510
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1555
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1511
1556
|
*/
|
|
1512
1557
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1513
1558
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1514
1559
|
if (this.logger)
|
|
1515
1560
|
this.logger.debug("Calling operation ServiceCatalogClient#listWorkRequestLogs.");
|
|
1561
|
+
const operationName = "listWorkRequestLogs";
|
|
1562
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/WorkRequestLogEntry/ListWorkRequestLogs";
|
|
1516
1563
|
const pathParams = {
|
|
1517
1564
|
"{workRequestId}": listWorkRequestLogsRequest.workRequestId
|
|
1518
1565
|
};
|
|
@@ -1540,7 +1587,7 @@ class ServiceCatalogClient {
|
|
|
1540
1587
|
queryParams: queryParams
|
|
1541
1588
|
});
|
|
1542
1589
|
try {
|
|
1543
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1590
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1544
1591
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1545
1592
|
responseObject: {},
|
|
1546
1593
|
body: yield response.json(),
|
|
@@ -1574,12 +1621,14 @@ class ServiceCatalogClient {
|
|
|
1574
1621
|
* @param ListWorkRequestsRequest
|
|
1575
1622
|
* @return ListWorkRequestsResponse
|
|
1576
1623
|
* @throws OciError when an error occurs
|
|
1577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1624
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1578
1625
|
*/
|
|
1579
1626
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1580
1627
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1581
1628
|
if (this.logger)
|
|
1582
1629
|
this.logger.debug("Calling operation ServiceCatalogClient#listWorkRequests.");
|
|
1630
|
+
const operationName = "listWorkRequests";
|
|
1631
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/WorkRequest/ListWorkRequests";
|
|
1583
1632
|
const pathParams = {};
|
|
1584
1633
|
const queryParams = {
|
|
1585
1634
|
"compartmentId": listWorkRequestsRequest.compartmentId,
|
|
@@ -1609,7 +1658,7 @@ class ServiceCatalogClient {
|
|
|
1609
1658
|
queryParams: queryParams
|
|
1610
1659
|
});
|
|
1611
1660
|
try {
|
|
1612
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1661
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1613
1662
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1614
1663
|
responseObject: {},
|
|
1615
1664
|
body: yield response.json(),
|
|
@@ -1642,12 +1691,14 @@ class ServiceCatalogClient {
|
|
|
1642
1691
|
* @param UpdatePrivateApplicationRequest
|
|
1643
1692
|
* @return UpdatePrivateApplicationResponse
|
|
1644
1693
|
* @throws OciError when an error occurs
|
|
1645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
|
|
1646
1695
|
*/
|
|
1647
1696
|
updatePrivateApplication(updatePrivateApplicationRequest) {
|
|
1648
1697
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1649
1698
|
if (this.logger)
|
|
1650
1699
|
this.logger.debug("Calling operation ServiceCatalogClient#updatePrivateApplication.");
|
|
1700
|
+
const operationName = "updatePrivateApplication";
|
|
1701
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/PrivateApplication/UpdatePrivateApplication";
|
|
1651
1702
|
const pathParams = {
|
|
1652
1703
|
"{privateApplicationId}": updatePrivateApplicationRequest.privateApplicationId
|
|
1653
1704
|
};
|
|
@@ -1672,7 +1723,7 @@ class ServiceCatalogClient {
|
|
|
1672
1723
|
queryParams: queryParams
|
|
1673
1724
|
});
|
|
1674
1725
|
try {
|
|
1675
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1726
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1676
1727
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1677
1728
|
responseObject: {},
|
|
1678
1729
|
body: yield response.json(),
|
|
@@ -1710,12 +1761,14 @@ class ServiceCatalogClient {
|
|
|
1710
1761
|
* @param UpdateServiceCatalogRequest
|
|
1711
1762
|
* @return UpdateServiceCatalogResponse
|
|
1712
1763
|
* @throws OciError when an error occurs
|
|
1713
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1764
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
|
|
1714
1765
|
*/
|
|
1715
1766
|
updateServiceCatalog(updateServiceCatalogRequest) {
|
|
1716
1767
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1717
1768
|
if (this.logger)
|
|
1718
1769
|
this.logger.debug("Calling operation ServiceCatalogClient#updateServiceCatalog.");
|
|
1770
|
+
const operationName = "updateServiceCatalog";
|
|
1771
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/service-catalog/20210527/ServiceCatalog/UpdateServiceCatalog";
|
|
1719
1772
|
const pathParams = {
|
|
1720
1773
|
"{serviceCatalogId}": updateServiceCatalogRequest.serviceCatalogId
|
|
1721
1774
|
};
|
|
@@ -1740,7 +1793,7 @@ class ServiceCatalogClient {
|
|
|
1740
1793
|
queryParams: queryParams
|
|
1741
1794
|
});
|
|
1742
1795
|
try {
|
|
1743
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1796
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1744
1797
|
const sdkResponse = oci_common_1.composeResponse({
|
|
1745
1798
|
responseObject: {},
|
|
1746
1799
|
body: yield response.json(),
|