oci-integration 2.37.0 → 2.40.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 +13 -13
- package/lib/client.js +13 -13
- package/lib/model/attachment-details.d.ts +55 -0
- package/lib/model/attachment-details.js +39 -0
- package/lib/model/attachment-details.js.map +1 -0
- package/lib/model/change-integration-instance-network-endpoint-details.d.ts +7 -3
- package/lib/model/change-integration-instance-network-endpoint-details.js.map +1 -1
- package/lib/model/create-integration-instance-details.d.ts +19 -2
- package/lib/model/create-integration-instance-details.js +7 -0
- package/lib/model/create-integration-instance-details.js.map +1 -1
- package/lib/model/custom-endpoint-details.d.ts +5 -0
- package/lib/model/custom-endpoint-details.js.map +1 -1
- package/lib/model/idcs-info-details.d.ts +43 -0
- package/lib/model/idcs-info-details.js +29 -0
- package/lib/model/idcs-info-details.js.map +1 -0
- package/lib/model/index.d.ts +4 -0
- package/lib/model/index.js +5 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/integration-instance-summary.d.ts +39 -1
- package/lib/model/integration-instance-summary.js +12 -0
- package/lib/model/integration-instance-summary.js.map +1 -1
- package/lib/model/integration-instance.d.ts +25 -1
- package/lib/model/integration-instance.js +26 -0
- package/lib/model/integration-instance.js.map +1 -1
- package/lib/model/network-endpoint-details.js +5 -2
- package/lib/model/network-endpoint-details.js.map +1 -1
- package/lib/model/public-endpoint-details.d.ts +2 -1
- package/lib/model/public-endpoint-details.js.map +1 -1
- package/lib/model/update-integration-instance-details.d.ts +14 -4
- package/lib/model/update-integration-instance-details.js +2 -0
- package/lib/model/update-integration-instance-details.js.map +1 -1
- package/lib/model/virtual-cloud-network.d.ts +2 -1
- package/lib/model/virtual-cloud-network.js.map +1 -1
- package/lib/request/change-integration-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-integration-instance-network-endpoint-request.d.ts +1 -1
- package/lib/request/create-integration-instance-request.d.ts +1 -1
- package/lib/request/delete-integration-instance-request.d.ts +1 -1
- package/lib/request/get-integration-instance-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-integration-instances-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/start-integration-instance-request.d.ts +1 -1
- package/lib/request/stop-integration-instance-request.d.ts +1 -1
- package/lib/request/update-integration-instance-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare class IntegrationInstanceClient {
|
|
|
77
77
|
* @param ChangeIntegrationInstanceCompartmentRequest
|
|
78
78
|
* @return ChangeIntegrationInstanceCompartmentResponse
|
|
79
79
|
* @throws OciError when an error occurs
|
|
80
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
80
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
|
|
81
81
|
*/
|
|
82
82
|
changeIntegrationInstanceCompartment(changeIntegrationInstanceCompartmentRequest: requests.ChangeIntegrationInstanceCompartmentRequest): Promise<responses.ChangeIntegrationInstanceCompartmentResponse>;
|
|
83
83
|
/**
|
|
@@ -88,7 +88,7 @@ export declare class IntegrationInstanceClient {
|
|
|
88
88
|
* @param ChangeIntegrationInstanceNetworkEndpointRequest
|
|
89
89
|
* @return ChangeIntegrationInstanceNetworkEndpointResponse
|
|
90
90
|
* @throws OciError when an error occurs
|
|
91
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
|
|
92
92
|
*/
|
|
93
93
|
changeIntegrationInstanceNetworkEndpoint(changeIntegrationInstanceNetworkEndpointRequest: requests.ChangeIntegrationInstanceNetworkEndpointRequest): Promise<responses.ChangeIntegrationInstanceNetworkEndpointResponse>;
|
|
94
94
|
/**
|
|
@@ -98,7 +98,7 @@ export declare class IntegrationInstanceClient {
|
|
|
98
98
|
* @param CreateIntegrationInstanceRequest
|
|
99
99
|
* @return CreateIntegrationInstanceResponse
|
|
100
100
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
|
|
102
102
|
*/
|
|
103
103
|
createIntegrationInstance(createIntegrationInstanceRequest: requests.CreateIntegrationInstanceRequest): Promise<responses.CreateIntegrationInstanceResponse>;
|
|
104
104
|
/**
|
|
@@ -107,7 +107,7 @@ export declare class IntegrationInstanceClient {
|
|
|
107
107
|
* @param DeleteIntegrationInstanceRequest
|
|
108
108
|
* @return DeleteIntegrationInstanceResponse
|
|
109
109
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
|
|
111
111
|
*/
|
|
112
112
|
deleteIntegrationInstance(deleteIntegrationInstanceRequest: requests.DeleteIntegrationInstanceRequest): Promise<responses.DeleteIntegrationInstanceResponse>;
|
|
113
113
|
/**
|
|
@@ -116,7 +116,7 @@ export declare class IntegrationInstanceClient {
|
|
|
116
116
|
* @param GetIntegrationInstanceRequest
|
|
117
117
|
* @return GetIntegrationInstanceResponse
|
|
118
118
|
* @throws OciError when an error occurs
|
|
119
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
|
|
120
120
|
*/
|
|
121
121
|
getIntegrationInstance(getIntegrationInstanceRequest: requests.GetIntegrationInstanceRequest): Promise<responses.GetIntegrationInstanceResponse>;
|
|
122
122
|
/**
|
|
@@ -125,7 +125,7 @@ export declare class IntegrationInstanceClient {
|
|
|
125
125
|
* @param GetWorkRequestRequest
|
|
126
126
|
* @return GetWorkRequestResponse
|
|
127
127
|
* @throws OciError when an error occurs
|
|
128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
128
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
129
129
|
*/
|
|
130
130
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
131
131
|
/**
|
|
@@ -135,7 +135,7 @@ export declare class IntegrationInstanceClient {
|
|
|
135
135
|
* @param ListIntegrationInstancesRequest
|
|
136
136
|
* @return ListIntegrationInstancesResponse
|
|
137
137
|
* @throws OciError when an error occurs
|
|
138
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
|
|
139
139
|
*/
|
|
140
140
|
listIntegrationInstances(listIntegrationInstancesRequest: requests.ListIntegrationInstancesRequest): Promise<responses.ListIntegrationInstancesResponse>;
|
|
141
141
|
/**
|
|
@@ -176,7 +176,7 @@ export declare class IntegrationInstanceClient {
|
|
|
176
176
|
* @param ListWorkRequestErrorsRequest
|
|
177
177
|
* @return ListWorkRequestErrorsResponse
|
|
178
178
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
180
180
|
*/
|
|
181
181
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
182
182
|
/**
|
|
@@ -217,7 +217,7 @@ export declare class IntegrationInstanceClient {
|
|
|
217
217
|
* @param ListWorkRequestLogsRequest
|
|
218
218
|
* @return ListWorkRequestLogsResponse
|
|
219
219
|
* @throws OciError when an error occurs
|
|
220
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
220
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
221
221
|
*/
|
|
222
222
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
223
223
|
/**
|
|
@@ -259,7 +259,7 @@ export declare class IntegrationInstanceClient {
|
|
|
259
259
|
* @param ListWorkRequestsRequest
|
|
260
260
|
* @return ListWorkRequestsResponse
|
|
261
261
|
* @throws OciError when an error occurs
|
|
262
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
263
263
|
*/
|
|
264
264
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
265
265
|
/**
|
|
@@ -301,7 +301,7 @@ export declare class IntegrationInstanceClient {
|
|
|
301
301
|
* @param StartIntegrationInstanceRequest
|
|
302
302
|
* @return StartIntegrationInstanceResponse
|
|
303
303
|
* @throws OciError when an error occurs
|
|
304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
|
|
305
305
|
*/
|
|
306
306
|
startIntegrationInstance(startIntegrationInstanceRequest: requests.StartIntegrationInstanceRequest): Promise<responses.StartIntegrationInstanceResponse>;
|
|
307
307
|
/**
|
|
@@ -311,7 +311,7 @@ export declare class IntegrationInstanceClient {
|
|
|
311
311
|
* @param StopIntegrationInstanceRequest
|
|
312
312
|
* @return StopIntegrationInstanceResponse
|
|
313
313
|
* @throws OciError when an error occurs
|
|
314
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
314
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
|
|
315
315
|
*/
|
|
316
316
|
stopIntegrationInstance(stopIntegrationInstanceRequest: requests.StopIntegrationInstanceRequest): Promise<responses.StopIntegrationInstanceResponse>;
|
|
317
317
|
/**
|
|
@@ -320,7 +320,7 @@ export declare class IntegrationInstanceClient {
|
|
|
320
320
|
* @param UpdateIntegrationInstanceRequest
|
|
321
321
|
* @return UpdateIntegrationInstanceResponse
|
|
322
322
|
* @throws OciError when an error occurs
|
|
323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
323
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
|
|
324
324
|
*/
|
|
325
325
|
updateIntegrationInstance(updateIntegrationInstanceRequest: requests.UpdateIntegrationInstanceRequest): Promise<responses.UpdateIntegrationInstanceResponse>;
|
|
326
326
|
}
|
package/lib/client.js
CHANGED
|
@@ -158,7 +158,7 @@ class IntegrationInstanceClient {
|
|
|
158
158
|
* @param ChangeIntegrationInstanceCompartmentRequest
|
|
159
159
|
* @return ChangeIntegrationInstanceCompartmentResponse
|
|
160
160
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartment API.
|
|
162
162
|
*/
|
|
163
163
|
changeIntegrationInstanceCompartment(changeIntegrationInstanceCompartmentRequest) {
|
|
164
164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -222,7 +222,7 @@ class IntegrationInstanceClient {
|
|
|
222
222
|
* @param ChangeIntegrationInstanceNetworkEndpointRequest
|
|
223
223
|
* @return ChangeIntegrationInstanceNetworkEndpointResponse
|
|
224
224
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpoint API.
|
|
226
226
|
*/
|
|
227
227
|
changeIntegrationInstanceNetworkEndpoint(changeIntegrationInstanceNetworkEndpointRequest) {
|
|
228
228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -285,7 +285,7 @@ class IntegrationInstanceClient {
|
|
|
285
285
|
* @param CreateIntegrationInstanceRequest
|
|
286
286
|
* @return CreateIntegrationInstanceResponse
|
|
287
287
|
* @throws OciError when an error occurs
|
|
288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstance API.
|
|
289
289
|
*/
|
|
290
290
|
createIntegrationInstance(createIntegrationInstanceRequest) {
|
|
291
291
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -344,7 +344,7 @@ class IntegrationInstanceClient {
|
|
|
344
344
|
* @param DeleteIntegrationInstanceRequest
|
|
345
345
|
* @return DeleteIntegrationInstanceResponse
|
|
346
346
|
* @throws OciError when an error occurs
|
|
347
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstance API.
|
|
348
348
|
*/
|
|
349
349
|
deleteIntegrationInstance(deleteIntegrationInstanceRequest) {
|
|
350
350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -404,7 +404,7 @@ class IntegrationInstanceClient {
|
|
|
404
404
|
* @param GetIntegrationInstanceRequest
|
|
405
405
|
* @return GetIntegrationInstanceResponse
|
|
406
406
|
* @throws OciError when an error occurs
|
|
407
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
407
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstance API.
|
|
408
408
|
*/
|
|
409
409
|
getIntegrationInstance(getIntegrationInstanceRequest) {
|
|
410
410
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -467,7 +467,7 @@ class IntegrationInstanceClient {
|
|
|
467
467
|
* @param GetWorkRequestRequest
|
|
468
468
|
* @return GetWorkRequestResponse
|
|
469
469
|
* @throws OciError when an error occurs
|
|
470
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
471
471
|
*/
|
|
472
472
|
getWorkRequest(getWorkRequestRequest) {
|
|
473
473
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -536,7 +536,7 @@ class IntegrationInstanceClient {
|
|
|
536
536
|
* @param ListIntegrationInstancesRequest
|
|
537
537
|
* @return ListIntegrationInstancesResponse
|
|
538
538
|
* @throws OciError when an error occurs
|
|
539
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
539
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstances API.
|
|
540
540
|
*/
|
|
541
541
|
listIntegrationInstances(listIntegrationInstancesRequest) {
|
|
542
542
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -650,7 +650,7 @@ class IntegrationInstanceClient {
|
|
|
650
650
|
* @param ListWorkRequestErrorsRequest
|
|
651
651
|
* @return ListWorkRequestErrorsResponse
|
|
652
652
|
* @throws OciError when an error occurs
|
|
653
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
653
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
654
654
|
*/
|
|
655
655
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
656
656
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -762,7 +762,7 @@ class IntegrationInstanceClient {
|
|
|
762
762
|
* @param ListWorkRequestLogsRequest
|
|
763
763
|
* @return ListWorkRequestLogsResponse
|
|
764
764
|
* @throws OciError when an error occurs
|
|
765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
765
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
766
766
|
*/
|
|
767
767
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
768
768
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -875,7 +875,7 @@ class IntegrationInstanceClient {
|
|
|
875
875
|
* @param ListWorkRequestsRequest
|
|
876
876
|
* @return ListWorkRequestsResponse
|
|
877
877
|
* @throws OciError when an error occurs
|
|
878
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
879
879
|
*/
|
|
880
880
|
listWorkRequests(listWorkRequestsRequest) {
|
|
881
881
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -987,7 +987,7 @@ class IntegrationInstanceClient {
|
|
|
987
987
|
* @param StartIntegrationInstanceRequest
|
|
988
988
|
* @return StartIntegrationInstanceResponse
|
|
989
989
|
* @throws OciError when an error occurs
|
|
990
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
990
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstance API.
|
|
991
991
|
*/
|
|
992
992
|
startIntegrationInstance(startIntegrationInstanceRequest) {
|
|
993
993
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1049,7 +1049,7 @@ class IntegrationInstanceClient {
|
|
|
1049
1049
|
* @param StopIntegrationInstanceRequest
|
|
1050
1050
|
* @return StopIntegrationInstanceResponse
|
|
1051
1051
|
* @throws OciError when an error occurs
|
|
1052
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1052
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstance API.
|
|
1053
1053
|
*/
|
|
1054
1054
|
stopIntegrationInstance(stopIntegrationInstanceRequest) {
|
|
1055
1055
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1110,7 +1110,7 @@ class IntegrationInstanceClient {
|
|
|
1110
1110
|
* @param UpdateIntegrationInstanceRequest
|
|
1111
1111
|
* @return UpdateIntegrationInstanceResponse
|
|
1112
1112
|
* @throws OciError when an error occurs
|
|
1113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1113
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstance API.
|
|
1114
1114
|
*/
|
|
1115
1115
|
updateIntegrationInstance(updateIntegrationInstanceRequest) {
|
|
1116
1116
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Oracle Integration API
|
|
3
|
+
* Oracle Integration API.
|
|
4
|
+
* OpenAPI spec version: 20190131
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Description of an attachments for this instance
|
|
15
|
+
*/
|
|
16
|
+
export interface AttachmentDetails {
|
|
17
|
+
/**
|
|
18
|
+
* The role of the target attachment.
|
|
19
|
+
* * `PARENT` - The target instance is the parent of this attachment.
|
|
20
|
+
* * `CHILD` - The target instance is the child of this attachment.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
"targetRole": AttachmentDetails.TargetRole;
|
|
24
|
+
/**
|
|
25
|
+
* * If role == `PARENT`, the attached instance was created by this service instance
|
|
26
|
+
* * If role == `CHILD`, this instance was created from attached instance on behalf of a user
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
"isImplicit": boolean;
|
|
30
|
+
/**
|
|
31
|
+
* The OCID of the target instance (which could be any other OCI PaaS/SaaS resource), to which this instance is attached.
|
|
32
|
+
*/
|
|
33
|
+
"targetId": string;
|
|
34
|
+
/**
|
|
35
|
+
* The dataplane instance URL of the attached instance
|
|
36
|
+
*/
|
|
37
|
+
"targetInstanceUrl": string;
|
|
38
|
+
/**
|
|
39
|
+
* The type of the target instance, such as \"FUSION\".
|
|
40
|
+
*/
|
|
41
|
+
"targetServiceType": string;
|
|
42
|
+
}
|
|
43
|
+
export declare namespace AttachmentDetails {
|
|
44
|
+
enum TargetRole {
|
|
45
|
+
Parent = "PARENT",
|
|
46
|
+
Child = "CHILD",
|
|
47
|
+
/**
|
|
48
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
49
|
+
* version of the SDK.
|
|
50
|
+
*/
|
|
51
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
52
|
+
}
|
|
53
|
+
function getJsonObj(obj: AttachmentDetails): object;
|
|
54
|
+
function getDeserializedJsonObj(obj: AttachmentDetails): object;
|
|
55
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Oracle Integration API
|
|
4
|
+
* Oracle Integration API.
|
|
5
|
+
* OpenAPI spec version: 20190131
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AttachmentDetails = void 0;
|
|
16
|
+
var AttachmentDetails;
|
|
17
|
+
(function (AttachmentDetails) {
|
|
18
|
+
let TargetRole;
|
|
19
|
+
(function (TargetRole) {
|
|
20
|
+
TargetRole["Parent"] = "PARENT";
|
|
21
|
+
TargetRole["Child"] = "CHILD";
|
|
22
|
+
/**
|
|
23
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
24
|
+
* version of the SDK.
|
|
25
|
+
*/
|
|
26
|
+
TargetRole["UnknownValue"] = "UNKNOWN_VALUE";
|
|
27
|
+
})(TargetRole = AttachmentDetails.TargetRole || (AttachmentDetails.TargetRole = {}));
|
|
28
|
+
function getJsonObj(obj) {
|
|
29
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
30
|
+
return jsonObj;
|
|
31
|
+
}
|
|
32
|
+
AttachmentDetails.getJsonObj = getJsonObj;
|
|
33
|
+
function getDeserializedJsonObj(obj) {
|
|
34
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
35
|
+
return jsonObj;
|
|
36
|
+
}
|
|
37
|
+
AttachmentDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
38
|
+
})(AttachmentDetails = exports.AttachmentDetails || (exports.AttachmentDetails = {}));
|
|
39
|
+
//# sourceMappingURL=attachment-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachment-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/attachment-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoCH,IAAiB,iBAAiB,CAqBjC;AArBD,WAAiB,iBAAiB;IAChC,IAAY,UAQX;IARD,WAAY,UAAU;QACpB,+BAAiB,CAAA;QACjB,6BAAe,CAAA;QACf;;;WAGG;QACH,4CAA8B,CAAA;IAChC,CAAC,EARW,UAAU,GAAV,4BAAU,KAAV,4BAAU,QAQrB;IAED,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAsB,yBAIrC,CAAA;AACH,CAAC,EArBgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAqBjC"}
|
|
@@ -12,9 +12,13 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
* Input payload to update an Integration instance endpoint details. An empty payload will clear out any existing configuration.
|
|
16
|
+
* <p>
|
|
17
|
+
Some actions may not be applicable to specific integration types,
|
|
18
|
+
* see [Differences in Instance Management](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/application-integration&id=INTOO-GUID-931B5E33-4FE6-4997-93E5-8748516F46AA__GUID-176E43D5-4116-4828-8120-B929DF2A6B5E)
|
|
19
|
+
* for details.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
18
22
|
export interface ChangeIntegrationInstanceNetworkEndpointDetails {
|
|
19
23
|
"networkEndpointDetails"?: model.PublicEndpointDetails;
|
|
20
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"change-integration-instance-network-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/change-integration-instance-network-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"change-integration-instance-network-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/change-integration-instance-network-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAelC,IAAiB,+CAA+C,CA2B/D;AA3BD,WAAiB,+CAA+C;IAC9D,SAAgB,UAAU,CAAC,GAAoD;QAC7E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,sBAAsB,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,0DAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CACpC,GAAoD;QAEpD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,sBAAsB,CAAC;gBACjF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sEAAsB,yBAarC,CAAA;AACH,CAAC,EA3BgB,+CAA+C,GAA/C,uDAA+C,KAA/C,uDAA+C,QA2B/D"}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
/**
|
|
15
15
|
* The information about new IntegrationInstance.
|
|
16
|
+
* Some properties may not be applicable to specific integration types,
|
|
17
|
+
* see [Differences in Instance Management](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/application-integration&id=INTOO-GUID-931B5E33-4FE6-4997-93E5-8748516F46AA__GUID-176E43D5-4116-4828-8120-B929DF2A6B5E)
|
|
18
|
+
* for details.
|
|
19
|
+
*
|
|
16
20
|
*/
|
|
17
21
|
export interface CreateIntegrationInstanceDetails {
|
|
18
22
|
/**
|
|
@@ -24,7 +28,10 @@ export interface CreateIntegrationInstanceDetails {
|
|
|
24
28
|
*/
|
|
25
29
|
"compartmentId": string;
|
|
26
30
|
/**
|
|
27
|
-
* Standard or Enterprise type
|
|
31
|
+
* Standard or Enterprise type,
|
|
32
|
+
* Oracle Integration Generation 2 uses ENTERPRISE and STANDARD,
|
|
33
|
+
* Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
|
34
|
+
*
|
|
28
35
|
*/
|
|
29
36
|
"integrationInstanceType": CreateIntegrationInstanceDetails.IntegrationInstanceType;
|
|
30
37
|
/**
|
|
@@ -79,17 +86,27 @@ export interface CreateIntegrationInstanceDetails {
|
|
|
79
86
|
*/
|
|
80
87
|
"isFileServerEnabled"?: boolean;
|
|
81
88
|
"networkEndpointDetails"?: model.PublicEndpointDetails;
|
|
89
|
+
/**
|
|
90
|
+
* Shape
|
|
91
|
+
*/
|
|
92
|
+
"shape"?: CreateIntegrationInstanceDetails.Shape;
|
|
82
93
|
}
|
|
83
94
|
export declare namespace CreateIntegrationInstanceDetails {
|
|
84
95
|
enum IntegrationInstanceType {
|
|
85
96
|
Standard = "STANDARD",
|
|
86
|
-
Enterprise = "ENTERPRISE"
|
|
97
|
+
Enterprise = "ENTERPRISE",
|
|
98
|
+
Standardx = "STANDARDX",
|
|
99
|
+
Enterprisex = "ENTERPRISEX"
|
|
87
100
|
}
|
|
88
101
|
enum ConsumptionModel {
|
|
89
102
|
Ucm = "UCM",
|
|
90
103
|
Gov = "GOV",
|
|
91
104
|
Oic4Saas = "OIC4SAAS"
|
|
92
105
|
}
|
|
106
|
+
enum Shape {
|
|
107
|
+
Development = "DEVELOPMENT",
|
|
108
|
+
Production = "PRODUCTION"
|
|
109
|
+
}
|
|
93
110
|
function getJsonObj(obj: CreateIntegrationInstanceDetails): object;
|
|
94
111
|
function getDeserializedJsonObj(obj: CreateIntegrationInstanceDetails): object;
|
|
95
112
|
}
|
|
@@ -39,6 +39,8 @@ var CreateIntegrationInstanceDetails;
|
|
|
39
39
|
(function (IntegrationInstanceType) {
|
|
40
40
|
IntegrationInstanceType["Standard"] = "STANDARD";
|
|
41
41
|
IntegrationInstanceType["Enterprise"] = "ENTERPRISE";
|
|
42
|
+
IntegrationInstanceType["Standardx"] = "STANDARDX";
|
|
43
|
+
IntegrationInstanceType["Enterprisex"] = "ENTERPRISEX";
|
|
42
44
|
})(IntegrationInstanceType = CreateIntegrationInstanceDetails.IntegrationInstanceType || (CreateIntegrationInstanceDetails.IntegrationInstanceType = {}));
|
|
43
45
|
let ConsumptionModel;
|
|
44
46
|
(function (ConsumptionModel) {
|
|
@@ -46,6 +48,11 @@ var CreateIntegrationInstanceDetails;
|
|
|
46
48
|
ConsumptionModel["Gov"] = "GOV";
|
|
47
49
|
ConsumptionModel["Oic4Saas"] = "OIC4SAAS";
|
|
48
50
|
})(ConsumptionModel = CreateIntegrationInstanceDetails.ConsumptionModel || (CreateIntegrationInstanceDetails.ConsumptionModel = {}));
|
|
51
|
+
let Shape;
|
|
52
|
+
(function (Shape) {
|
|
53
|
+
Shape["Development"] = "DEVELOPMENT";
|
|
54
|
+
Shape["Production"] = "PRODUCTION";
|
|
55
|
+
})(Shape = CreateIntegrationInstanceDetails.Shape || (CreateIntegrationInstanceDetails.Shape = {}));
|
|
49
56
|
function getJsonObj(obj) {
|
|
50
57
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
58
|
"customEndpoint": obj.customEndpoint
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-integration-instance-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/create-integration-instance-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"create-integration-instance-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/create-integration-instance-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8ElC,IAAiB,gCAAgC,CA6DhD;AA7DD,WAAiB,gCAAgC;IAC/C,IAAY,uBAKX;IALD,WAAY,uBAAuB;QACjC,gDAAqB,CAAA;QACrB,oDAAyB,CAAA;QACzB,kDAAuB,CAAA;QACvB,sDAA2B,CAAA;IAC7B,CAAC,EALW,uBAAuB,GAAvB,wDAAuB,KAAvB,wDAAuB,QAKlC;IAED,IAAY,gBAIX;IAJD,WAAY,gBAAgB;QAC1B,+BAAW,CAAA;QACX,+BAAW,CAAA;QACX,yCAAqB,CAAA;IACvB,CAAC,EAJW,gBAAgB,GAAhB,iDAAgB,KAAhB,iDAAgB,QAI3B;IAED,IAAY,KAGX;IAHD,WAAY,KAAK;QACf,oCAA2B,CAAA;QAC3B,kCAAyB,CAAA;IAC3B,CAAC,EAHW,KAAK,GAAL,sCAAK,KAAL,sCAAK,QAGhB;IAED,SAAgB,UAAU,CAAC,GAAqC;QAC9D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC;gBAClE,CAAC,CAAC,SAAS;YACb,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtC,OAAO,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAAC,sBAAsB,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IApBe,2CAAU,aAoBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqC;QAC1E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,GAAG,CAAC,cAAc,CAAC;gBAC9E,CAAC,CAAC,SAAS;YACb,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtC,OAAO,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAAC,sBAAsB,CAAC;gBACjF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IApBe,uDAAsB,yBAoBrC,CAAA;AACH,CAAC,EA7DgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QA6DhD"}
|
|
@@ -28,6 +28,11 @@ export interface CustomEndpointDetails {
|
|
|
28
28
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
29
29
|
*/
|
|
30
30
|
"certificateSecretVersion"?: number;
|
|
31
|
+
/**
|
|
32
|
+
* When creating the DNS CNAME record for the custom hostname, this value must be specified in the rdata.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"alias"?: string;
|
|
31
36
|
}
|
|
32
37
|
export declare namespace CustomEndpointDetails {
|
|
33
38
|
function getJsonObj(obj: CustomEndpointDetails): object;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/custom-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"custom-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/custom-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA8BH,IAAiB,qBAAqB,CAWrC;AAXD,WAAiB,qBAAqB;IACpC,SAAgB,UAAU,CAAC,GAA0B;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA0B;QAC/D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAWrC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Oracle Integration API
|
|
3
|
+
* Oracle Integration API.
|
|
4
|
+
* OpenAPI spec version: 20190131
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Information for IDCS access
|
|
15
|
+
*/
|
|
16
|
+
export interface IdcsInfoDetails {
|
|
17
|
+
/**
|
|
18
|
+
* URL for the location of the IDCS Application (used by IDCS APIs)
|
|
19
|
+
*/
|
|
20
|
+
"idcsAppLocationUrl": string;
|
|
21
|
+
/**
|
|
22
|
+
* The IDCS application display name associated with the instance
|
|
23
|
+
*/
|
|
24
|
+
"idcsAppDisplayName": string;
|
|
25
|
+
/**
|
|
26
|
+
* The IDCS application ID associated with the instance
|
|
27
|
+
*/
|
|
28
|
+
"idcsAppId": string;
|
|
29
|
+
/**
|
|
30
|
+
* The IDCS application name associated with the instance
|
|
31
|
+
*/
|
|
32
|
+
"idcsAppName": string;
|
|
33
|
+
/**
|
|
34
|
+
* The URL used as the primary audience for integration flows in this instance
|
|
35
|
+
* type: string
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
"instancePrimaryAudienceUrl": string;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace IdcsInfoDetails {
|
|
41
|
+
function getJsonObj(obj: IdcsInfoDetails): object;
|
|
42
|
+
function getDeserializedJsonObj(obj: IdcsInfoDetails): object;
|
|
43
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Oracle Integration API
|
|
4
|
+
* Oracle Integration API.
|
|
5
|
+
* OpenAPI spec version: 20190131
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.IdcsInfoDetails = void 0;
|
|
16
|
+
var IdcsInfoDetails;
|
|
17
|
+
(function (IdcsInfoDetails) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
IdcsInfoDetails.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
IdcsInfoDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(IdcsInfoDetails = exports.IdcsInfoDetails || (exports.IdcsInfoDetails = {}));
|
|
29
|
+
//# sourceMappingURL=idcs-info-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"idcs-info-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/idcs-info-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiCH,IAAiB,eAAe,CAW/B;AAXD,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAW/B"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
+
import * as AttachmentDetails from "./attachment-details";
|
|
14
|
+
export import AttachmentDetails = AttachmentDetails.AttachmentDetails;
|
|
13
15
|
import * as ChangeIntegrationInstanceCompartmentDetails from "./change-integration-instance-compartment-details";
|
|
14
16
|
export import ChangeIntegrationInstanceCompartmentDetails = ChangeIntegrationInstanceCompartmentDetails.ChangeIntegrationInstanceCompartmentDetails;
|
|
15
17
|
import * as ChangeIntegrationInstanceNetworkEndpointDetails from "./change-integration-instance-network-endpoint-details";
|
|
@@ -20,6 +22,8 @@ import * as CreateIntegrationInstanceDetails from "./create-integration-instance
|
|
|
20
22
|
export import CreateIntegrationInstanceDetails = CreateIntegrationInstanceDetails.CreateIntegrationInstanceDetails;
|
|
21
23
|
import * as CustomEndpointDetails from "./custom-endpoint-details";
|
|
22
24
|
export import CustomEndpointDetails = CustomEndpointDetails.CustomEndpointDetails;
|
|
25
|
+
import * as IdcsInfoDetails from "./idcs-info-details";
|
|
26
|
+
export import IdcsInfoDetails = IdcsInfoDetails.IdcsInfoDetails;
|
|
23
27
|
import * as IntegrationInstance from "./integration-instance";
|
|
24
28
|
export import IntegrationInstance = IntegrationInstance.IntegrationInstance;
|
|
25
29
|
import * as IntegrationInstanceSummary from "./integration-instance-summary";
|
package/lib/model/index.js
CHANGED
|
@@ -31,7 +31,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.PublicEndpointDetails = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VirtualCloudNetwork = exports.UpdateIntegrationInstanceDetails = exports.UpdateCustomEndpointDetails = exports.NetworkEndpointType = exports.NetworkEndpointDetails = exports.IntegrationInstanceSummary = exports.IntegrationInstance = exports.CustomEndpointDetails = exports.CreateIntegrationInstanceDetails = exports.CreateCustomEndpointDetails = exports.ChangeIntegrationInstanceNetworkEndpointDetails = exports.ChangeIntegrationInstanceCompartmentDetails = void 0;
|
|
34
|
+
exports.PublicEndpointDetails = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.VirtualCloudNetwork = exports.UpdateIntegrationInstanceDetails = exports.UpdateCustomEndpointDetails = exports.NetworkEndpointType = exports.NetworkEndpointDetails = exports.IntegrationInstanceSummary = exports.IntegrationInstance = exports.IdcsInfoDetails = exports.CustomEndpointDetails = exports.CreateIntegrationInstanceDetails = exports.CreateCustomEndpointDetails = exports.ChangeIntegrationInstanceNetworkEndpointDetails = exports.ChangeIntegrationInstanceCompartmentDetails = exports.AttachmentDetails = void 0;
|
|
35
|
+
const AttachmentDetails = __importStar(require("./attachment-details"));
|
|
36
|
+
exports.AttachmentDetails = AttachmentDetails.AttachmentDetails;
|
|
35
37
|
const ChangeIntegrationInstanceCompartmentDetails = __importStar(require("./change-integration-instance-compartment-details"));
|
|
36
38
|
exports.ChangeIntegrationInstanceCompartmentDetails = ChangeIntegrationInstanceCompartmentDetails.ChangeIntegrationInstanceCompartmentDetails;
|
|
37
39
|
const ChangeIntegrationInstanceNetworkEndpointDetails = __importStar(require("./change-integration-instance-network-endpoint-details"));
|
|
@@ -42,6 +44,8 @@ const CreateIntegrationInstanceDetails = __importStar(require("./create-integrat
|
|
|
42
44
|
exports.CreateIntegrationInstanceDetails = CreateIntegrationInstanceDetails.CreateIntegrationInstanceDetails;
|
|
43
45
|
const CustomEndpointDetails = __importStar(require("./custom-endpoint-details"));
|
|
44
46
|
exports.CustomEndpointDetails = CustomEndpointDetails.CustomEndpointDetails;
|
|
47
|
+
const IdcsInfoDetails = __importStar(require("./idcs-info-details"));
|
|
48
|
+
exports.IdcsInfoDetails = IdcsInfoDetails.IdcsInfoDetails;
|
|
45
49
|
const IntegrationInstance = __importStar(require("./integration-instance"));
|
|
46
50
|
exports.IntegrationInstance = IntegrationInstance.IntegrationInstance;
|
|
47
51
|
const IntegrationInstanceSummary = __importStar(require("./integration-instance-summary"));
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,+HAAiH;AACnG,QAAA,2CAA2C,GAAG,2CAA2C,CAAC,2CAA2C,CAAC;AACpJ,wIAA0H;AAC5G,QAAA,+CAA+C,GAAG,+CAA+C,CAAC,+CAA+C,CAAC;AAChK,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,wGAA0F;AAC5E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,4EAA8D;AAChD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,wGAA0F;AAC5E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAEzE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,+HAAiH;AACnG,QAAA,2CAA2C,GAAG,2CAA2C,CAAC,2CAA2C,CAAC;AACpJ,wIAA0H;AAC5G,QAAA,+CAA+C,GAAG,+CAA+C,CAAC,+CAA+C,CAAC;AAChK,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,wGAA0F;AAC5E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,4EAA8D;AAChD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,wGAA0F;AAC5E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAEzE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC"}
|
|
@@ -28,7 +28,10 @@ export interface IntegrationInstanceSummary {
|
|
|
28
28
|
*/
|
|
29
29
|
"compartmentId": string;
|
|
30
30
|
/**
|
|
31
|
-
* Standard or Enterprise type
|
|
31
|
+
* Standard or Enterprise type,
|
|
32
|
+
* Oracle Integration Generation 2 uses ENTERPRISE and STANDARD,
|
|
33
|
+
* Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
|
34
|
+
*
|
|
32
35
|
*/
|
|
33
36
|
"integrationInstanceType": IntegrationInstanceSummary.IntegrationInstanceType;
|
|
34
37
|
/**
|
|
@@ -78,11 +81,37 @@ export interface IntegrationInstanceSummary {
|
|
|
78
81
|
*/
|
|
79
82
|
"consumptionModel"?: IntegrationInstanceSummary.ConsumptionModel;
|
|
80
83
|
"networkEndpointDetails"?: model.PublicEndpointDetails;
|
|
84
|
+
/**
|
|
85
|
+
* Simple key-value pair that is applied without any predefined name,
|
|
86
|
+
* type or scope. Exists for cross-compatibility only.
|
|
87
|
+
* Example: `{\"bar-key\": \"value\"}`
|
|
88
|
+
*
|
|
89
|
+
*/
|
|
90
|
+
"freeformTags"?: {
|
|
91
|
+
[key: string]: string;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Usage of predefined tag keys. These predefined keys are scoped to
|
|
95
|
+
* namespaces.
|
|
96
|
+
* Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
|
|
97
|
+
*
|
|
98
|
+
*/
|
|
99
|
+
"definedTags"?: {
|
|
100
|
+
[key: string]: {
|
|
101
|
+
[key: string]: any;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Shape
|
|
106
|
+
*/
|
|
107
|
+
"shape"?: IntegrationInstanceSummary.Shape;
|
|
81
108
|
}
|
|
82
109
|
export declare namespace IntegrationInstanceSummary {
|
|
83
110
|
enum IntegrationInstanceType {
|
|
84
111
|
Standard = "STANDARD",
|
|
85
112
|
Enterprise = "ENTERPRISE",
|
|
113
|
+
Standardx = "STANDARDX",
|
|
114
|
+
Enterprisex = "ENTERPRISEX",
|
|
86
115
|
/**
|
|
87
116
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
88
117
|
* version of the SDK.
|
|
@@ -113,6 +142,15 @@ export declare namespace IntegrationInstanceSummary {
|
|
|
113
142
|
*/
|
|
114
143
|
UnknownValue = "UNKNOWN_VALUE"
|
|
115
144
|
}
|
|
145
|
+
enum Shape {
|
|
146
|
+
Development = "DEVELOPMENT",
|
|
147
|
+
Production = "PRODUCTION",
|
|
148
|
+
/**
|
|
149
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
150
|
+
* version of the SDK.
|
|
151
|
+
*/
|
|
152
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
153
|
+
}
|
|
116
154
|
function getJsonObj(obj: IntegrationInstanceSummary): object;
|
|
117
155
|
function getDeserializedJsonObj(obj: IntegrationInstanceSummary): object;
|
|
118
156
|
}
|
|
@@ -39,6 +39,8 @@ var IntegrationInstanceSummary;
|
|
|
39
39
|
(function (IntegrationInstanceType) {
|
|
40
40
|
IntegrationInstanceType["Standard"] = "STANDARD";
|
|
41
41
|
IntegrationInstanceType["Enterprise"] = "ENTERPRISE";
|
|
42
|
+
IntegrationInstanceType["Standardx"] = "STANDARDX";
|
|
43
|
+
IntegrationInstanceType["Enterprisex"] = "ENTERPRISEX";
|
|
42
44
|
/**
|
|
43
45
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
44
46
|
* version of the SDK.
|
|
@@ -71,6 +73,16 @@ var IntegrationInstanceSummary;
|
|
|
71
73
|
*/
|
|
72
74
|
ConsumptionModel["UnknownValue"] = "UNKNOWN_VALUE";
|
|
73
75
|
})(ConsumptionModel = IntegrationInstanceSummary.ConsumptionModel || (IntegrationInstanceSummary.ConsumptionModel = {}));
|
|
76
|
+
let Shape;
|
|
77
|
+
(function (Shape) {
|
|
78
|
+
Shape["Development"] = "DEVELOPMENT";
|
|
79
|
+
Shape["Production"] = "PRODUCTION";
|
|
80
|
+
/**
|
|
81
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
82
|
+
* version of the SDK.
|
|
83
|
+
*/
|
|
84
|
+
Shape["UnknownValue"] = "UNKNOWN_VALUE";
|
|
85
|
+
})(Shape = IntegrationInstanceSummary.Shape || (IntegrationInstanceSummary.Shape = {}));
|
|
74
86
|
function getJsonObj(obj) {
|
|
75
87
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
76
88
|
"customEndpoint": obj.customEndpoint
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/integration-instance-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"integration-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/integration-instance-summary.ts"],"names":[],"mappings":"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"}
|
|
@@ -28,7 +28,10 @@ export interface IntegrationInstance {
|
|
|
28
28
|
*/
|
|
29
29
|
"compartmentId": string;
|
|
30
30
|
/**
|
|
31
|
-
* Standard or Enterprise type
|
|
31
|
+
* Standard or Enterprise type,
|
|
32
|
+
* Oracle Integration Generation 2 uses ENTERPRISE and STANDARD,
|
|
33
|
+
* Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
|
34
|
+
*
|
|
32
35
|
*/
|
|
33
36
|
"integrationInstanceType": IntegrationInstance.IntegrationInstanceType;
|
|
34
37
|
/**
|
|
@@ -98,11 +101,23 @@ export interface IntegrationInstance {
|
|
|
98
101
|
*/
|
|
99
102
|
"consumptionModel"?: IntegrationInstance.ConsumptionModel;
|
|
100
103
|
"networkEndpointDetails"?: model.PublicEndpointDetails;
|
|
104
|
+
"idcsInfo"?: model.IdcsInfoDetails;
|
|
105
|
+
/**
|
|
106
|
+
* A list of associated attachments to other services
|
|
107
|
+
*
|
|
108
|
+
*/
|
|
109
|
+
"attachments"?: Array<model.AttachmentDetails>;
|
|
110
|
+
/**
|
|
111
|
+
* Shape
|
|
112
|
+
*/
|
|
113
|
+
"shape"?: IntegrationInstance.Shape;
|
|
101
114
|
}
|
|
102
115
|
export declare namespace IntegrationInstance {
|
|
103
116
|
enum IntegrationInstanceType {
|
|
104
117
|
Standard = "STANDARD",
|
|
105
118
|
Enterprise = "ENTERPRISE",
|
|
119
|
+
Standardx = "STANDARDX",
|
|
120
|
+
Enterprisex = "ENTERPRISEX",
|
|
106
121
|
/**
|
|
107
122
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
108
123
|
* version of the SDK.
|
|
@@ -133,6 +148,15 @@ export declare namespace IntegrationInstance {
|
|
|
133
148
|
*/
|
|
134
149
|
UnknownValue = "UNKNOWN_VALUE"
|
|
135
150
|
}
|
|
151
|
+
enum Shape {
|
|
152
|
+
Development = "DEVELOPMENT",
|
|
153
|
+
Production = "PRODUCTION",
|
|
154
|
+
/**
|
|
155
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
156
|
+
* version of the SDK.
|
|
157
|
+
*/
|
|
158
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
159
|
+
}
|
|
136
160
|
function getJsonObj(obj: IntegrationInstance): object;
|
|
137
161
|
function getDeserializedJsonObj(obj: IntegrationInstance): object;
|
|
138
162
|
}
|
|
@@ -39,6 +39,8 @@ var IntegrationInstance;
|
|
|
39
39
|
(function (IntegrationInstanceType) {
|
|
40
40
|
IntegrationInstanceType["Standard"] = "STANDARD";
|
|
41
41
|
IntegrationInstanceType["Enterprise"] = "ENTERPRISE";
|
|
42
|
+
IntegrationInstanceType["Standardx"] = "STANDARDX";
|
|
43
|
+
IntegrationInstanceType["Enterprisex"] = "ENTERPRISEX";
|
|
42
44
|
/**
|
|
43
45
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
44
46
|
* version of the SDK.
|
|
@@ -71,6 +73,16 @@ var IntegrationInstance;
|
|
|
71
73
|
*/
|
|
72
74
|
ConsumptionModel["UnknownValue"] = "UNKNOWN_VALUE";
|
|
73
75
|
})(ConsumptionModel = IntegrationInstance.ConsumptionModel || (IntegrationInstance.ConsumptionModel = {}));
|
|
76
|
+
let Shape;
|
|
77
|
+
(function (Shape) {
|
|
78
|
+
Shape["Development"] = "DEVELOPMENT";
|
|
79
|
+
Shape["Production"] = "PRODUCTION";
|
|
80
|
+
/**
|
|
81
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
82
|
+
* version of the SDK.
|
|
83
|
+
*/
|
|
84
|
+
Shape["UnknownValue"] = "UNKNOWN_VALUE";
|
|
85
|
+
})(Shape = IntegrationInstance.Shape || (IntegrationInstance.Shape = {}));
|
|
74
86
|
function getJsonObj(obj) {
|
|
75
87
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
76
88
|
"customEndpoint": obj.customEndpoint
|
|
@@ -83,6 +95,12 @@ var IntegrationInstance;
|
|
|
83
95
|
: undefined,
|
|
84
96
|
"networkEndpointDetails": obj.networkEndpointDetails
|
|
85
97
|
? model.NetworkEndpointDetails.getJsonObj(obj.networkEndpointDetails)
|
|
98
|
+
: undefined,
|
|
99
|
+
"idcsInfo": obj.idcsInfo ? model.IdcsInfoDetails.getJsonObj(obj.idcsInfo) : undefined,
|
|
100
|
+
"attachments": obj.attachments
|
|
101
|
+
? obj.attachments.map(item => {
|
|
102
|
+
return model.AttachmentDetails.getJsonObj(item);
|
|
103
|
+
})
|
|
86
104
|
: undefined
|
|
87
105
|
});
|
|
88
106
|
return jsonObj;
|
|
@@ -100,6 +118,14 @@ var IntegrationInstance;
|
|
|
100
118
|
: undefined,
|
|
101
119
|
"networkEndpointDetails": obj.networkEndpointDetails
|
|
102
120
|
? model.NetworkEndpointDetails.getDeserializedJsonObj(obj.networkEndpointDetails)
|
|
121
|
+
: undefined,
|
|
122
|
+
"idcsInfo": obj.idcsInfo
|
|
123
|
+
? model.IdcsInfoDetails.getDeserializedJsonObj(obj.idcsInfo)
|
|
124
|
+
: undefined,
|
|
125
|
+
"attachments": obj.attachments
|
|
126
|
+
? obj.attachments.map(item => {
|
|
127
|
+
return model.AttachmentDetails.getDeserializedJsonObj(item);
|
|
128
|
+
})
|
|
103
129
|
: undefined
|
|
104
130
|
});
|
|
105
131
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration-instance.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/integration-instance.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"integration-instance.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/integration-instance.ts"],"names":[],"mappings":"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"}
|
|
@@ -33,6 +33,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
34
|
exports.NetworkEndpointDetails = void 0;
|
|
35
35
|
const model = __importStar(require("../model"));
|
|
36
|
+
const common = require("oci-common");
|
|
36
37
|
var NetworkEndpointDetails;
|
|
37
38
|
(function (NetworkEndpointDetails) {
|
|
38
39
|
function getJsonObj(obj) {
|
|
@@ -42,7 +43,8 @@ var NetworkEndpointDetails;
|
|
|
42
43
|
case "PUBLIC":
|
|
43
44
|
return model.PublicEndpointDetails.getJsonObj(jsonObj, true);
|
|
44
45
|
default:
|
|
45
|
-
|
|
46
|
+
if (common.LOG.logger)
|
|
47
|
+
common.LOG.logger.info(`Unknown value for: ${obj.networkEndpointType}`);
|
|
46
48
|
}
|
|
47
49
|
}
|
|
48
50
|
return jsonObj;
|
|
@@ -55,7 +57,8 @@ var NetworkEndpointDetails;
|
|
|
55
57
|
case "PUBLIC":
|
|
56
58
|
return model.PublicEndpointDetails.getDeserializedJsonObj(jsonObj, true);
|
|
57
59
|
default:
|
|
58
|
-
|
|
60
|
+
if (common.LOG.logger)
|
|
61
|
+
common.LOG.logger.info(`Unknown value for: ${obj.networkEndpointType}`);
|
|
59
62
|
}
|
|
60
63
|
}
|
|
61
64
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/network-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"network-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/network-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAUtC,IAAiB,sBAAsB,CAmCtC;AAnCD,WAAiB,sBAAsB;IACrC,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,qBAAqB,IAAI,GAAG,IAAI,GAAG,CAAC,mBAAmB,EAAE;YAClE,QAAQ,GAAG,CAAC,mBAAmB,EAAE;gBAC/B,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,qBAAqB,CAAC,UAAU,CACL,OAAQ,EAC9C,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBACnB,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,mBAAmB,EAAE,CAAC,CAAC;aAC7E;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,iCAAU,aAgBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,qBAAqB,IAAI,GAAG,IAAI,GAAG,CAAC,mBAAmB,EAAE;YAClE,QAAQ,GAAG,CAAC,mBAAmB,EAAE;gBAC/B,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjB,OAAQ,EAC9C,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBACnB,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,mBAAmB,EAAE,CAAC,CAAC;aAC7E;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,6CAAsB,yBAgBrC,CAAA;AACH,CAAC,EAnCgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAmCtC"}
|
|
@@ -17,7 +17,8 @@ import * as model from "../model";
|
|
|
17
17
|
*/
|
|
18
18
|
export interface PublicEndpointDetails extends model.NetworkEndpointDetails {
|
|
19
19
|
/**
|
|
20
|
-
* Source IP addresses or IP address ranges ingress rules.
|
|
20
|
+
* Source IP addresses or IP address ranges ingress rules. (ex: \"168.122.59.5\", \"10.20.30.0/26\")
|
|
21
|
+
* An invalid IP or CIDR block will result in a 400 response.
|
|
21
22
|
*
|
|
22
23
|
*/
|
|
23
24
|
"allowlistedHttpIps"?: Array<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/public-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"public-endpoint-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/public-endpoint-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA2BlC,IAAiB,qBAAqB,CAqCrC;AArCD,WAAiB,qBAAqB;IACpC,SAAgB,UAAU,CAAC,GAA0B,EAAE,eAAyB;QAC9E,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,sBAAsB,CAAC,UAAU,CAAC,GAAG,CAA2B,CAAC,GACzE;YACD,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACjC,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,gCAAU,aAezB,CAAA;IACY,yCAAmB,GAAG,QAAQ,CAAC;IAC5C,SAAgB,sBAAsB,CACpC,GAA0B,EAC1B,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,sBAAsB,CAAC,sBAAsB,CAAC,GAAG,CAA2B,CAAC,GACrF;YACD,qBAAqB,EAAE,GAAG,CAAC,mBAAmB;gBAC5C,CAAC,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACjC,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,4CAAsB,yBAkBrC,CAAA;AACH,CAAC,EArCgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAqCrC"}
|
|
@@ -12,15 +12,23 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
* The information to be updated.
|
|
16
|
+
* <p>
|
|
17
|
+
Some properties may not be applicable to specific integration types,
|
|
18
|
+
* see [Differences in Instance Management](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/application-integration&id=INTOO-GUID-931B5E33-4FE6-4997-93E5-8748516F46AA__GUID-176E43D5-4116-4828-8120-B929DF2A6B5E)
|
|
19
|
+
* for details.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
17
22
|
export interface UpdateIntegrationInstanceDetails {
|
|
18
23
|
/**
|
|
19
24
|
* Integration Instance Identifier.
|
|
20
25
|
*/
|
|
21
26
|
"displayName"?: string;
|
|
22
27
|
/**
|
|
23
|
-
* Standard or Enterprise type
|
|
28
|
+
* Standard or Enterprise type,
|
|
29
|
+
* Oracle Integration Generation 2 uses ENTERPRISE and STANDARD,
|
|
30
|
+
* Oracle Integration 3 uses ENTERPRISEX and STANDARDX
|
|
31
|
+
*
|
|
24
32
|
*/
|
|
25
33
|
"integrationInstanceType"?: UpdateIntegrationInstanceDetails.IntegrationInstanceType;
|
|
26
34
|
/**
|
|
@@ -70,7 +78,9 @@ export interface UpdateIntegrationInstanceDetails {
|
|
|
70
78
|
export declare namespace UpdateIntegrationInstanceDetails {
|
|
71
79
|
enum IntegrationInstanceType {
|
|
72
80
|
Standard = "STANDARD",
|
|
73
|
-
Enterprise = "ENTERPRISE"
|
|
81
|
+
Enterprise = "ENTERPRISE",
|
|
82
|
+
Standardx = "STANDARDX",
|
|
83
|
+
Enterprisex = "ENTERPRISEX"
|
|
74
84
|
}
|
|
75
85
|
function getJsonObj(obj: UpdateIntegrationInstanceDetails): object;
|
|
76
86
|
function getDeserializedJsonObj(obj: UpdateIntegrationInstanceDetails): object;
|
|
@@ -39,6 +39,8 @@ var UpdateIntegrationInstanceDetails;
|
|
|
39
39
|
(function (IntegrationInstanceType) {
|
|
40
40
|
IntegrationInstanceType["Standard"] = "STANDARD";
|
|
41
41
|
IntegrationInstanceType["Enterprise"] = "ENTERPRISE";
|
|
42
|
+
IntegrationInstanceType["Standardx"] = "STANDARDX";
|
|
43
|
+
IntegrationInstanceType["Enterprisex"] = "ENTERPRISEX";
|
|
42
44
|
})(IntegrationInstanceType = UpdateIntegrationInstanceDetails.IntegrationInstanceType || (UpdateIntegrationInstanceDetails.IntegrationInstanceType = {}));
|
|
43
45
|
function getJsonObj(obj) {
|
|
44
46
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-integration-instance-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/update-integration-instance-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"update-integration-instance-details.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/update-integration-instance-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8DlC,IAAiB,gCAAgC,CA0ChD;AA1CD,WAAiB,gCAAgC;IAC/C,IAAY,uBAKX;IALD,WAAY,uBAAuB;QACjC,gDAAqB,CAAA;QACrB,oDAAyB,CAAA;QACzB,kDAAuB,CAAA;QACvB,sDAA2B,CAAA;IAC7B,CAAC,EALW,uBAAuB,GAAvB,wDAAuB,KAAvB,wDAAuB,QAKlC;IAED,SAAgB,UAAU,CAAC,GAAqC;QAC9D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC;gBAClE,CAAC,CAAC,SAAS;YACb,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtC,OAAO,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,2CAAU,aAgBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqC;QAC1E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,GAAG,CAAC,cAAc,CAAC;gBAC9E,CAAC,CAAC,SAAS;YACb,0BAA0B,EAAE,GAAG,CAAC,wBAAwB;gBACtD,CAAC,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACtC,OAAO,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,uDAAsB,yBAgBrC,CAAA;AACH,CAAC,EA1CgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QA0ChD"}
|
|
@@ -21,7 +21,8 @@ export interface VirtualCloudNetwork {
|
|
|
21
21
|
*/
|
|
22
22
|
"id": string;
|
|
23
23
|
/**
|
|
24
|
-
* Source IP addresses or IP address ranges ingress rules.
|
|
24
|
+
* Source IP addresses or IP address ranges ingress rules. (ex: \"168.122.59.5\", \"10.20.30.0/26\")
|
|
25
|
+
* An invalid IP or CIDR block will result in a 400 response.
|
|
25
26
|
*
|
|
26
27
|
*/
|
|
27
28
|
"allowlistedIps"?: Array<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"virtual-cloud-network.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/virtual-cloud-network.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"virtual-cloud-network.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/model/virtual-cloud-network.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAuBH,IAAiB,mBAAmB,CAWnC;AAXD,WAAiB,mBAAmB;IAClC,SAAgB,UAAU,CAAC,GAAwB;QACjD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwB;QAC7D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAWnC"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceCompartment.ts.html |here} to see how to use ChangeIntegrationInstanceCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeIntegrationInstanceCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ChangeIntegrationInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeIntegrationInstanceNetworkEndpointRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeIntegrationInstanceNetworkEndpointRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/CreateIntegrationInstance.ts.html |here} to see how to use CreateIntegrationInstanceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateIntegrationInstanceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/DeleteIntegrationInstance.ts.html |here} to see how to use DeleteIntegrationInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteIntegrationInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetIntegrationInstance.ts.html |here} to see how to use GetIntegrationInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetIntegrationInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListIntegrationInstances.ts.html |here} to see how to use ListIntegrationInstancesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListIntegrationInstancesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StartIntegrationInstance.ts.html |here} to see how to use StartIntegrationInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StartIntegrationInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/StopIntegrationInstance.ts.html |here} to see how to use StopIntegrationInstanceRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface StopIntegrationInstanceRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.40.0/integration/UpdateIntegrationInstance.ts.html |here} to see how to use UpdateIntegrationInstanceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateIntegrationInstanceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-integration",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.40.0",
|
|
4
4
|
"description": "OCI NodeJS client for Integration service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.40.0",
|
|
19
|
+
"oci-workrequests": "2.40.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|