oci-fusionapps 2.57.0 → 2.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +46 -36
- package/lib/client.js +59 -36
- package/lib/client.js.map +1 -1
- package/lib/model/environment-role.d.ts +42 -0
- package/lib/model/environment-role.js +39 -0
- package/lib/model/environment-role.js.map +1 -0
- package/lib/model/fusion-environment.d.ts +1 -0
- package/lib/model/fusion-environment.js +6 -0
- package/lib/model/fusion-environment.js.map +1 -1
- package/lib/model/index.d.ts +2 -0
- package/lib/model/index.js +4 -2
- package/lib/model/index.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/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/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/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -56,11 +56,14 @@ var FusionApplicationsApiKeys;
|
|
|
56
56
|
*/
|
|
57
57
|
class FusionApplicationsClient {
|
|
58
58
|
constructor(params, clientConfiguration) {
|
|
59
|
+
this["_realmSpecificEndpointTemplateEnabled"] = false;
|
|
59
60
|
this["_endpoint"] = "";
|
|
60
61
|
this["_defaultHeaders"] = {};
|
|
61
62
|
this._circuitBreaker = null;
|
|
62
63
|
this._httpOptions = undefined;
|
|
63
64
|
this.targetService = "FusionApplications";
|
|
65
|
+
this._regionId = "";
|
|
66
|
+
this._lastSetRegionOrRegionId = "";
|
|
64
67
|
const requestSigner = params.authenticationDetailsProvider
|
|
65
68
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
66
69
|
: null;
|
|
@@ -110,13 +113,31 @@ class FusionApplicationsClient {
|
|
|
110
113
|
get logger() {
|
|
111
114
|
return common.LOG.logger;
|
|
112
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
118
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
119
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
120
|
+
*/
|
|
121
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
122
|
+
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
123
|
+
if (this.logger)
|
|
124
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
125
|
+
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
126
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(FusionApplicationsClient.serviceEndpointTemplate, this._region, FusionApplicationsClient.endpointServiceName);
|
|
127
|
+
}
|
|
128
|
+
else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
|
|
129
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(FusionApplicationsClient.serviceEndpointTemplate, this._regionId, FusionApplicationsClient.endpointServiceName);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
113
132
|
/**
|
|
114
133
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
115
134
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
116
135
|
* @param region The region of the service.
|
|
117
136
|
*/
|
|
118
137
|
set region(region) {
|
|
138
|
+
this._region = region;
|
|
119
139
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(FusionApplicationsClient.serviceEndpointTemplate, region, FusionApplicationsClient.endpointServiceName);
|
|
140
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
|
|
120
141
|
}
|
|
121
142
|
/**
|
|
122
143
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -127,7 +148,9 @@ class FusionApplicationsClient {
|
|
|
127
148
|
* @param regionId The public region ID.
|
|
128
149
|
*/
|
|
129
150
|
set regionId(regionId) {
|
|
151
|
+
this._regionId = regionId;
|
|
130
152
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(FusionApplicationsClient.serviceEndpointTemplate, regionId, FusionApplicationsClient.endpointServiceName);
|
|
153
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
131
154
|
}
|
|
132
155
|
/**
|
|
133
156
|
* Creates a new FusionApplicationsWaiter for resources for this service.
|
|
@@ -158,7 +181,7 @@ class FusionApplicationsClient {
|
|
|
158
181
|
* @param ChangeFusionEnvironmentCompartmentRequest
|
|
159
182
|
* @return ChangeFusionEnvironmentCompartmentResponse
|
|
160
183
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
184
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ChangeFusionEnvironmentCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentCompartment API.
|
|
162
185
|
*/
|
|
163
186
|
changeFusionEnvironmentCompartment(changeFusionEnvironmentCompartmentRequest) {
|
|
164
187
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -222,7 +245,7 @@ class FusionApplicationsClient {
|
|
|
222
245
|
* @param ChangeFusionEnvironmentFamilyCompartmentRequest
|
|
223
246
|
* @return ChangeFusionEnvironmentFamilyCompartmentResponse
|
|
224
247
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ChangeFusionEnvironmentFamilyCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentFamilyCompartment API.
|
|
226
249
|
*/
|
|
227
250
|
changeFusionEnvironmentFamilyCompartment(changeFusionEnvironmentFamilyCompartmentRequest) {
|
|
228
251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -285,7 +308,7 @@ class FusionApplicationsClient {
|
|
|
285
308
|
* @param CreateDataMaskingActivityRequest
|
|
286
309
|
* @return CreateDataMaskingActivityResponse
|
|
287
310
|
* @throws OciError when an error occurs
|
|
288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
311
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/CreateDataMaskingActivity.ts.html |here} to see how to use CreateDataMaskingActivity API.
|
|
289
312
|
*/
|
|
290
313
|
createDataMaskingActivity(createDataMaskingActivityRequest) {
|
|
291
314
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -347,7 +370,7 @@ class FusionApplicationsClient {
|
|
|
347
370
|
* @param CreateFusionEnvironmentRequest
|
|
348
371
|
* @return CreateFusionEnvironmentResponse
|
|
349
372
|
* @throws OciError when an error occurs
|
|
350
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
373
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/CreateFusionEnvironment.ts.html |here} to see how to use CreateFusionEnvironment API.
|
|
351
374
|
*/
|
|
352
375
|
createFusionEnvironment(createFusionEnvironmentRequest) {
|
|
353
376
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -406,7 +429,7 @@ class FusionApplicationsClient {
|
|
|
406
429
|
* @param CreateFusionEnvironmentAdminUserRequest
|
|
407
430
|
* @return CreateFusionEnvironmentAdminUserResponse
|
|
408
431
|
* @throws OciError when an error occurs
|
|
409
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/CreateFusionEnvironmentAdminUser.ts.html |here} to see how to use CreateFusionEnvironmentAdminUser API.
|
|
410
433
|
*/
|
|
411
434
|
createFusionEnvironmentAdminUser(createFusionEnvironmentAdminUserRequest) {
|
|
412
435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -468,7 +491,7 @@ class FusionApplicationsClient {
|
|
|
468
491
|
* @param CreateFusionEnvironmentFamilyRequest
|
|
469
492
|
* @return CreateFusionEnvironmentFamilyResponse
|
|
470
493
|
* @throws OciError when an error occurs
|
|
471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/CreateFusionEnvironmentFamily.ts.html |here} to see how to use CreateFusionEnvironmentFamily API.
|
|
472
495
|
*/
|
|
473
496
|
createFusionEnvironmentFamily(createFusionEnvironmentFamilyRequest) {
|
|
474
497
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -528,7 +551,7 @@ class FusionApplicationsClient {
|
|
|
528
551
|
* @param CreateRefreshActivityRequest
|
|
529
552
|
* @return CreateRefreshActivityResponse
|
|
530
553
|
* @throws OciError when an error occurs
|
|
531
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
554
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/CreateRefreshActivity.ts.html |here} to see how to use CreateRefreshActivity API.
|
|
532
555
|
*/
|
|
533
556
|
createRefreshActivity(createRefreshActivityRequest) {
|
|
534
557
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -589,7 +612,7 @@ class FusionApplicationsClient {
|
|
|
589
612
|
* @param DeleteFusionEnvironmentRequest
|
|
590
613
|
* @return DeleteFusionEnvironmentResponse
|
|
591
614
|
* @throws OciError when an error occurs
|
|
592
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
615
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/DeleteFusionEnvironment.ts.html |here} to see how to use DeleteFusionEnvironment API.
|
|
593
616
|
*/
|
|
594
617
|
deleteFusionEnvironment(deleteFusionEnvironmentRequest) {
|
|
595
618
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -649,7 +672,7 @@ class FusionApplicationsClient {
|
|
|
649
672
|
* @param DeleteFusionEnvironmentAdminUserRequest
|
|
650
673
|
* @return DeleteFusionEnvironmentAdminUserResponse
|
|
651
674
|
* @throws OciError when an error occurs
|
|
652
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
675
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/DeleteFusionEnvironmentAdminUser.ts.html |here} to see how to use DeleteFusionEnvironmentAdminUser API.
|
|
653
676
|
*/
|
|
654
677
|
deleteFusionEnvironmentAdminUser(deleteFusionEnvironmentAdminUserRequest) {
|
|
655
678
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -710,7 +733,7 @@ class FusionApplicationsClient {
|
|
|
710
733
|
* @param DeleteFusionEnvironmentFamilyRequest
|
|
711
734
|
* @return DeleteFusionEnvironmentFamilyResponse
|
|
712
735
|
* @throws OciError when an error occurs
|
|
713
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/DeleteFusionEnvironmentFamily.ts.html |here} to see how to use DeleteFusionEnvironmentFamily API.
|
|
714
737
|
*/
|
|
715
738
|
deleteFusionEnvironmentFamily(deleteFusionEnvironmentFamilyRequest) {
|
|
716
739
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -770,7 +793,7 @@ class FusionApplicationsClient {
|
|
|
770
793
|
* @param DeleteRefreshActivityRequest
|
|
771
794
|
* @return DeleteRefreshActivityResponse
|
|
772
795
|
* @throws OciError when an error occurs
|
|
773
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
796
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/DeleteRefreshActivity.ts.html |here} to see how to use DeleteRefreshActivity API.
|
|
774
797
|
*/
|
|
775
798
|
deleteRefreshActivity(deleteRefreshActivityRequest) {
|
|
776
799
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -831,7 +854,7 @@ class FusionApplicationsClient {
|
|
|
831
854
|
* @param GetDataMaskingActivityRequest
|
|
832
855
|
* @return GetDataMaskingActivityResponse
|
|
833
856
|
* @throws OciError when an error occurs
|
|
834
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
857
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetDataMaskingActivity.ts.html |here} to see how to use GetDataMaskingActivity API.
|
|
835
858
|
*/
|
|
836
859
|
getDataMaskingActivity(getDataMaskingActivityRequest) {
|
|
837
860
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -895,7 +918,7 @@ class FusionApplicationsClient {
|
|
|
895
918
|
* @param GetFusionEnvironmentRequest
|
|
896
919
|
* @return GetFusionEnvironmentResponse
|
|
897
920
|
* @throws OciError when an error occurs
|
|
898
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
921
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetFusionEnvironment.ts.html |here} to see how to use GetFusionEnvironment API.
|
|
899
922
|
*/
|
|
900
923
|
getFusionEnvironment(getFusionEnvironmentRequest) {
|
|
901
924
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -958,7 +981,7 @@ class FusionApplicationsClient {
|
|
|
958
981
|
* @param GetFusionEnvironmentFamilyRequest
|
|
959
982
|
* @return GetFusionEnvironmentFamilyResponse
|
|
960
983
|
* @throws OciError when an error occurs
|
|
961
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetFusionEnvironmentFamily.ts.html |here} to see how to use GetFusionEnvironmentFamily API.
|
|
962
985
|
*/
|
|
963
986
|
getFusionEnvironmentFamily(getFusionEnvironmentFamilyRequest) {
|
|
964
987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1021,7 +1044,7 @@ class FusionApplicationsClient {
|
|
|
1021
1044
|
* @param GetFusionEnvironmentFamilyLimitsAndUsageRequest
|
|
1022
1045
|
* @return GetFusionEnvironmentFamilyLimitsAndUsageResponse
|
|
1023
1046
|
* @throws OciError when an error occurs
|
|
1024
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1047
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetFusionEnvironmentFamilyLimitsAndUsage.ts.html |here} to see how to use GetFusionEnvironmentFamilyLimitsAndUsage API.
|
|
1025
1048
|
*/
|
|
1026
1049
|
getFusionEnvironmentFamilyLimitsAndUsage(getFusionEnvironmentFamilyLimitsAndUsageRequest) {
|
|
1027
1050
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1084,7 +1107,7 @@ class FusionApplicationsClient {
|
|
|
1084
1107
|
* @param GetFusionEnvironmentFamilySubscriptionDetailRequest
|
|
1085
1108
|
* @return GetFusionEnvironmentFamilySubscriptionDetailResponse
|
|
1086
1109
|
* @throws OciError when an error occurs
|
|
1087
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetFusionEnvironmentFamilySubscriptionDetail.ts.html |here} to see how to use GetFusionEnvironmentFamilySubscriptionDetail API.
|
|
1088
1111
|
*/
|
|
1089
1112
|
getFusionEnvironmentFamilySubscriptionDetail(getFusionEnvironmentFamilySubscriptionDetailRequest) {
|
|
1090
1113
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1147,7 +1170,7 @@ class FusionApplicationsClient {
|
|
|
1147
1170
|
* @param GetFusionEnvironmentStatusRequest
|
|
1148
1171
|
* @return GetFusionEnvironmentStatusResponse
|
|
1149
1172
|
* @throws OciError when an error occurs
|
|
1150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetFusionEnvironmentStatus.ts.html |here} to see how to use GetFusionEnvironmentStatus API.
|
|
1151
1174
|
*/
|
|
1152
1175
|
getFusionEnvironmentStatus(getFusionEnvironmentStatusRequest) {
|
|
1153
1176
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1205,7 +1228,7 @@ class FusionApplicationsClient {
|
|
|
1205
1228
|
* @param GetRefreshActivityRequest
|
|
1206
1229
|
* @return GetRefreshActivityResponse
|
|
1207
1230
|
* @throws OciError when an error occurs
|
|
1208
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1231
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetRefreshActivity.ts.html |here} to see how to use GetRefreshActivity API.
|
|
1209
1232
|
*/
|
|
1210
1233
|
getRefreshActivity(getRefreshActivityRequest) {
|
|
1211
1234
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1269,7 +1292,7 @@ class FusionApplicationsClient {
|
|
|
1269
1292
|
* @param GetScheduledActivityRequest
|
|
1270
1293
|
* @return GetScheduledActivityResponse
|
|
1271
1294
|
* @throws OciError when an error occurs
|
|
1272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetScheduledActivity.ts.html |here} to see how to use GetScheduledActivity API.
|
|
1273
1296
|
*/
|
|
1274
1297
|
getScheduledActivity(getScheduledActivityRequest) {
|
|
1275
1298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1333,7 +1356,7 @@ class FusionApplicationsClient {
|
|
|
1333
1356
|
* @param GetServiceAttachmentRequest
|
|
1334
1357
|
* @return GetServiceAttachmentResponse
|
|
1335
1358
|
* @throws OciError when an error occurs
|
|
1336
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1359
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetServiceAttachment.ts.html |here} to see how to use GetServiceAttachment API.
|
|
1337
1360
|
*/
|
|
1338
1361
|
getServiceAttachment(getServiceAttachmentRequest) {
|
|
1339
1362
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1397,7 +1420,7 @@ class FusionApplicationsClient {
|
|
|
1397
1420
|
* @param GetWorkRequestRequest
|
|
1398
1421
|
* @return GetWorkRequestResponse
|
|
1399
1422
|
* @throws OciError when an error occurs
|
|
1400
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1401
1424
|
*/
|
|
1402
1425
|
getWorkRequest(getWorkRequestRequest) {
|
|
1403
1426
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1460,7 +1483,7 @@ class FusionApplicationsClient {
|
|
|
1460
1483
|
* @param ListAdminUsersRequest
|
|
1461
1484
|
* @return ListAdminUsersResponse
|
|
1462
1485
|
* @throws OciError when an error occurs
|
|
1463
|
-
* @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.58.1/fusionapps/ListAdminUsers.ts.html |here} to see how to use ListAdminUsers API.
|
|
1464
1487
|
*/
|
|
1465
1488
|
listAdminUsers(listAdminUsersRequest) {
|
|
1466
1489
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1524,7 +1547,7 @@ class FusionApplicationsClient {
|
|
|
1524
1547
|
* @param ListDataMaskingActivitiesRequest
|
|
1525
1548
|
* @return ListDataMaskingActivitiesResponse
|
|
1526
1549
|
* @throws OciError when an error occurs
|
|
1527
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1550
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListDataMaskingActivities.ts.html |here} to see how to use ListDataMaskingActivities API.
|
|
1528
1551
|
*/
|
|
1529
1552
|
listDataMaskingActivities(listDataMaskingActivitiesRequest) {
|
|
1530
1553
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1594,7 +1617,7 @@ class FusionApplicationsClient {
|
|
|
1594
1617
|
* @param ListFusionEnvironmentFamiliesRequest
|
|
1595
1618
|
* @return ListFusionEnvironmentFamiliesResponse
|
|
1596
1619
|
* @throws OciError when an error occurs
|
|
1597
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListFusionEnvironmentFamilies.ts.html |here} to see how to use ListFusionEnvironmentFamilies API.
|
|
1598
1621
|
*/
|
|
1599
1622
|
listFusionEnvironmentFamilies(listFusionEnvironmentFamiliesRequest) {
|
|
1600
1623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1665,7 +1688,7 @@ class FusionApplicationsClient {
|
|
|
1665
1688
|
* @param ListFusionEnvironmentsRequest
|
|
1666
1689
|
* @return ListFusionEnvironmentsResponse
|
|
1667
1690
|
* @throws OciError when an error occurs
|
|
1668
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListFusionEnvironments.ts.html |here} to see how to use ListFusionEnvironments API.
|
|
1669
1692
|
*/
|
|
1670
1693
|
listFusionEnvironments(listFusionEnvironmentsRequest) {
|
|
1671
1694
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1736,7 +1759,7 @@ class FusionApplicationsClient {
|
|
|
1736
1759
|
* @param ListRefreshActivitiesRequest
|
|
1737
1760
|
* @return ListRefreshActivitiesResponse
|
|
1738
1761
|
* @throws OciError when an error occurs
|
|
1739
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1762
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListRefreshActivities.ts.html |here} to see how to use ListRefreshActivities API.
|
|
1740
1763
|
*/
|
|
1741
1764
|
listRefreshActivities(listRefreshActivitiesRequest) {
|
|
1742
1765
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1809,7 +1832,7 @@ class FusionApplicationsClient {
|
|
|
1809
1832
|
* @param ListScheduledActivitiesRequest
|
|
1810
1833
|
* @return ListScheduledActivitiesResponse
|
|
1811
1834
|
* @throws OciError when an error occurs
|
|
1812
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1835
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListScheduledActivities.ts.html |here} to see how to use ListScheduledActivities API.
|
|
1813
1836
|
*/
|
|
1814
1837
|
listScheduledActivities(listScheduledActivitiesRequest) {
|
|
1815
1838
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1883,7 +1906,7 @@ class FusionApplicationsClient {
|
|
|
1883
1906
|
* @param ListServiceAttachmentsRequest
|
|
1884
1907
|
* @return ListServiceAttachmentsResponse
|
|
1885
1908
|
* @throws OciError when an error occurs
|
|
1886
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1909
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListServiceAttachments.ts.html |here} to see how to use ListServiceAttachments API.
|
|
1887
1910
|
*/
|
|
1888
1911
|
listServiceAttachments(listServiceAttachmentsRequest) {
|
|
1889
1912
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1954,7 +1977,7 @@ class FusionApplicationsClient {
|
|
|
1954
1977
|
* @param ListTimeAvailableForRefreshesRequest
|
|
1955
1978
|
* @return ListTimeAvailableForRefreshesResponse
|
|
1956
1979
|
* @throws OciError when an error occurs
|
|
1957
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1980
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListTimeAvailableForRefreshes.ts.html |here} to see how to use ListTimeAvailableForRefreshes API.
|
|
1958
1981
|
*/
|
|
1959
1982
|
listTimeAvailableForRefreshes(listTimeAvailableForRefreshesRequest) {
|
|
1960
1983
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2023,7 +2046,7 @@ class FusionApplicationsClient {
|
|
|
2023
2046
|
* @param ListWorkRequestErrorsRequest
|
|
2024
2047
|
* @return ListWorkRequestErrorsResponse
|
|
2025
2048
|
* @throws OciError when an error occurs
|
|
2026
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2049
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2027
2050
|
*/
|
|
2028
2051
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2029
2052
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2092,7 +2115,7 @@ class FusionApplicationsClient {
|
|
|
2092
2115
|
* @param ListWorkRequestLogsRequest
|
|
2093
2116
|
* @return ListWorkRequestLogsResponse
|
|
2094
2117
|
* @throws OciError when an error occurs
|
|
2095
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2096
2119
|
*/
|
|
2097
2120
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2098
2121
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2161,7 +2184,7 @@ class FusionApplicationsClient {
|
|
|
2161
2184
|
* @param ListWorkRequestsRequest
|
|
2162
2185
|
* @return ListWorkRequestsResponse
|
|
2163
2186
|
* @throws OciError when an error occurs
|
|
2164
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2187
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2165
2188
|
*/
|
|
2166
2189
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2167
2190
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2230,7 +2253,7 @@ class FusionApplicationsClient {
|
|
|
2230
2253
|
* @param ResetFusionEnvironmentPasswordRequest
|
|
2231
2254
|
* @return ResetFusionEnvironmentPasswordResponse
|
|
2232
2255
|
* @throws OciError when an error occurs
|
|
2233
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2256
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/ResetFusionEnvironmentPassword.ts.html |here} to see how to use ResetFusionEnvironmentPassword API.
|
|
2234
2257
|
*/
|
|
2235
2258
|
resetFusionEnvironmentPassword(resetFusionEnvironmentPasswordRequest) {
|
|
2236
2259
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2293,7 +2316,7 @@ class FusionApplicationsClient {
|
|
|
2293
2316
|
* @param UpdateFusionEnvironmentRequest
|
|
2294
2317
|
* @return UpdateFusionEnvironmentResponse
|
|
2295
2318
|
* @throws OciError when an error occurs
|
|
2296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2319
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/UpdateFusionEnvironment.ts.html |here} to see how to use UpdateFusionEnvironment API.
|
|
2297
2320
|
*/
|
|
2298
2321
|
updateFusionEnvironment(updateFusionEnvironmentRequest) {
|
|
2299
2322
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2354,7 +2377,7 @@ class FusionApplicationsClient {
|
|
|
2354
2377
|
* @param UpdateFusionEnvironmentFamilyRequest
|
|
2355
2378
|
* @return UpdateFusionEnvironmentFamilyResponse
|
|
2356
2379
|
* @throws OciError when an error occurs
|
|
2357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2380
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/UpdateFusionEnvironmentFamily.ts.html |here} to see how to use UpdateFusionEnvironmentFamily API.
|
|
2358
2381
|
*/
|
|
2359
2382
|
updateFusionEnvironmentFamily(updateFusionEnvironmentFamilyRequest) {
|
|
2360
2383
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2416,7 +2439,7 @@ class FusionApplicationsClient {
|
|
|
2416
2439
|
* @param UpdateRefreshActivityRequest
|
|
2417
2440
|
* @return UpdateRefreshActivityResponse
|
|
2418
2441
|
* @throws OciError when an error occurs
|
|
2419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/fusionapps/UpdateRefreshActivity.ts.html |here} to see how to use UpdateRefreshActivity API.
|
|
2420
2443
|
*/
|
|
2421
2444
|
updateRefreshActivity(updateRefreshActivityRequest) {
|
|
2422
2445
|
return __awaiter(this, void 0, void 0, function* () {
|