oci-fusionapps 2.87.0 → 2.88.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 +59 -39
- package/lib/client.js +158 -39
- package/lib/client.js.map +1 -1
- package/lib/model/extract-details-collection.d.ts +26 -0
- package/lib/model/extract-details-collection.js +61 -0
- package/lib/model/extract-details-collection.js.map +1 -0
- package/lib/model/extract-details-summary.d.ts +33 -0
- package/lib/model/extract-details-summary.js +29 -0
- package/lib/model/extract-details-summary.js.map +1 -0
- package/lib/model/fusion-environment.d.ts +4 -0
- package/lib/model/fusion-environment.js.map +1 -1
- package/lib/model/index.d.ts +4 -0
- package/lib/model/index.js +6 -2
- package/lib/model/index.js.map +1 -1
- package/lib/model/subscription.d.ts +56 -0
- package/lib/model/subscription.js +50 -0
- package/lib/model/subscription.js.map +1 -1
- package/lib/model/work-request.d.ts +6 -0
- package/lib/model/work-request.js +6 -0
- package/lib/model/work-request.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/generate-extract-details-request.d.ts +26 -0
- package/lib/request/generate-extract-details-request.js +15 -0
- package/lib/request/generate-extract-details-request.js.map +1 -0
- 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/index.d.ts +4 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/initiate-extract-request.d.ts +26 -0
- package/lib/request/initiate-extract-request.js +15 -0
- package/lib/request/initiate-extract-request.js.map +1 -0
- 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/lib/response/generate-extract-details-response.d.ts +25 -0
- package/lib/response/generate-extract-details-response.js +15 -0
- package/lib/response/generate-extract-details-response.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/initiate-extract-response.d.ts +25 -0
- package/lib/response/initiate-extract-response.js +15 -0
- package/lib/response/initiate-extract-response.js.map +1 -0
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -204,7 +204,7 @@ class FusionApplicationsClient {
|
|
|
204
204
|
* @param ChangeFusionEnvironmentCompartmentRequest
|
|
205
205
|
* @return ChangeFusionEnvironmentCompartmentResponse
|
|
206
206
|
* @throws OciError when an error occurs
|
|
207
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ChangeFusionEnvironmentCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentCompartment API.
|
|
208
208
|
*/
|
|
209
209
|
changeFusionEnvironmentCompartment(changeFusionEnvironmentCompartmentRequest) {
|
|
210
210
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -268,7 +268,7 @@ class FusionApplicationsClient {
|
|
|
268
268
|
* @param ChangeFusionEnvironmentFamilyCompartmentRequest
|
|
269
269
|
* @return ChangeFusionEnvironmentFamilyCompartmentResponse
|
|
270
270
|
* @throws OciError when an error occurs
|
|
271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
271
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ChangeFusionEnvironmentFamilyCompartment.ts.html |here} to see how to use ChangeFusionEnvironmentFamilyCompartment API.
|
|
272
272
|
*/
|
|
273
273
|
changeFusionEnvironmentFamilyCompartment(changeFusionEnvironmentFamilyCompartmentRequest) {
|
|
274
274
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -331,7 +331,7 @@ class FusionApplicationsClient {
|
|
|
331
331
|
* @param CreateDataMaskingActivityRequest
|
|
332
332
|
* @return CreateDataMaskingActivityResponse
|
|
333
333
|
* @throws OciError when an error occurs
|
|
334
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
334
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateDataMaskingActivity.ts.html |here} to see how to use CreateDataMaskingActivity API.
|
|
335
335
|
*/
|
|
336
336
|
createDataMaskingActivity(createDataMaskingActivityRequest) {
|
|
337
337
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -393,7 +393,7 @@ class FusionApplicationsClient {
|
|
|
393
393
|
* @param CreateFusionEnvironmentRequest
|
|
394
394
|
* @return CreateFusionEnvironmentResponse
|
|
395
395
|
* @throws OciError when an error occurs
|
|
396
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
396
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateFusionEnvironment.ts.html |here} to see how to use CreateFusionEnvironment API.
|
|
397
397
|
*/
|
|
398
398
|
createFusionEnvironment(createFusionEnvironmentRequest) {
|
|
399
399
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -452,7 +452,7 @@ class FusionApplicationsClient {
|
|
|
452
452
|
* @param CreateFusionEnvironmentAdminUserRequest
|
|
453
453
|
* @return CreateFusionEnvironmentAdminUserResponse
|
|
454
454
|
* @throws OciError when an error occurs
|
|
455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateFusionEnvironmentAdminUser.ts.html |here} to see how to use CreateFusionEnvironmentAdminUser API.
|
|
456
456
|
*/
|
|
457
457
|
createFusionEnvironmentAdminUser(createFusionEnvironmentAdminUserRequest) {
|
|
458
458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -514,7 +514,7 @@ class FusionApplicationsClient {
|
|
|
514
514
|
* @param CreateFusionEnvironmentFamilyRequest
|
|
515
515
|
* @return CreateFusionEnvironmentFamilyResponse
|
|
516
516
|
* @throws OciError when an error occurs
|
|
517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
517
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateFusionEnvironmentFamily.ts.html |here} to see how to use CreateFusionEnvironmentFamily API.
|
|
518
518
|
*/
|
|
519
519
|
createFusionEnvironmentFamily(createFusionEnvironmentFamilyRequest) {
|
|
520
520
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -574,7 +574,7 @@ class FusionApplicationsClient {
|
|
|
574
574
|
* @param CreateRefreshActivityRequest
|
|
575
575
|
* @return CreateRefreshActivityResponse
|
|
576
576
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
577
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateRefreshActivity.ts.html |here} to see how to use CreateRefreshActivity API.
|
|
578
578
|
*/
|
|
579
579
|
createRefreshActivity(createRefreshActivityRequest) {
|
|
580
580
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -636,7 +636,7 @@ class FusionApplicationsClient {
|
|
|
636
636
|
* @param CreateServiceAttachmentRequest
|
|
637
637
|
* @return CreateServiceAttachmentResponse
|
|
638
638
|
* @throws OciError when an error occurs
|
|
639
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/CreateServiceAttachment.ts.html |here} to see how to use CreateServiceAttachment API.
|
|
640
640
|
*/
|
|
641
641
|
createServiceAttachment(createServiceAttachmentRequest) {
|
|
642
642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -697,7 +697,7 @@ class FusionApplicationsClient {
|
|
|
697
697
|
* @param DeleteFusionEnvironmentRequest
|
|
698
698
|
* @return DeleteFusionEnvironmentResponse
|
|
699
699
|
* @throws OciError when an error occurs
|
|
700
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
700
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/DeleteFusionEnvironment.ts.html |here} to see how to use DeleteFusionEnvironment API.
|
|
701
701
|
*/
|
|
702
702
|
deleteFusionEnvironment(deleteFusionEnvironmentRequest) {
|
|
703
703
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -757,7 +757,7 @@ class FusionApplicationsClient {
|
|
|
757
757
|
* @param DeleteFusionEnvironmentAdminUserRequest
|
|
758
758
|
* @return DeleteFusionEnvironmentAdminUserResponse
|
|
759
759
|
* @throws OciError when an error occurs
|
|
760
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
760
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/DeleteFusionEnvironmentAdminUser.ts.html |here} to see how to use DeleteFusionEnvironmentAdminUser API.
|
|
761
761
|
*/
|
|
762
762
|
deleteFusionEnvironmentAdminUser(deleteFusionEnvironmentAdminUserRequest) {
|
|
763
763
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -818,7 +818,7 @@ class FusionApplicationsClient {
|
|
|
818
818
|
* @param DeleteFusionEnvironmentFamilyRequest
|
|
819
819
|
* @return DeleteFusionEnvironmentFamilyResponse
|
|
820
820
|
* @throws OciError when an error occurs
|
|
821
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
821
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/DeleteFusionEnvironmentFamily.ts.html |here} to see how to use DeleteFusionEnvironmentFamily API.
|
|
822
822
|
*/
|
|
823
823
|
deleteFusionEnvironmentFamily(deleteFusionEnvironmentFamilyRequest) {
|
|
824
824
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -878,7 +878,7 @@ class FusionApplicationsClient {
|
|
|
878
878
|
* @param DeleteRefreshActivityRequest
|
|
879
879
|
* @return DeleteRefreshActivityResponse
|
|
880
880
|
* @throws OciError when an error occurs
|
|
881
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
881
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/DeleteRefreshActivity.ts.html |here} to see how to use DeleteRefreshActivity API.
|
|
882
882
|
*/
|
|
883
883
|
deleteRefreshActivity(deleteRefreshActivityRequest) {
|
|
884
884
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -939,7 +939,7 @@ class FusionApplicationsClient {
|
|
|
939
939
|
* @param DeleteServiceAttachmentRequest
|
|
940
940
|
* @return DeleteServiceAttachmentResponse
|
|
941
941
|
* @throws OciError when an error occurs
|
|
942
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/DeleteServiceAttachment.ts.html |here} to see how to use DeleteServiceAttachment API.
|
|
943
943
|
*/
|
|
944
944
|
deleteServiceAttachment(deleteServiceAttachmentRequest) {
|
|
945
945
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -994,13 +994,72 @@ class FusionApplicationsClient {
|
|
|
994
994
|
}
|
|
995
995
|
});
|
|
996
996
|
}
|
|
997
|
+
/**
|
|
998
|
+
* Begin the process of showing the details about where to retrieve data extract for a Fusion environment.
|
|
999
|
+
*
|
|
1000
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1001
|
+
* @param GenerateExtractDetailsRequest
|
|
1002
|
+
* @return GenerateExtractDetailsResponse
|
|
1003
|
+
* @throws OciError when an error occurs
|
|
1004
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GenerateExtractDetails.ts.html |here} to see how to use GenerateExtractDetails API.
|
|
1005
|
+
*/
|
|
1006
|
+
generateExtractDetails(generateExtractDetailsRequest) {
|
|
1007
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1008
|
+
if (this.logger)
|
|
1009
|
+
this.logger.debug("Calling operation FusionApplicationsClient#generateExtractDetails.");
|
|
1010
|
+
const operationName = "generateExtractDetails";
|
|
1011
|
+
const apiReferenceLink = "";
|
|
1012
|
+
const pathParams = {
|
|
1013
|
+
"{fusionEnvironmentId}": generateExtractDetailsRequest.fusionEnvironmentId
|
|
1014
|
+
};
|
|
1015
|
+
const queryParams = {};
|
|
1016
|
+
let headerParams = {
|
|
1017
|
+
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1018
|
+
"opc-request-id": generateExtractDetailsRequest.opcRequestId
|
|
1019
|
+
};
|
|
1020
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1021
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, generateExtractDetailsRequest.retryConfiguration, specRetryConfiguration);
|
|
1022
|
+
if (this.logger)
|
|
1023
|
+
retrier.logger = this.logger;
|
|
1024
|
+
const request = yield oci_common_1.composeRequest({
|
|
1025
|
+
baseEndpoint: this._endpoint,
|
|
1026
|
+
defaultHeaders: this._defaultHeaders,
|
|
1027
|
+
path: "/fusionEnvironments/{fusionEnvironmentId}/actions/generateExtractDetails",
|
|
1028
|
+
method: "POST",
|
|
1029
|
+
pathParams: pathParams,
|
|
1030
|
+
headerParams: headerParams,
|
|
1031
|
+
queryParams: queryParams
|
|
1032
|
+
});
|
|
1033
|
+
try {
|
|
1034
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1035
|
+
const sdkResponse = oci_common_1.composeResponse({
|
|
1036
|
+
responseObject: {},
|
|
1037
|
+
body: yield response.json(),
|
|
1038
|
+
bodyKey: "extractDetailsCollection",
|
|
1039
|
+
bodyModel: model.ExtractDetailsCollection,
|
|
1040
|
+
type: "model.ExtractDetailsCollection",
|
|
1041
|
+
responseHeaders: [
|
|
1042
|
+
{
|
|
1043
|
+
value: response.headers.get("opc-request-id"),
|
|
1044
|
+
key: "opcRequestId",
|
|
1045
|
+
dataType: "string"
|
|
1046
|
+
}
|
|
1047
|
+
]
|
|
1048
|
+
});
|
|
1049
|
+
return sdkResponse;
|
|
1050
|
+
}
|
|
1051
|
+
catch (err) {
|
|
1052
|
+
throw err;
|
|
1053
|
+
}
|
|
1054
|
+
});
|
|
1055
|
+
}
|
|
997
1056
|
/**
|
|
998
1057
|
* Gets a DataMaskingActivity by identifier
|
|
999
1058
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1000
1059
|
* @param GetDataMaskingActivityRequest
|
|
1001
1060
|
* @return GetDataMaskingActivityResponse
|
|
1002
1061
|
* @throws OciError when an error occurs
|
|
1003
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetDataMaskingActivity.ts.html |here} to see how to use GetDataMaskingActivity API.
|
|
1004
1063
|
*/
|
|
1005
1064
|
getDataMaskingActivity(getDataMaskingActivityRequest) {
|
|
1006
1065
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1064,7 +1123,7 @@ class FusionApplicationsClient {
|
|
|
1064
1123
|
* @param GetFusionEnvironmentRequest
|
|
1065
1124
|
* @return GetFusionEnvironmentResponse
|
|
1066
1125
|
* @throws OciError when an error occurs
|
|
1067
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetFusionEnvironment.ts.html |here} to see how to use GetFusionEnvironment API.
|
|
1068
1127
|
*/
|
|
1069
1128
|
getFusionEnvironment(getFusionEnvironmentRequest) {
|
|
1070
1129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1127,7 +1186,7 @@ class FusionApplicationsClient {
|
|
|
1127
1186
|
* @param GetFusionEnvironmentFamilyRequest
|
|
1128
1187
|
* @return GetFusionEnvironmentFamilyResponse
|
|
1129
1188
|
* @throws OciError when an error occurs
|
|
1130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetFusionEnvironmentFamily.ts.html |here} to see how to use GetFusionEnvironmentFamily API.
|
|
1131
1190
|
*/
|
|
1132
1191
|
getFusionEnvironmentFamily(getFusionEnvironmentFamilyRequest) {
|
|
1133
1192
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1190,7 +1249,7 @@ class FusionApplicationsClient {
|
|
|
1190
1249
|
* @param GetFusionEnvironmentFamilyLimitsAndUsageRequest
|
|
1191
1250
|
* @return GetFusionEnvironmentFamilyLimitsAndUsageResponse
|
|
1192
1251
|
* @throws OciError when an error occurs
|
|
1193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetFusionEnvironmentFamilyLimitsAndUsage.ts.html |here} to see how to use GetFusionEnvironmentFamilyLimitsAndUsage API.
|
|
1194
1253
|
*/
|
|
1195
1254
|
getFusionEnvironmentFamilyLimitsAndUsage(getFusionEnvironmentFamilyLimitsAndUsageRequest) {
|
|
1196
1255
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1253,7 +1312,7 @@ class FusionApplicationsClient {
|
|
|
1253
1312
|
* @param GetFusionEnvironmentFamilySubscriptionDetailRequest
|
|
1254
1313
|
* @return GetFusionEnvironmentFamilySubscriptionDetailResponse
|
|
1255
1314
|
* @throws OciError when an error occurs
|
|
1256
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1315
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetFusionEnvironmentFamilySubscriptionDetail.ts.html |here} to see how to use GetFusionEnvironmentFamilySubscriptionDetail API.
|
|
1257
1316
|
*/
|
|
1258
1317
|
getFusionEnvironmentFamilySubscriptionDetail(getFusionEnvironmentFamilySubscriptionDetailRequest) {
|
|
1259
1318
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1316,7 +1375,7 @@ class FusionApplicationsClient {
|
|
|
1316
1375
|
* @param GetFusionEnvironmentStatusRequest
|
|
1317
1376
|
* @return GetFusionEnvironmentStatusResponse
|
|
1318
1377
|
* @throws OciError when an error occurs
|
|
1319
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetFusionEnvironmentStatus.ts.html |here} to see how to use GetFusionEnvironmentStatus API.
|
|
1320
1379
|
*/
|
|
1321
1380
|
getFusionEnvironmentStatus(getFusionEnvironmentStatusRequest) {
|
|
1322
1381
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1374,7 +1433,7 @@ class FusionApplicationsClient {
|
|
|
1374
1433
|
* @param GetRefreshActivityRequest
|
|
1375
1434
|
* @return GetRefreshActivityResponse
|
|
1376
1435
|
* @throws OciError when an error occurs
|
|
1377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1436
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetRefreshActivity.ts.html |here} to see how to use GetRefreshActivity API.
|
|
1378
1437
|
*/
|
|
1379
1438
|
getRefreshActivity(getRefreshActivityRequest) {
|
|
1380
1439
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1438,7 +1497,7 @@ class FusionApplicationsClient {
|
|
|
1438
1497
|
* @param GetScheduledActivityRequest
|
|
1439
1498
|
* @return GetScheduledActivityResponse
|
|
1440
1499
|
* @throws OciError when an error occurs
|
|
1441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1500
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetScheduledActivity.ts.html |here} to see how to use GetScheduledActivity API.
|
|
1442
1501
|
*/
|
|
1443
1502
|
getScheduledActivity(getScheduledActivityRequest) {
|
|
1444
1503
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1502,7 +1561,7 @@ class FusionApplicationsClient {
|
|
|
1502
1561
|
* @param GetServiceAttachmentRequest
|
|
1503
1562
|
* @return GetServiceAttachmentResponse
|
|
1504
1563
|
* @throws OciError when an error occurs
|
|
1505
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1564
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetServiceAttachment.ts.html |here} to see how to use GetServiceAttachment API.
|
|
1506
1565
|
*/
|
|
1507
1566
|
getServiceAttachment(getServiceAttachmentRequest) {
|
|
1508
1567
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1566,7 +1625,7 @@ class FusionApplicationsClient {
|
|
|
1566
1625
|
* @param GetWorkRequestRequest
|
|
1567
1626
|
* @return GetWorkRequestResponse
|
|
1568
1627
|
* @throws OciError when an error occurs
|
|
1569
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1628
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1570
1629
|
*/
|
|
1571
1630
|
getWorkRequest(getWorkRequestRequest) {
|
|
1572
1631
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1623,13 +1682,73 @@ class FusionApplicationsClient {
|
|
|
1623
1682
|
}
|
|
1624
1683
|
});
|
|
1625
1684
|
}
|
|
1685
|
+
/**
|
|
1686
|
+
* Begin the process of generating the data extract for a Fusion environment.
|
|
1687
|
+
*
|
|
1688
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1689
|
+
* @param InitiateExtractRequest
|
|
1690
|
+
* @return InitiateExtractResponse
|
|
1691
|
+
* @throws OciError when an error occurs
|
|
1692
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/InitiateExtract.ts.html |here} to see how to use InitiateExtract API.
|
|
1693
|
+
*/
|
|
1694
|
+
initiateExtract(initiateExtractRequest) {
|
|
1695
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1696
|
+
if (this.logger)
|
|
1697
|
+
this.logger.debug("Calling operation FusionApplicationsClient#initiateExtract.");
|
|
1698
|
+
const operationName = "initiateExtract";
|
|
1699
|
+
const apiReferenceLink = "";
|
|
1700
|
+
const pathParams = {
|
|
1701
|
+
"{fusionEnvironmentId}": initiateExtractRequest.fusionEnvironmentId
|
|
1702
|
+
};
|
|
1703
|
+
const queryParams = {};
|
|
1704
|
+
let headerParams = {
|
|
1705
|
+
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1706
|
+
"opc-request-id": initiateExtractRequest.opcRequestId
|
|
1707
|
+
};
|
|
1708
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1709
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, initiateExtractRequest.retryConfiguration, specRetryConfiguration);
|
|
1710
|
+
if (this.logger)
|
|
1711
|
+
retrier.logger = this.logger;
|
|
1712
|
+
const request = yield oci_common_1.composeRequest({
|
|
1713
|
+
baseEndpoint: this._endpoint,
|
|
1714
|
+
defaultHeaders: this._defaultHeaders,
|
|
1715
|
+
path: "/fusionEnvironments/{fusionEnvironmentId}/actions/initiateExtract",
|
|
1716
|
+
method: "POST",
|
|
1717
|
+
pathParams: pathParams,
|
|
1718
|
+
headerParams: headerParams,
|
|
1719
|
+
queryParams: queryParams
|
|
1720
|
+
});
|
|
1721
|
+
try {
|
|
1722
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1723
|
+
const sdkResponse = oci_common_1.composeResponse({
|
|
1724
|
+
responseObject: {},
|
|
1725
|
+
responseHeaders: [
|
|
1726
|
+
{
|
|
1727
|
+
value: response.headers.get("opc-work-request-id"),
|
|
1728
|
+
key: "opcWorkRequestId",
|
|
1729
|
+
dataType: "string"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
value: response.headers.get("opc-request-id"),
|
|
1733
|
+
key: "opcRequestId",
|
|
1734
|
+
dataType: "string"
|
|
1735
|
+
}
|
|
1736
|
+
]
|
|
1737
|
+
});
|
|
1738
|
+
return sdkResponse;
|
|
1739
|
+
}
|
|
1740
|
+
catch (err) {
|
|
1741
|
+
throw err;
|
|
1742
|
+
}
|
|
1743
|
+
});
|
|
1744
|
+
}
|
|
1626
1745
|
/**
|
|
1627
1746
|
* List all FusionEnvironment admin users
|
|
1628
1747
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1629
1748
|
* @param ListAdminUsersRequest
|
|
1630
1749
|
* @return ListAdminUsersResponse
|
|
1631
1750
|
* @throws OciError when an error occurs
|
|
1632
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1751
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListAdminUsers.ts.html |here} to see how to use ListAdminUsers API.
|
|
1633
1752
|
*/
|
|
1634
1753
|
listAdminUsers(listAdminUsersRequest) {
|
|
1635
1754
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1693,7 +1812,7 @@ class FusionApplicationsClient {
|
|
|
1693
1812
|
* @param ListDataMaskingActivitiesRequest
|
|
1694
1813
|
* @return ListDataMaskingActivitiesResponse
|
|
1695
1814
|
* @throws OciError when an error occurs
|
|
1696
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListDataMaskingActivities.ts.html |here} to see how to use ListDataMaskingActivities API.
|
|
1697
1816
|
*/
|
|
1698
1817
|
listDataMaskingActivities(listDataMaskingActivitiesRequest) {
|
|
1699
1818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1763,7 +1882,7 @@ class FusionApplicationsClient {
|
|
|
1763
1882
|
* @param ListFusionEnvironmentFamiliesRequest
|
|
1764
1883
|
* @return ListFusionEnvironmentFamiliesResponse
|
|
1765
1884
|
* @throws OciError when an error occurs
|
|
1766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1885
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListFusionEnvironmentFamilies.ts.html |here} to see how to use ListFusionEnvironmentFamilies API.
|
|
1767
1886
|
*/
|
|
1768
1887
|
listFusionEnvironmentFamilies(listFusionEnvironmentFamiliesRequest) {
|
|
1769
1888
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1834,7 +1953,7 @@ class FusionApplicationsClient {
|
|
|
1834
1953
|
* @param ListFusionEnvironmentsRequest
|
|
1835
1954
|
* @return ListFusionEnvironmentsResponse
|
|
1836
1955
|
* @throws OciError when an error occurs
|
|
1837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1956
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListFusionEnvironments.ts.html |here} to see how to use ListFusionEnvironments API.
|
|
1838
1957
|
*/
|
|
1839
1958
|
listFusionEnvironments(listFusionEnvironmentsRequest) {
|
|
1840
1959
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1905,7 +2024,7 @@ class FusionApplicationsClient {
|
|
|
1905
2024
|
* @param ListRefreshActivitiesRequest
|
|
1906
2025
|
* @return ListRefreshActivitiesResponse
|
|
1907
2026
|
* @throws OciError when an error occurs
|
|
1908
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2027
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListRefreshActivities.ts.html |here} to see how to use ListRefreshActivities API.
|
|
1909
2028
|
*/
|
|
1910
2029
|
listRefreshActivities(listRefreshActivitiesRequest) {
|
|
1911
2030
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1978,7 +2097,7 @@ class FusionApplicationsClient {
|
|
|
1978
2097
|
* @param ListScheduledActivitiesRequest
|
|
1979
2098
|
* @return ListScheduledActivitiesResponse
|
|
1980
2099
|
* @throws OciError when an error occurs
|
|
1981
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListScheduledActivities.ts.html |here} to see how to use ListScheduledActivities API.
|
|
1982
2101
|
*/
|
|
1983
2102
|
listScheduledActivities(listScheduledActivitiesRequest) {
|
|
1984
2103
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2054,7 +2173,7 @@ class FusionApplicationsClient {
|
|
|
2054
2173
|
* @param ListServiceAttachmentsRequest
|
|
2055
2174
|
* @return ListServiceAttachmentsResponse
|
|
2056
2175
|
* @throws OciError when an error occurs
|
|
2057
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListServiceAttachments.ts.html |here} to see how to use ListServiceAttachments API.
|
|
2058
2177
|
*/
|
|
2059
2178
|
listServiceAttachments(listServiceAttachmentsRequest) {
|
|
2060
2179
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2125,7 +2244,7 @@ class FusionApplicationsClient {
|
|
|
2125
2244
|
* @param ListTimeAvailableForRefreshesRequest
|
|
2126
2245
|
* @return ListTimeAvailableForRefreshesResponse
|
|
2127
2246
|
* @throws OciError when an error occurs
|
|
2128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListTimeAvailableForRefreshes.ts.html |here} to see how to use ListTimeAvailableForRefreshes API.
|
|
2129
2248
|
*/
|
|
2130
2249
|
listTimeAvailableForRefreshes(listTimeAvailableForRefreshesRequest) {
|
|
2131
2250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2194,7 +2313,7 @@ class FusionApplicationsClient {
|
|
|
2194
2313
|
* @param ListWorkRequestErrorsRequest
|
|
2195
2314
|
* @return ListWorkRequestErrorsResponse
|
|
2196
2315
|
* @throws OciError when an error occurs
|
|
2197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2198
2317
|
*/
|
|
2199
2318
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2200
2319
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2263,7 +2382,7 @@ class FusionApplicationsClient {
|
|
|
2263
2382
|
* @param ListWorkRequestLogsRequest
|
|
2264
2383
|
* @return ListWorkRequestLogsResponse
|
|
2265
2384
|
* @throws OciError when an error occurs
|
|
2266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2385
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2267
2386
|
*/
|
|
2268
2387
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2269
2388
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2332,7 +2451,7 @@ class FusionApplicationsClient {
|
|
|
2332
2451
|
* @param ListWorkRequestsRequest
|
|
2333
2452
|
* @return ListWorkRequestsResponse
|
|
2334
2453
|
* @throws OciError when an error occurs
|
|
2335
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2454
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2336
2455
|
*/
|
|
2337
2456
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2338
2457
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2401,7 +2520,7 @@ class FusionApplicationsClient {
|
|
|
2401
2520
|
* @param ResetFusionEnvironmentPasswordRequest
|
|
2402
2521
|
* @return ResetFusionEnvironmentPasswordResponse
|
|
2403
2522
|
* @throws OciError when an error occurs
|
|
2404
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/ResetFusionEnvironmentPassword.ts.html |here} to see how to use ResetFusionEnvironmentPassword API.
|
|
2405
2524
|
*/
|
|
2406
2525
|
resetFusionEnvironmentPassword(resetFusionEnvironmentPasswordRequest) {
|
|
2407
2526
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2464,7 +2583,7 @@ class FusionApplicationsClient {
|
|
|
2464
2583
|
* @param UpdateFusionEnvironmentRequest
|
|
2465
2584
|
* @return UpdateFusionEnvironmentResponse
|
|
2466
2585
|
* @throws OciError when an error occurs
|
|
2467
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2586
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/UpdateFusionEnvironment.ts.html |here} to see how to use UpdateFusionEnvironment API.
|
|
2468
2587
|
*/
|
|
2469
2588
|
updateFusionEnvironment(updateFusionEnvironmentRequest) {
|
|
2470
2589
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2525,7 +2644,7 @@ class FusionApplicationsClient {
|
|
|
2525
2644
|
* @param UpdateFusionEnvironmentFamilyRequest
|
|
2526
2645
|
* @return UpdateFusionEnvironmentFamilyResponse
|
|
2527
2646
|
* @throws OciError when an error occurs
|
|
2528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/UpdateFusionEnvironmentFamily.ts.html |here} to see how to use UpdateFusionEnvironmentFamily API.
|
|
2529
2648
|
*/
|
|
2530
2649
|
updateFusionEnvironmentFamily(updateFusionEnvironmentFamilyRequest) {
|
|
2531
2650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2587,7 +2706,7 @@ class FusionApplicationsClient {
|
|
|
2587
2706
|
* @param UpdateRefreshActivityRequest
|
|
2588
2707
|
* @return UpdateRefreshActivityResponse
|
|
2589
2708
|
* @throws OciError when an error occurs
|
|
2590
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2709
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/UpdateRefreshActivity.ts.html |here} to see how to use UpdateRefreshActivity API.
|
|
2591
2710
|
*/
|
|
2592
2711
|
updateRefreshActivity(updateRefreshActivityRequest) {
|
|
2593
2712
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2654,7 +2773,7 @@ class FusionApplicationsClient {
|
|
|
2654
2773
|
* @param VerifyServiceAttachmentRequest
|
|
2655
2774
|
* @return VerifyServiceAttachmentResponse
|
|
2656
2775
|
* @throws OciError when an error occurs
|
|
2657
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2776
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.88.1/fusionapps/VerifyServiceAttachment.ts.html |here} to see how to use VerifyServiceAttachment API.
|
|
2658
2777
|
*/
|
|
2659
2778
|
verifyServiceAttachment(verifyServiceAttachmentRequest) {
|
|
2660
2779
|
return __awaiter(this, void 0, void 0, function* () {
|