oci-fusionapps 2.79.1 → 2.80.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 +41 -40
- package/lib/client.js +203 -81
- package/lib/client.js.map +1 -1
- package/lib/model/action.js +4 -2
- package/lib/model/action.js.map +1 -1
- package/lib/model/rule-condition.js +4 -2
- package/lib/model/rule-condition.js.map +1 -1
- package/lib/model/rule.js +4 -2
- package/lib/model/rule.js.map +1 -1
- package/lib/request/change-fusion-environment-compartment-request.d.ts +1 -1
- package/lib/request/change-fusion-environment-family-compartment-request.d.ts +1 -1
- package/lib/request/create-data-masking-activity-request.d.ts +1 -1
- package/lib/request/create-fusion-environment-admin-user-request.d.ts +1 -1
- package/lib/request/create-fusion-environment-family-request.d.ts +1 -1
- package/lib/request/create-fusion-environment-request.d.ts +1 -1
- package/lib/request/create-refresh-activity-request.d.ts +1 -1
- package/lib/request/create-service-attachment-request.d.ts +1 -1
- package/lib/request/delete-fusion-environment-admin-user-request.d.ts +1 -1
- package/lib/request/delete-fusion-environment-family-request.d.ts +1 -1
- package/lib/request/delete-fusion-environment-request.d.ts +1 -1
- package/lib/request/delete-refresh-activity-request.d.ts +1 -1
- package/lib/request/delete-service-attachment-request.d.ts +1 -1
- package/lib/request/get-data-masking-activity-request.d.ts +1 -1
- package/lib/request/get-fusion-environment-family-limits-and-usage-request.d.ts +1 -1
- package/lib/request/get-fusion-environment-family-request.d.ts +1 -1
- package/lib/request/get-fusion-environment-family-subscription-detail-request.d.ts +1 -1
- package/lib/request/get-fusion-environment-request.d.ts +1 -1
- package/lib/request/get-fusion-environment-status-request.d.ts +1 -1
- package/lib/request/get-refresh-activity-request.d.ts +1 -1
- package/lib/request/get-scheduled-activity-request.d.ts +1 -1
- package/lib/request/get-service-attachment-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-admin-users-request.d.ts +1 -1
- package/lib/request/list-data-masking-activities-request.d.ts +1 -1
- package/lib/request/list-fusion-environment-families-request.d.ts +1 -1
- package/lib/request/list-fusion-environments-request.d.ts +1 -1
- package/lib/request/list-refresh-activities-request.d.ts +1 -1
- package/lib/request/list-scheduled-activities-request.d.ts +1 -1
- package/lib/request/list-service-attachments-request.d.ts +1 -1
- package/lib/request/list-time-available-for-refreshes-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/reset-fusion-environment-password-request.d.ts +1 -1
- package/lib/request/update-fusion-environment-family-request.d.ts +1 -1
- package/lib/request/update-fusion-environment-request.d.ts +1 -1
- package/lib/request/update-refresh-activity-request.d.ts +1 -1
- package/lib/request/verify-service-attachment-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -57,7 +57,7 @@ var FusionApplicationsApiKeys;
|
|
|
57
57
|
*/
|
|
58
58
|
class FusionApplicationsClient {
|
|
59
59
|
constructor(params, clientConfiguration) {
|
|
60
|
-
this["_realmSpecificEndpointTemplateEnabled"] =
|
|
60
|
+
this["_realmSpecificEndpointTemplateEnabled"] = undefined;
|
|
61
61
|
this["_endpoint"] = "";
|
|
62
62
|
this["_defaultHeaders"] = {};
|
|
63
63
|
this._circuitBreaker = null;
|
|
@@ -116,7 +116,11 @@ class FusionApplicationsClient {
|
|
|
116
116
|
set endpoint(endpoint) {
|
|
117
117
|
this._endpoint = endpoint;
|
|
118
118
|
this._endpoint = this._endpoint + "/20211201";
|
|
119
|
-
|
|
119
|
+
if (this.logger)
|
|
120
|
+
this.logger.info(`FusionApplicationsClient endpoint set to ${this._endpoint}`);
|
|
121
|
+
}
|
|
122
|
+
get logger() {
|
|
123
|
+
return common.LOG.logger;
|
|
120
124
|
}
|
|
121
125
|
/**
|
|
122
126
|
* Determines whether realm specific endpoint should be used or not.
|
|
@@ -125,7 +129,8 @@ class FusionApplicationsClient {
|
|
|
125
129
|
*/
|
|
126
130
|
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
127
131
|
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
128
|
-
|
|
132
|
+
if (this.logger)
|
|
133
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
129
134
|
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
130
135
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(FusionApplicationsClient.serviceEndpointTemplate, this._region, FusionApplicationsClient.endpointServiceName);
|
|
131
136
|
}
|
|
@@ -193,11 +198,12 @@ class FusionApplicationsClient {
|
|
|
193
198
|
* @param ChangeFusionEnvironmentCompartmentRequest
|
|
194
199
|
* @return ChangeFusionEnvironmentCompartmentResponse
|
|
195
200
|
* @throws OciError when an error occurs
|
|
196
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ChangeFusionEnvironmentCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentCompartment API.
|
|
197
202
|
*/
|
|
198
203
|
changeFusionEnvironmentCompartment(changeFusionEnvironmentCompartmentRequest) {
|
|
199
204
|
return __awaiter(this, void 0, void 0, function* () {
|
|
200
|
-
|
|
205
|
+
if (this.logger)
|
|
206
|
+
this.logger.debug("Calling operation FusionApplicationsClient#changeFusionEnvironmentCompartment.");
|
|
201
207
|
const operationName = "changeFusionEnvironmentCompartment";
|
|
202
208
|
const apiReferenceLink = "";
|
|
203
209
|
const pathParams = {
|
|
@@ -212,6 +218,8 @@ class FusionApplicationsClient {
|
|
|
212
218
|
};
|
|
213
219
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
214
220
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFusionEnvironmentCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
221
|
+
if (this.logger)
|
|
222
|
+
retrier.logger = this.logger;
|
|
215
223
|
const request = yield oci_common_1.composeRequest({
|
|
216
224
|
baseEndpoint: this._endpoint,
|
|
217
225
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -254,11 +262,12 @@ class FusionApplicationsClient {
|
|
|
254
262
|
* @param ChangeFusionEnvironmentFamilyCompartmentRequest
|
|
255
263
|
* @return ChangeFusionEnvironmentFamilyCompartmentResponse
|
|
256
264
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ChangeFusionEnvironmentFamilyCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentFamilyCompartment API.
|
|
258
266
|
*/
|
|
259
267
|
changeFusionEnvironmentFamilyCompartment(changeFusionEnvironmentFamilyCompartmentRequest) {
|
|
260
268
|
return __awaiter(this, void 0, void 0, function* () {
|
|
261
|
-
|
|
269
|
+
if (this.logger)
|
|
270
|
+
this.logger.debug("Calling operation FusionApplicationsClient#changeFusionEnvironmentFamilyCompartment.");
|
|
262
271
|
const operationName = "changeFusionEnvironmentFamilyCompartment";
|
|
263
272
|
const apiReferenceLink = "";
|
|
264
273
|
const pathParams = {
|
|
@@ -273,6 +282,8 @@ class FusionApplicationsClient {
|
|
|
273
282
|
};
|
|
274
283
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
275
284
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeFusionEnvironmentFamilyCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
285
|
+
if (this.logger)
|
|
286
|
+
retrier.logger = this.logger;
|
|
276
287
|
const request = yield oci_common_1.composeRequest({
|
|
277
288
|
baseEndpoint: this._endpoint,
|
|
278
289
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -314,11 +325,12 @@ class FusionApplicationsClient {
|
|
|
314
325
|
* @param CreateDataMaskingActivityRequest
|
|
315
326
|
* @return CreateDataMaskingActivityResponse
|
|
316
327
|
* @throws OciError when an error occurs
|
|
317
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
328
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateDataMaskingActivity.ts.html |here} to see how to use CreateDataMaskingActivity API.
|
|
318
329
|
*/
|
|
319
330
|
createDataMaskingActivity(createDataMaskingActivityRequest) {
|
|
320
331
|
return __awaiter(this, void 0, void 0, function* () {
|
|
321
|
-
|
|
332
|
+
if (this.logger)
|
|
333
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createDataMaskingActivity.");
|
|
322
334
|
const operationName = "createDataMaskingActivity";
|
|
323
335
|
const apiReferenceLink = "";
|
|
324
336
|
const pathParams = {
|
|
@@ -332,6 +344,8 @@ class FusionApplicationsClient {
|
|
|
332
344
|
};
|
|
333
345
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
334
346
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createDataMaskingActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
347
|
+
if (this.logger)
|
|
348
|
+
retrier.logger = this.logger;
|
|
335
349
|
const request = yield oci_common_1.composeRequest({
|
|
336
350
|
baseEndpoint: this._endpoint,
|
|
337
351
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -373,11 +387,12 @@ class FusionApplicationsClient {
|
|
|
373
387
|
* @param CreateFusionEnvironmentRequest
|
|
374
388
|
* @return CreateFusionEnvironmentResponse
|
|
375
389
|
* @throws OciError when an error occurs
|
|
376
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateFusionEnvironment.ts.html |here} to see how to use CreateFusionEnvironment API.
|
|
377
391
|
*/
|
|
378
392
|
createFusionEnvironment(createFusionEnvironmentRequest) {
|
|
379
393
|
return __awaiter(this, void 0, void 0, function* () {
|
|
380
|
-
|
|
394
|
+
if (this.logger)
|
|
395
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createFusionEnvironment.");
|
|
381
396
|
const operationName = "createFusionEnvironment";
|
|
382
397
|
const apiReferenceLink = "";
|
|
383
398
|
const pathParams = {};
|
|
@@ -389,6 +404,8 @@ class FusionApplicationsClient {
|
|
|
389
404
|
};
|
|
390
405
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
391
406
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFusionEnvironmentRequest.retryConfiguration, specRetryConfiguration);
|
|
407
|
+
if (this.logger)
|
|
408
|
+
retrier.logger = this.logger;
|
|
392
409
|
const request = yield oci_common_1.composeRequest({
|
|
393
410
|
baseEndpoint: this._endpoint,
|
|
394
411
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -429,11 +446,12 @@ class FusionApplicationsClient {
|
|
|
429
446
|
* @param CreateFusionEnvironmentAdminUserRequest
|
|
430
447
|
* @return CreateFusionEnvironmentAdminUserResponse
|
|
431
448
|
* @throws OciError when an error occurs
|
|
432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
449
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateFusionEnvironmentAdminUser.ts.html |here} to see how to use CreateFusionEnvironmentAdminUser API.
|
|
433
450
|
*/
|
|
434
451
|
createFusionEnvironmentAdminUser(createFusionEnvironmentAdminUserRequest) {
|
|
435
452
|
return __awaiter(this, void 0, void 0, function* () {
|
|
436
|
-
|
|
453
|
+
if (this.logger)
|
|
454
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createFusionEnvironmentAdminUser.");
|
|
437
455
|
const operationName = "createFusionEnvironmentAdminUser";
|
|
438
456
|
const apiReferenceLink = "";
|
|
439
457
|
const pathParams = {
|
|
@@ -447,6 +465,8 @@ class FusionApplicationsClient {
|
|
|
447
465
|
};
|
|
448
466
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
449
467
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFusionEnvironmentAdminUserRequest.retryConfiguration, specRetryConfiguration);
|
|
468
|
+
if (this.logger)
|
|
469
|
+
retrier.logger = this.logger;
|
|
450
470
|
const request = yield oci_common_1.composeRequest({
|
|
451
471
|
baseEndpoint: this._endpoint,
|
|
452
472
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -488,11 +508,12 @@ class FusionApplicationsClient {
|
|
|
488
508
|
* @param CreateFusionEnvironmentFamilyRequest
|
|
489
509
|
* @return CreateFusionEnvironmentFamilyResponse
|
|
490
510
|
* @throws OciError when an error occurs
|
|
491
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
511
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateFusionEnvironmentFamily.ts.html |here} to see how to use CreateFusionEnvironmentFamily API.
|
|
492
512
|
*/
|
|
493
513
|
createFusionEnvironmentFamily(createFusionEnvironmentFamilyRequest) {
|
|
494
514
|
return __awaiter(this, void 0, void 0, function* () {
|
|
495
|
-
|
|
515
|
+
if (this.logger)
|
|
516
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createFusionEnvironmentFamily.");
|
|
496
517
|
const operationName = "createFusionEnvironmentFamily";
|
|
497
518
|
const apiReferenceLink = "";
|
|
498
519
|
const pathParams = {};
|
|
@@ -504,6 +525,8 @@ class FusionApplicationsClient {
|
|
|
504
525
|
};
|
|
505
526
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
506
527
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createFusionEnvironmentFamilyRequest.retryConfiguration, specRetryConfiguration);
|
|
528
|
+
if (this.logger)
|
|
529
|
+
retrier.logger = this.logger;
|
|
507
530
|
const request = yield oci_common_1.composeRequest({
|
|
508
531
|
baseEndpoint: this._endpoint,
|
|
509
532
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -545,11 +568,12 @@ class FusionApplicationsClient {
|
|
|
545
568
|
* @param CreateRefreshActivityRequest
|
|
546
569
|
* @return CreateRefreshActivityResponse
|
|
547
570
|
* @throws OciError when an error occurs
|
|
548
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateRefreshActivity.ts.html |here} to see how to use CreateRefreshActivity API.
|
|
549
572
|
*/
|
|
550
573
|
createRefreshActivity(createRefreshActivityRequest) {
|
|
551
574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
552
|
-
|
|
575
|
+
if (this.logger)
|
|
576
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createRefreshActivity.");
|
|
553
577
|
const operationName = "createRefreshActivity";
|
|
554
578
|
const apiReferenceLink = "";
|
|
555
579
|
const pathParams = {
|
|
@@ -563,6 +587,8 @@ class FusionApplicationsClient {
|
|
|
563
587
|
};
|
|
564
588
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
565
589
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRefreshActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
590
|
+
if (this.logger)
|
|
591
|
+
retrier.logger = this.logger;
|
|
566
592
|
const request = yield oci_common_1.composeRequest({
|
|
567
593
|
baseEndpoint: this._endpoint,
|
|
568
594
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -604,11 +630,12 @@ class FusionApplicationsClient {
|
|
|
604
630
|
* @param CreateServiceAttachmentRequest
|
|
605
631
|
* @return CreateServiceAttachmentResponse
|
|
606
632
|
* @throws OciError when an error occurs
|
|
607
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
633
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/CreateServiceAttachment.ts.html |here} to see how to use CreateServiceAttachment API.
|
|
608
634
|
*/
|
|
609
635
|
createServiceAttachment(createServiceAttachmentRequest) {
|
|
610
636
|
return __awaiter(this, void 0, void 0, function* () {
|
|
611
|
-
|
|
637
|
+
if (this.logger)
|
|
638
|
+
this.logger.debug("Calling operation FusionApplicationsClient#createServiceAttachment.");
|
|
612
639
|
const operationName = "createServiceAttachment";
|
|
613
640
|
const apiReferenceLink = "";
|
|
614
641
|
const pathParams = {
|
|
@@ -622,6 +649,8 @@ class FusionApplicationsClient {
|
|
|
622
649
|
};
|
|
623
650
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
624
651
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createServiceAttachmentRequest.retryConfiguration, specRetryConfiguration);
|
|
652
|
+
if (this.logger)
|
|
653
|
+
retrier.logger = this.logger;
|
|
625
654
|
const request = yield oci_common_1.composeRequest({
|
|
626
655
|
baseEndpoint: this._endpoint,
|
|
627
656
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -662,11 +691,12 @@ class FusionApplicationsClient {
|
|
|
662
691
|
* @param DeleteFusionEnvironmentRequest
|
|
663
692
|
* @return DeleteFusionEnvironmentResponse
|
|
664
693
|
* @throws OciError when an error occurs
|
|
665
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/DeleteFusionEnvironment.ts.html |here} to see how to use DeleteFusionEnvironment API.
|
|
666
695
|
*/
|
|
667
696
|
deleteFusionEnvironment(deleteFusionEnvironmentRequest) {
|
|
668
697
|
return __awaiter(this, void 0, void 0, function* () {
|
|
669
|
-
|
|
698
|
+
if (this.logger)
|
|
699
|
+
this.logger.debug("Calling operation FusionApplicationsClient#deleteFusionEnvironment.");
|
|
670
700
|
const operationName = "deleteFusionEnvironment";
|
|
671
701
|
const apiReferenceLink = "";
|
|
672
702
|
const pathParams = {
|
|
@@ -680,6 +710,8 @@ class FusionApplicationsClient {
|
|
|
680
710
|
};
|
|
681
711
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
682
712
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFusionEnvironmentRequest.retryConfiguration, specRetryConfiguration);
|
|
713
|
+
if (this.logger)
|
|
714
|
+
retrier.logger = this.logger;
|
|
683
715
|
const request = yield oci_common_1.composeRequest({
|
|
684
716
|
baseEndpoint: this._endpoint,
|
|
685
717
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -719,11 +751,12 @@ class FusionApplicationsClient {
|
|
|
719
751
|
* @param DeleteFusionEnvironmentAdminUserRequest
|
|
720
752
|
* @return DeleteFusionEnvironmentAdminUserResponse
|
|
721
753
|
* @throws OciError when an error occurs
|
|
722
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
754
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/DeleteFusionEnvironmentAdminUser.ts.html |here} to see how to use DeleteFusionEnvironmentAdminUser API.
|
|
723
755
|
*/
|
|
724
756
|
deleteFusionEnvironmentAdminUser(deleteFusionEnvironmentAdminUserRequest) {
|
|
725
757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
726
|
-
|
|
758
|
+
if (this.logger)
|
|
759
|
+
this.logger.debug("Calling operation FusionApplicationsClient#deleteFusionEnvironmentAdminUser.");
|
|
727
760
|
const operationName = "deleteFusionEnvironmentAdminUser";
|
|
728
761
|
const apiReferenceLink = "";
|
|
729
762
|
const pathParams = {
|
|
@@ -738,6 +771,8 @@ class FusionApplicationsClient {
|
|
|
738
771
|
};
|
|
739
772
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
740
773
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFusionEnvironmentAdminUserRequest.retryConfiguration, specRetryConfiguration);
|
|
774
|
+
if (this.logger)
|
|
775
|
+
retrier.logger = this.logger;
|
|
741
776
|
const request = yield oci_common_1.composeRequest({
|
|
742
777
|
baseEndpoint: this._endpoint,
|
|
743
778
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -777,11 +812,12 @@ class FusionApplicationsClient {
|
|
|
777
812
|
* @param DeleteFusionEnvironmentFamilyRequest
|
|
778
813
|
* @return DeleteFusionEnvironmentFamilyResponse
|
|
779
814
|
* @throws OciError when an error occurs
|
|
780
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/DeleteFusionEnvironmentFamily.ts.html |here} to see how to use DeleteFusionEnvironmentFamily API.
|
|
781
816
|
*/
|
|
782
817
|
deleteFusionEnvironmentFamily(deleteFusionEnvironmentFamilyRequest) {
|
|
783
818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
784
|
-
|
|
819
|
+
if (this.logger)
|
|
820
|
+
this.logger.debug("Calling operation FusionApplicationsClient#deleteFusionEnvironmentFamily.");
|
|
785
821
|
const operationName = "deleteFusionEnvironmentFamily";
|
|
786
822
|
const apiReferenceLink = "";
|
|
787
823
|
const pathParams = {
|
|
@@ -795,6 +831,8 @@ class FusionApplicationsClient {
|
|
|
795
831
|
};
|
|
796
832
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
797
833
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteFusionEnvironmentFamilyRequest.retryConfiguration, specRetryConfiguration);
|
|
834
|
+
if (this.logger)
|
|
835
|
+
retrier.logger = this.logger;
|
|
798
836
|
const request = yield oci_common_1.composeRequest({
|
|
799
837
|
baseEndpoint: this._endpoint,
|
|
800
838
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -834,11 +872,12 @@ class FusionApplicationsClient {
|
|
|
834
872
|
* @param DeleteRefreshActivityRequest
|
|
835
873
|
* @return DeleteRefreshActivityResponse
|
|
836
874
|
* @throws OciError when an error occurs
|
|
837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
875
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/DeleteRefreshActivity.ts.html |here} to see how to use DeleteRefreshActivity API.
|
|
838
876
|
*/
|
|
839
877
|
deleteRefreshActivity(deleteRefreshActivityRequest) {
|
|
840
878
|
return __awaiter(this, void 0, void 0, function* () {
|
|
841
|
-
|
|
879
|
+
if (this.logger)
|
|
880
|
+
this.logger.debug("Calling operation FusionApplicationsClient#deleteRefreshActivity.");
|
|
842
881
|
const operationName = "deleteRefreshActivity";
|
|
843
882
|
const apiReferenceLink = "";
|
|
844
883
|
const pathParams = {
|
|
@@ -853,6 +892,8 @@ class FusionApplicationsClient {
|
|
|
853
892
|
};
|
|
854
893
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
855
894
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRefreshActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
895
|
+
if (this.logger)
|
|
896
|
+
retrier.logger = this.logger;
|
|
856
897
|
const request = yield oci_common_1.composeRequest({
|
|
857
898
|
baseEndpoint: this._endpoint,
|
|
858
899
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -892,11 +933,12 @@ class FusionApplicationsClient {
|
|
|
892
933
|
* @param DeleteServiceAttachmentRequest
|
|
893
934
|
* @return DeleteServiceAttachmentResponse
|
|
894
935
|
* @throws OciError when an error occurs
|
|
895
|
-
* @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.80.0/fusionapps/DeleteServiceAttachment.ts.html |here} to see how to use DeleteServiceAttachment API.
|
|
896
937
|
*/
|
|
897
938
|
deleteServiceAttachment(deleteServiceAttachmentRequest) {
|
|
898
939
|
return __awaiter(this, void 0, void 0, function* () {
|
|
899
|
-
|
|
940
|
+
if (this.logger)
|
|
941
|
+
this.logger.debug("Calling operation FusionApplicationsClient#deleteServiceAttachment.");
|
|
900
942
|
const operationName = "deleteServiceAttachment";
|
|
901
943
|
const apiReferenceLink = "";
|
|
902
944
|
const pathParams = {
|
|
@@ -911,6 +953,8 @@ class FusionApplicationsClient {
|
|
|
911
953
|
};
|
|
912
954
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
913
955
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteServiceAttachmentRequest.retryConfiguration, specRetryConfiguration);
|
|
956
|
+
if (this.logger)
|
|
957
|
+
retrier.logger = this.logger;
|
|
914
958
|
const request = yield oci_common_1.composeRequest({
|
|
915
959
|
baseEndpoint: this._endpoint,
|
|
916
960
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -950,11 +994,12 @@ class FusionApplicationsClient {
|
|
|
950
994
|
* @param GetDataMaskingActivityRequest
|
|
951
995
|
* @return GetDataMaskingActivityResponse
|
|
952
996
|
* @throws OciError when an error occurs
|
|
953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetDataMaskingActivity.ts.html |here} to see how to use GetDataMaskingActivity API.
|
|
954
998
|
*/
|
|
955
999
|
getDataMaskingActivity(getDataMaskingActivityRequest) {
|
|
956
1000
|
return __awaiter(this, void 0, void 0, function* () {
|
|
957
|
-
|
|
1001
|
+
if (this.logger)
|
|
1002
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getDataMaskingActivity.");
|
|
958
1003
|
const operationName = "getDataMaskingActivity";
|
|
959
1004
|
const apiReferenceLink = "";
|
|
960
1005
|
const pathParams = {
|
|
@@ -968,6 +1013,8 @@ class FusionApplicationsClient {
|
|
|
968
1013
|
};
|
|
969
1014
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
970
1015
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getDataMaskingActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
1016
|
+
if (this.logger)
|
|
1017
|
+
retrier.logger = this.logger;
|
|
971
1018
|
const request = yield oci_common_1.composeRequest({
|
|
972
1019
|
baseEndpoint: this._endpoint,
|
|
973
1020
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1011,11 +1058,12 @@ class FusionApplicationsClient {
|
|
|
1011
1058
|
* @param GetFusionEnvironmentRequest
|
|
1012
1059
|
* @return GetFusionEnvironmentResponse
|
|
1013
1060
|
* @throws OciError when an error occurs
|
|
1014
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1061
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetFusionEnvironment.ts.html |here} to see how to use GetFusionEnvironment API.
|
|
1015
1062
|
*/
|
|
1016
1063
|
getFusionEnvironment(getFusionEnvironmentRequest) {
|
|
1017
1064
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1018
|
-
|
|
1065
|
+
if (this.logger)
|
|
1066
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getFusionEnvironment.");
|
|
1019
1067
|
const operationName = "getFusionEnvironment";
|
|
1020
1068
|
const apiReferenceLink = "";
|
|
1021
1069
|
const pathParams = {
|
|
@@ -1028,6 +1076,8 @@ class FusionApplicationsClient {
|
|
|
1028
1076
|
};
|
|
1029
1077
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1030
1078
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFusionEnvironmentRequest.retryConfiguration, specRetryConfiguration);
|
|
1079
|
+
if (this.logger)
|
|
1080
|
+
retrier.logger = this.logger;
|
|
1031
1081
|
const request = yield oci_common_1.composeRequest({
|
|
1032
1082
|
baseEndpoint: this._endpoint,
|
|
1033
1083
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1071,11 +1121,12 @@ class FusionApplicationsClient {
|
|
|
1071
1121
|
* @param GetFusionEnvironmentFamilyRequest
|
|
1072
1122
|
* @return GetFusionEnvironmentFamilyResponse
|
|
1073
1123
|
* @throws OciError when an error occurs
|
|
1074
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1124
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetFusionEnvironmentFamily.ts.html |here} to see how to use GetFusionEnvironmentFamily API.
|
|
1075
1125
|
*/
|
|
1076
1126
|
getFusionEnvironmentFamily(getFusionEnvironmentFamilyRequest) {
|
|
1077
1127
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1078
|
-
|
|
1128
|
+
if (this.logger)
|
|
1129
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getFusionEnvironmentFamily.");
|
|
1079
1130
|
const operationName = "getFusionEnvironmentFamily";
|
|
1080
1131
|
const apiReferenceLink = "";
|
|
1081
1132
|
const pathParams = {
|
|
@@ -1088,6 +1139,8 @@ class FusionApplicationsClient {
|
|
|
1088
1139
|
};
|
|
1089
1140
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1090
1141
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFusionEnvironmentFamilyRequest.retryConfiguration, specRetryConfiguration);
|
|
1142
|
+
if (this.logger)
|
|
1143
|
+
retrier.logger = this.logger;
|
|
1091
1144
|
const request = yield oci_common_1.composeRequest({
|
|
1092
1145
|
baseEndpoint: this._endpoint,
|
|
1093
1146
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1131,11 +1184,12 @@ class FusionApplicationsClient {
|
|
|
1131
1184
|
* @param GetFusionEnvironmentFamilyLimitsAndUsageRequest
|
|
1132
1185
|
* @return GetFusionEnvironmentFamilyLimitsAndUsageResponse
|
|
1133
1186
|
* @throws OciError when an error occurs
|
|
1134
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1187
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetFusionEnvironmentFamilyLimitsAndUsage.ts.html |here} to see how to use GetFusionEnvironmentFamilyLimitsAndUsage API.
|
|
1135
1188
|
*/
|
|
1136
1189
|
getFusionEnvironmentFamilyLimitsAndUsage(getFusionEnvironmentFamilyLimitsAndUsageRequest) {
|
|
1137
1190
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1138
|
-
|
|
1191
|
+
if (this.logger)
|
|
1192
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getFusionEnvironmentFamilyLimitsAndUsage.");
|
|
1139
1193
|
const operationName = "getFusionEnvironmentFamilyLimitsAndUsage";
|
|
1140
1194
|
const apiReferenceLink = "";
|
|
1141
1195
|
const pathParams = {
|
|
@@ -1148,6 +1202,8 @@ class FusionApplicationsClient {
|
|
|
1148
1202
|
};
|
|
1149
1203
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1150
1204
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFusionEnvironmentFamilyLimitsAndUsageRequest.retryConfiguration, specRetryConfiguration);
|
|
1205
|
+
if (this.logger)
|
|
1206
|
+
retrier.logger = this.logger;
|
|
1151
1207
|
const request = yield oci_common_1.composeRequest({
|
|
1152
1208
|
baseEndpoint: this._endpoint,
|
|
1153
1209
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1191,11 +1247,12 @@ class FusionApplicationsClient {
|
|
|
1191
1247
|
* @param GetFusionEnvironmentFamilySubscriptionDetailRequest
|
|
1192
1248
|
* @return GetFusionEnvironmentFamilySubscriptionDetailResponse
|
|
1193
1249
|
* @throws OciError when an error occurs
|
|
1194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetFusionEnvironmentFamilySubscriptionDetail.ts.html |here} to see how to use GetFusionEnvironmentFamilySubscriptionDetail API.
|
|
1195
1251
|
*/
|
|
1196
1252
|
getFusionEnvironmentFamilySubscriptionDetail(getFusionEnvironmentFamilySubscriptionDetailRequest) {
|
|
1197
1253
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1198
|
-
|
|
1254
|
+
if (this.logger)
|
|
1255
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getFusionEnvironmentFamilySubscriptionDetail.");
|
|
1199
1256
|
const operationName = "getFusionEnvironmentFamilySubscriptionDetail";
|
|
1200
1257
|
const apiReferenceLink = "";
|
|
1201
1258
|
const pathParams = {
|
|
@@ -1208,6 +1265,8 @@ class FusionApplicationsClient {
|
|
|
1208
1265
|
};
|
|
1209
1266
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1210
1267
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFusionEnvironmentFamilySubscriptionDetailRequest.retryConfiguration, specRetryConfiguration);
|
|
1268
|
+
if (this.logger)
|
|
1269
|
+
retrier.logger = this.logger;
|
|
1211
1270
|
const request = yield oci_common_1.composeRequest({
|
|
1212
1271
|
baseEndpoint: this._endpoint,
|
|
1213
1272
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1251,11 +1310,12 @@ class FusionApplicationsClient {
|
|
|
1251
1310
|
* @param GetFusionEnvironmentStatusRequest
|
|
1252
1311
|
* @return GetFusionEnvironmentStatusResponse
|
|
1253
1312
|
* @throws OciError when an error occurs
|
|
1254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetFusionEnvironmentStatus.ts.html |here} to see how to use GetFusionEnvironmentStatus API.
|
|
1255
1314
|
*/
|
|
1256
1315
|
getFusionEnvironmentStatus(getFusionEnvironmentStatusRequest) {
|
|
1257
1316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1258
|
-
|
|
1317
|
+
if (this.logger)
|
|
1318
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getFusionEnvironmentStatus.");
|
|
1259
1319
|
const operationName = "getFusionEnvironmentStatus";
|
|
1260
1320
|
const apiReferenceLink = "";
|
|
1261
1321
|
const pathParams = {
|
|
@@ -1268,6 +1328,8 @@ class FusionApplicationsClient {
|
|
|
1268
1328
|
};
|
|
1269
1329
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1270
1330
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getFusionEnvironmentStatusRequest.retryConfiguration, specRetryConfiguration);
|
|
1331
|
+
if (this.logger)
|
|
1332
|
+
retrier.logger = this.logger;
|
|
1271
1333
|
const request = yield oci_common_1.composeRequest({
|
|
1272
1334
|
baseEndpoint: this._endpoint,
|
|
1273
1335
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1306,11 +1368,12 @@ class FusionApplicationsClient {
|
|
|
1306
1368
|
* @param GetRefreshActivityRequest
|
|
1307
1369
|
* @return GetRefreshActivityResponse
|
|
1308
1370
|
* @throws OciError when an error occurs
|
|
1309
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1371
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetRefreshActivity.ts.html |here} to see how to use GetRefreshActivity API.
|
|
1310
1372
|
*/
|
|
1311
1373
|
getRefreshActivity(getRefreshActivityRequest) {
|
|
1312
1374
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1313
|
-
|
|
1375
|
+
if (this.logger)
|
|
1376
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getRefreshActivity.");
|
|
1314
1377
|
const operationName = "getRefreshActivity";
|
|
1315
1378
|
const apiReferenceLink = "";
|
|
1316
1379
|
const pathParams = {
|
|
@@ -1324,6 +1387,8 @@ class FusionApplicationsClient {
|
|
|
1324
1387
|
};
|
|
1325
1388
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1326
1389
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRefreshActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
1390
|
+
if (this.logger)
|
|
1391
|
+
retrier.logger = this.logger;
|
|
1327
1392
|
const request = yield oci_common_1.composeRequest({
|
|
1328
1393
|
baseEndpoint: this._endpoint,
|
|
1329
1394
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1367,11 +1432,12 @@ class FusionApplicationsClient {
|
|
|
1367
1432
|
* @param GetScheduledActivityRequest
|
|
1368
1433
|
* @return GetScheduledActivityResponse
|
|
1369
1434
|
* @throws OciError when an error occurs
|
|
1370
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1435
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetScheduledActivity.ts.html |here} to see how to use GetScheduledActivity API.
|
|
1371
1436
|
*/
|
|
1372
1437
|
getScheduledActivity(getScheduledActivityRequest) {
|
|
1373
1438
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1374
|
-
|
|
1439
|
+
if (this.logger)
|
|
1440
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getScheduledActivity.");
|
|
1375
1441
|
const operationName = "getScheduledActivity";
|
|
1376
1442
|
const apiReferenceLink = "";
|
|
1377
1443
|
const pathParams = {
|
|
@@ -1385,6 +1451,8 @@ class FusionApplicationsClient {
|
|
|
1385
1451
|
};
|
|
1386
1452
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1387
1453
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getScheduledActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
1454
|
+
if (this.logger)
|
|
1455
|
+
retrier.logger = this.logger;
|
|
1388
1456
|
const request = yield oci_common_1.composeRequest({
|
|
1389
1457
|
baseEndpoint: this._endpoint,
|
|
1390
1458
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1428,11 +1496,12 @@ class FusionApplicationsClient {
|
|
|
1428
1496
|
* @param GetServiceAttachmentRequest
|
|
1429
1497
|
* @return GetServiceAttachmentResponse
|
|
1430
1498
|
* @throws OciError when an error occurs
|
|
1431
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1499
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetServiceAttachment.ts.html |here} to see how to use GetServiceAttachment API.
|
|
1432
1500
|
*/
|
|
1433
1501
|
getServiceAttachment(getServiceAttachmentRequest) {
|
|
1434
1502
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1435
|
-
|
|
1503
|
+
if (this.logger)
|
|
1504
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getServiceAttachment.");
|
|
1436
1505
|
const operationName = "getServiceAttachment";
|
|
1437
1506
|
const apiReferenceLink = "";
|
|
1438
1507
|
const pathParams = {
|
|
@@ -1446,6 +1515,8 @@ class FusionApplicationsClient {
|
|
|
1446
1515
|
};
|
|
1447
1516
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1448
1517
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getServiceAttachmentRequest.retryConfiguration, specRetryConfiguration);
|
|
1518
|
+
if (this.logger)
|
|
1519
|
+
retrier.logger = this.logger;
|
|
1449
1520
|
const request = yield oci_common_1.composeRequest({
|
|
1450
1521
|
baseEndpoint: this._endpoint,
|
|
1451
1522
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1489,11 +1560,12 @@ class FusionApplicationsClient {
|
|
|
1489
1560
|
* @param GetWorkRequestRequest
|
|
1490
1561
|
* @return GetWorkRequestResponse
|
|
1491
1562
|
* @throws OciError when an error occurs
|
|
1492
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1563
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1493
1564
|
*/
|
|
1494
1565
|
getWorkRequest(getWorkRequestRequest) {
|
|
1495
1566
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1496
|
-
|
|
1567
|
+
if (this.logger)
|
|
1568
|
+
this.logger.debug("Calling operation FusionApplicationsClient#getWorkRequest.");
|
|
1497
1569
|
const operationName = "getWorkRequest";
|
|
1498
1570
|
const apiReferenceLink = "";
|
|
1499
1571
|
const pathParams = {
|
|
@@ -1506,6 +1578,8 @@ class FusionApplicationsClient {
|
|
|
1506
1578
|
};
|
|
1507
1579
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1508
1580
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
1581
|
+
if (this.logger)
|
|
1582
|
+
retrier.logger = this.logger;
|
|
1509
1583
|
const request = yield oci_common_1.composeRequest({
|
|
1510
1584
|
baseEndpoint: this._endpoint,
|
|
1511
1585
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1549,11 +1623,12 @@ class FusionApplicationsClient {
|
|
|
1549
1623
|
* @param ListAdminUsersRequest
|
|
1550
1624
|
* @return ListAdminUsersResponse
|
|
1551
1625
|
* @throws OciError when an error occurs
|
|
1552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1626
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListAdminUsers.ts.html |here} to see how to use ListAdminUsers API.
|
|
1553
1627
|
*/
|
|
1554
1628
|
listAdminUsers(listAdminUsersRequest) {
|
|
1555
1629
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1556
|
-
|
|
1630
|
+
if (this.logger)
|
|
1631
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listAdminUsers.");
|
|
1557
1632
|
const operationName = "listAdminUsers";
|
|
1558
1633
|
const apiReferenceLink = "";
|
|
1559
1634
|
const pathParams = {
|
|
@@ -1566,6 +1641,8 @@ class FusionApplicationsClient {
|
|
|
1566
1641
|
};
|
|
1567
1642
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1568
1643
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAdminUsersRequest.retryConfiguration, specRetryConfiguration);
|
|
1644
|
+
if (this.logger)
|
|
1645
|
+
retrier.logger = this.logger;
|
|
1569
1646
|
const request = yield oci_common_1.composeRequest({
|
|
1570
1647
|
baseEndpoint: this._endpoint,
|
|
1571
1648
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1610,11 +1687,12 @@ class FusionApplicationsClient {
|
|
|
1610
1687
|
* @param ListDataMaskingActivitiesRequest
|
|
1611
1688
|
* @return ListDataMaskingActivitiesResponse
|
|
1612
1689
|
* @throws OciError when an error occurs
|
|
1613
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1690
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListDataMaskingActivities.ts.html |here} to see how to use ListDataMaskingActivities API.
|
|
1614
1691
|
*/
|
|
1615
1692
|
listDataMaskingActivities(listDataMaskingActivitiesRequest) {
|
|
1616
1693
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1617
|
-
|
|
1694
|
+
if (this.logger)
|
|
1695
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listDataMaskingActivities.");
|
|
1618
1696
|
const operationName = "listDataMaskingActivities";
|
|
1619
1697
|
const apiReferenceLink = "";
|
|
1620
1698
|
const pathParams = {
|
|
@@ -1633,6 +1711,8 @@ class FusionApplicationsClient {
|
|
|
1633
1711
|
};
|
|
1634
1712
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1635
1713
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listDataMaskingActivitiesRequest.retryConfiguration, specRetryConfiguration);
|
|
1714
|
+
if (this.logger)
|
|
1715
|
+
retrier.logger = this.logger;
|
|
1636
1716
|
const request = yield oci_common_1.composeRequest({
|
|
1637
1717
|
baseEndpoint: this._endpoint,
|
|
1638
1718
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1677,11 +1757,12 @@ class FusionApplicationsClient {
|
|
|
1677
1757
|
* @param ListFusionEnvironmentFamiliesRequest
|
|
1678
1758
|
* @return ListFusionEnvironmentFamiliesResponse
|
|
1679
1759
|
* @throws OciError when an error occurs
|
|
1680
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1760
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListFusionEnvironmentFamilies.ts.html |here} to see how to use ListFusionEnvironmentFamilies API.
|
|
1681
1761
|
*/
|
|
1682
1762
|
listFusionEnvironmentFamilies(listFusionEnvironmentFamiliesRequest) {
|
|
1683
1763
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1684
|
-
|
|
1764
|
+
if (this.logger)
|
|
1765
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listFusionEnvironmentFamilies.");
|
|
1685
1766
|
const operationName = "listFusionEnvironmentFamilies";
|
|
1686
1767
|
const apiReferenceLink = "";
|
|
1687
1768
|
const pathParams = {};
|
|
@@ -1701,6 +1782,8 @@ class FusionApplicationsClient {
|
|
|
1701
1782
|
};
|
|
1702
1783
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1703
1784
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFusionEnvironmentFamiliesRequest.retryConfiguration, specRetryConfiguration);
|
|
1785
|
+
if (this.logger)
|
|
1786
|
+
retrier.logger = this.logger;
|
|
1704
1787
|
const request = yield oci_common_1.composeRequest({
|
|
1705
1788
|
baseEndpoint: this._endpoint,
|
|
1706
1789
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1745,11 +1828,12 @@ class FusionApplicationsClient {
|
|
|
1745
1828
|
* @param ListFusionEnvironmentsRequest
|
|
1746
1829
|
* @return ListFusionEnvironmentsResponse
|
|
1747
1830
|
* @throws OciError when an error occurs
|
|
1748
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1831
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListFusionEnvironments.ts.html |here} to see how to use ListFusionEnvironments API.
|
|
1749
1832
|
*/
|
|
1750
1833
|
listFusionEnvironments(listFusionEnvironmentsRequest) {
|
|
1751
1834
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1752
|
-
|
|
1835
|
+
if (this.logger)
|
|
1836
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listFusionEnvironments.");
|
|
1753
1837
|
const operationName = "listFusionEnvironments";
|
|
1754
1838
|
const apiReferenceLink = "";
|
|
1755
1839
|
const pathParams = {};
|
|
@@ -1769,6 +1853,8 @@ class FusionApplicationsClient {
|
|
|
1769
1853
|
};
|
|
1770
1854
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1771
1855
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listFusionEnvironmentsRequest.retryConfiguration, specRetryConfiguration);
|
|
1856
|
+
if (this.logger)
|
|
1857
|
+
retrier.logger = this.logger;
|
|
1772
1858
|
const request = yield oci_common_1.composeRequest({
|
|
1773
1859
|
baseEndpoint: this._endpoint,
|
|
1774
1860
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1813,11 +1899,12 @@ class FusionApplicationsClient {
|
|
|
1813
1899
|
* @param ListRefreshActivitiesRequest
|
|
1814
1900
|
* @return ListRefreshActivitiesResponse
|
|
1815
1901
|
* @throws OciError when an error occurs
|
|
1816
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1902
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListRefreshActivities.ts.html |here} to see how to use ListRefreshActivities API.
|
|
1817
1903
|
*/
|
|
1818
1904
|
listRefreshActivities(listRefreshActivitiesRequest) {
|
|
1819
1905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1820
|
-
|
|
1906
|
+
if (this.logger)
|
|
1907
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listRefreshActivities.");
|
|
1821
1908
|
const operationName = "listRefreshActivities";
|
|
1822
1909
|
const apiReferenceLink = "";
|
|
1823
1910
|
const pathParams = {
|
|
@@ -1839,6 +1926,8 @@ class FusionApplicationsClient {
|
|
|
1839
1926
|
};
|
|
1840
1927
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1841
1928
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRefreshActivitiesRequest.retryConfiguration, specRetryConfiguration);
|
|
1929
|
+
if (this.logger)
|
|
1930
|
+
retrier.logger = this.logger;
|
|
1842
1931
|
const request = yield oci_common_1.composeRequest({
|
|
1843
1932
|
baseEndpoint: this._endpoint,
|
|
1844
1933
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1883,11 +1972,12 @@ class FusionApplicationsClient {
|
|
|
1883
1972
|
* @param ListScheduledActivitiesRequest
|
|
1884
1973
|
* @return ListScheduledActivitiesResponse
|
|
1885
1974
|
* @throws OciError when an error occurs
|
|
1886
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1975
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListScheduledActivities.ts.html |here} to see how to use ListScheduledActivities API.
|
|
1887
1976
|
*/
|
|
1888
1977
|
listScheduledActivities(listScheduledActivitiesRequest) {
|
|
1889
1978
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1890
|
-
|
|
1979
|
+
if (this.logger)
|
|
1980
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listScheduledActivities.");
|
|
1891
1981
|
const operationName = "listScheduledActivities";
|
|
1892
1982
|
const apiReferenceLink = "";
|
|
1893
1983
|
const pathParams = {
|
|
@@ -1912,6 +2002,8 @@ class FusionApplicationsClient {
|
|
|
1912
2002
|
};
|
|
1913
2003
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1914
2004
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listScheduledActivitiesRequest.retryConfiguration, specRetryConfiguration);
|
|
2005
|
+
if (this.logger)
|
|
2006
|
+
retrier.logger = this.logger;
|
|
1915
2007
|
const request = yield oci_common_1.composeRequest({
|
|
1916
2008
|
baseEndpoint: this._endpoint,
|
|
1917
2009
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1956,11 +2048,12 @@ class FusionApplicationsClient {
|
|
|
1956
2048
|
* @param ListServiceAttachmentsRequest
|
|
1957
2049
|
* @return ListServiceAttachmentsResponse
|
|
1958
2050
|
* @throws OciError when an error occurs
|
|
1959
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2051
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListServiceAttachments.ts.html |here} to see how to use ListServiceAttachments API.
|
|
1960
2052
|
*/
|
|
1961
2053
|
listServiceAttachments(listServiceAttachmentsRequest) {
|
|
1962
2054
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1963
|
-
|
|
2055
|
+
if (this.logger)
|
|
2056
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listServiceAttachments.");
|
|
1964
2057
|
const operationName = "listServiceAttachments";
|
|
1965
2058
|
const apiReferenceLink = "";
|
|
1966
2059
|
const pathParams = {
|
|
@@ -1981,6 +2074,8 @@ class FusionApplicationsClient {
|
|
|
1981
2074
|
};
|
|
1982
2075
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1983
2076
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listServiceAttachmentsRequest.retryConfiguration, specRetryConfiguration);
|
|
2077
|
+
if (this.logger)
|
|
2078
|
+
retrier.logger = this.logger;
|
|
1984
2079
|
const request = yield oci_common_1.composeRequest({
|
|
1985
2080
|
baseEndpoint: this._endpoint,
|
|
1986
2081
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2024,11 +2119,12 @@ class FusionApplicationsClient {
|
|
|
2024
2119
|
* @param ListTimeAvailableForRefreshesRequest
|
|
2025
2120
|
* @return ListTimeAvailableForRefreshesResponse
|
|
2026
2121
|
* @throws OciError when an error occurs
|
|
2027
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListTimeAvailableForRefreshes.ts.html |here} to see how to use ListTimeAvailableForRefreshes API.
|
|
2028
2123
|
*/
|
|
2029
2124
|
listTimeAvailableForRefreshes(listTimeAvailableForRefreshesRequest) {
|
|
2030
2125
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2031
|
-
|
|
2126
|
+
if (this.logger)
|
|
2127
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listTimeAvailableForRefreshes.");
|
|
2032
2128
|
const operationName = "listTimeAvailableForRefreshes";
|
|
2033
2129
|
const apiReferenceLink = "";
|
|
2034
2130
|
const pathParams = {
|
|
@@ -2046,6 +2142,8 @@ class FusionApplicationsClient {
|
|
|
2046
2142
|
};
|
|
2047
2143
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2048
2144
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listTimeAvailableForRefreshesRequest.retryConfiguration, specRetryConfiguration);
|
|
2145
|
+
if (this.logger)
|
|
2146
|
+
retrier.logger = this.logger;
|
|
2049
2147
|
const request = yield oci_common_1.composeRequest({
|
|
2050
2148
|
baseEndpoint: this._endpoint,
|
|
2051
2149
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2090,11 +2188,12 @@ class FusionApplicationsClient {
|
|
|
2090
2188
|
* @param ListWorkRequestErrorsRequest
|
|
2091
2189
|
* @return ListWorkRequestErrorsResponse
|
|
2092
2190
|
* @throws OciError when an error occurs
|
|
2093
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2094
2192
|
*/
|
|
2095
2193
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2096
2194
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2097
|
-
|
|
2195
|
+
if (this.logger)
|
|
2196
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listWorkRequestErrors.");
|
|
2098
2197
|
const operationName = "listWorkRequestErrors";
|
|
2099
2198
|
const apiReferenceLink = "";
|
|
2100
2199
|
const pathParams = {
|
|
@@ -2112,6 +2211,8 @@ class FusionApplicationsClient {
|
|
|
2112
2211
|
};
|
|
2113
2212
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2114
2213
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
|
|
2214
|
+
if (this.logger)
|
|
2215
|
+
retrier.logger = this.logger;
|
|
2115
2216
|
const request = yield oci_common_1.composeRequest({
|
|
2116
2217
|
baseEndpoint: this._endpoint,
|
|
2117
2218
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2156,11 +2257,12 @@ class FusionApplicationsClient {
|
|
|
2156
2257
|
* @param ListWorkRequestLogsRequest
|
|
2157
2258
|
* @return ListWorkRequestLogsResponse
|
|
2158
2259
|
* @throws OciError when an error occurs
|
|
2159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2160
2261
|
*/
|
|
2161
2262
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2162
2263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2163
|
-
|
|
2264
|
+
if (this.logger)
|
|
2265
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listWorkRequestLogs.");
|
|
2164
2266
|
const operationName = "listWorkRequestLogs";
|
|
2165
2267
|
const apiReferenceLink = "";
|
|
2166
2268
|
const pathParams = {
|
|
@@ -2178,6 +2280,8 @@ class FusionApplicationsClient {
|
|
|
2178
2280
|
};
|
|
2179
2281
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2180
2282
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
|
|
2283
|
+
if (this.logger)
|
|
2284
|
+
retrier.logger = this.logger;
|
|
2181
2285
|
const request = yield oci_common_1.composeRequest({
|
|
2182
2286
|
baseEndpoint: this._endpoint,
|
|
2183
2287
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2222,11 +2326,12 @@ class FusionApplicationsClient {
|
|
|
2222
2326
|
* @param ListWorkRequestsRequest
|
|
2223
2327
|
* @return ListWorkRequestsResponse
|
|
2224
2328
|
* @throws OciError when an error occurs
|
|
2225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2226
2330
|
*/
|
|
2227
2331
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2228
2332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2229
|
-
|
|
2333
|
+
if (this.logger)
|
|
2334
|
+
this.logger.debug("Calling operation FusionApplicationsClient#listWorkRequests.");
|
|
2230
2335
|
const operationName = "listWorkRequests";
|
|
2231
2336
|
const apiReferenceLink = "";
|
|
2232
2337
|
const pathParams = {};
|
|
@@ -2245,6 +2350,8 @@ class FusionApplicationsClient {
|
|
|
2245
2350
|
};
|
|
2246
2351
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2247
2352
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
2353
|
+
if (this.logger)
|
|
2354
|
+
retrier.logger = this.logger;
|
|
2248
2355
|
const request = yield oci_common_1.composeRequest({
|
|
2249
2356
|
baseEndpoint: this._endpoint,
|
|
2250
2357
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2288,11 +2395,12 @@ class FusionApplicationsClient {
|
|
|
2288
2395
|
* @param ResetFusionEnvironmentPasswordRequest
|
|
2289
2396
|
* @return ResetFusionEnvironmentPasswordResponse
|
|
2290
2397
|
* @throws OciError when an error occurs
|
|
2291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2398
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/ResetFusionEnvironmentPassword.ts.html |here} to see how to use ResetFusionEnvironmentPassword API.
|
|
2292
2399
|
*/
|
|
2293
2400
|
resetFusionEnvironmentPassword(resetFusionEnvironmentPasswordRequest) {
|
|
2294
2401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2295
|
-
|
|
2402
|
+
if (this.logger)
|
|
2403
|
+
this.logger.debug("Calling operation FusionApplicationsClient#resetFusionEnvironmentPassword.");
|
|
2296
2404
|
const operationName = "resetFusionEnvironmentPassword";
|
|
2297
2405
|
const apiReferenceLink = "";
|
|
2298
2406
|
const pathParams = {
|
|
@@ -2308,6 +2416,8 @@ class FusionApplicationsClient {
|
|
|
2308
2416
|
};
|
|
2309
2417
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2310
2418
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, resetFusionEnvironmentPasswordRequest.retryConfiguration, specRetryConfiguration);
|
|
2419
|
+
if (this.logger)
|
|
2420
|
+
retrier.logger = this.logger;
|
|
2311
2421
|
const request = yield oci_common_1.composeRequest({
|
|
2312
2422
|
baseEndpoint: this._endpoint,
|
|
2313
2423
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2348,11 +2458,12 @@ class FusionApplicationsClient {
|
|
|
2348
2458
|
* @param UpdateFusionEnvironmentRequest
|
|
2349
2459
|
* @return UpdateFusionEnvironmentResponse
|
|
2350
2460
|
* @throws OciError when an error occurs
|
|
2351
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/UpdateFusionEnvironment.ts.html |here} to see how to use UpdateFusionEnvironment API.
|
|
2352
2462
|
*/
|
|
2353
2463
|
updateFusionEnvironment(updateFusionEnvironmentRequest) {
|
|
2354
2464
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2355
|
-
|
|
2465
|
+
if (this.logger)
|
|
2466
|
+
this.logger.debug("Calling operation FusionApplicationsClient#updateFusionEnvironment.");
|
|
2356
2467
|
const operationName = "updateFusionEnvironment";
|
|
2357
2468
|
const apiReferenceLink = "";
|
|
2358
2469
|
const pathParams = {
|
|
@@ -2366,6 +2477,8 @@ class FusionApplicationsClient {
|
|
|
2366
2477
|
};
|
|
2367
2478
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2368
2479
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFusionEnvironmentRequest.retryConfiguration, specRetryConfiguration);
|
|
2480
|
+
if (this.logger)
|
|
2481
|
+
retrier.logger = this.logger;
|
|
2369
2482
|
const request = yield oci_common_1.composeRequest({
|
|
2370
2483
|
baseEndpoint: this._endpoint,
|
|
2371
2484
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2406,11 +2519,12 @@ class FusionApplicationsClient {
|
|
|
2406
2519
|
* @param UpdateFusionEnvironmentFamilyRequest
|
|
2407
2520
|
* @return UpdateFusionEnvironmentFamilyResponse
|
|
2408
2521
|
* @throws OciError when an error occurs
|
|
2409
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/UpdateFusionEnvironmentFamily.ts.html |here} to see how to use UpdateFusionEnvironmentFamily API.
|
|
2410
2523
|
*/
|
|
2411
2524
|
updateFusionEnvironmentFamily(updateFusionEnvironmentFamilyRequest) {
|
|
2412
2525
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2413
|
-
|
|
2526
|
+
if (this.logger)
|
|
2527
|
+
this.logger.debug("Calling operation FusionApplicationsClient#updateFusionEnvironmentFamily.");
|
|
2414
2528
|
const operationName = "updateFusionEnvironmentFamily";
|
|
2415
2529
|
const apiReferenceLink = "";
|
|
2416
2530
|
const pathParams = {
|
|
@@ -2424,6 +2538,8 @@ class FusionApplicationsClient {
|
|
|
2424
2538
|
};
|
|
2425
2539
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2426
2540
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateFusionEnvironmentFamilyRequest.retryConfiguration, specRetryConfiguration);
|
|
2541
|
+
if (this.logger)
|
|
2542
|
+
retrier.logger = this.logger;
|
|
2427
2543
|
const request = yield oci_common_1.composeRequest({
|
|
2428
2544
|
baseEndpoint: this._endpoint,
|
|
2429
2545
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2465,11 +2581,12 @@ class FusionApplicationsClient {
|
|
|
2465
2581
|
* @param UpdateRefreshActivityRequest
|
|
2466
2582
|
* @return UpdateRefreshActivityResponse
|
|
2467
2583
|
* @throws OciError when an error occurs
|
|
2468
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2584
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/UpdateRefreshActivity.ts.html |here} to see how to use UpdateRefreshActivity API.
|
|
2469
2585
|
*/
|
|
2470
2586
|
updateRefreshActivity(updateRefreshActivityRequest) {
|
|
2471
2587
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2472
|
-
|
|
2588
|
+
if (this.logger)
|
|
2589
|
+
this.logger.debug("Calling operation FusionApplicationsClient#updateRefreshActivity.");
|
|
2473
2590
|
const operationName = "updateRefreshActivity";
|
|
2474
2591
|
const apiReferenceLink = "";
|
|
2475
2592
|
const pathParams = {
|
|
@@ -2484,6 +2601,8 @@ class FusionApplicationsClient {
|
|
|
2484
2601
|
};
|
|
2485
2602
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2486
2603
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRefreshActivityRequest.retryConfiguration, specRetryConfiguration);
|
|
2604
|
+
if (this.logger)
|
|
2605
|
+
retrier.logger = this.logger;
|
|
2487
2606
|
const request = yield oci_common_1.composeRequest({
|
|
2488
2607
|
baseEndpoint: this._endpoint,
|
|
2489
2608
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2529,11 +2648,12 @@ class FusionApplicationsClient {
|
|
|
2529
2648
|
* @param VerifyServiceAttachmentRequest
|
|
2530
2649
|
* @return VerifyServiceAttachmentResponse
|
|
2531
2650
|
* @throws OciError when an error occurs
|
|
2532
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2651
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.80.0/fusionapps/VerifyServiceAttachment.ts.html |here} to see how to use VerifyServiceAttachment API.
|
|
2533
2652
|
*/
|
|
2534
2653
|
verifyServiceAttachment(verifyServiceAttachmentRequest) {
|
|
2535
2654
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2536
|
-
|
|
2655
|
+
if (this.logger)
|
|
2656
|
+
this.logger.debug("Calling operation FusionApplicationsClient#verifyServiceAttachment.");
|
|
2537
2657
|
const operationName = "verifyServiceAttachment";
|
|
2538
2658
|
const apiReferenceLink = "";
|
|
2539
2659
|
const pathParams = {
|
|
@@ -2546,6 +2666,8 @@ class FusionApplicationsClient {
|
|
|
2546
2666
|
};
|
|
2547
2667
|
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
2548
2668
|
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, verifyServiceAttachmentRequest.retryConfiguration, specRetryConfiguration);
|
|
2669
|
+
if (this.logger)
|
|
2670
|
+
retrier.logger = this.logger;
|
|
2549
2671
|
const request = yield oci_common_1.composeRequest({
|
|
2550
2672
|
baseEndpoint: this._endpoint,
|
|
2551
2673
|
defaultHeaders: this._defaultHeaders,
|