oci-integration 2.94.0 → 2.95.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.
Files changed (57) hide show
  1. package/lib/client.d.ts +33 -0
  2. package/lib/client.js +190 -0
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/add-oracle-managed-custom-endpoint-details.d.ts +36 -0
  5. package/lib/model/add-oracle-managed-custom-endpoint-details.js +33 -0
  6. package/lib/model/add-oracle-managed-custom-endpoint-details.js.map +1 -0
  7. package/lib/model/create-integration-instance-details.d.ts +4 -0
  8. package/lib/model/create-integration-instance-details.js.map +1 -1
  9. package/lib/model/cross-region-integration-instance-details.d.ts +48 -0
  10. package/lib/model/cross-region-integration-instance-details.js +40 -0
  11. package/lib/model/cross-region-integration-instance-details.js.map +1 -0
  12. package/lib/model/custom-endpoint-details.d.ts +29 -0
  13. package/lib/model/custom-endpoint-details.js +19 -0
  14. package/lib/model/custom-endpoint-details.js.map +1 -1
  15. package/lib/model/disaster-recovery-details.d.ts +42 -0
  16. package/lib/model/disaster-recovery-details.js +68 -0
  17. package/lib/model/disaster-recovery-details.js.map +1 -0
  18. package/lib/model/index.d.ts +6 -0
  19. package/lib/model/index.js +7 -1
  20. package/lib/model/index.js.map +1 -1
  21. package/lib/model/integration-instance-summary.d.ts +12 -1
  22. package/lib/model/integration-instance-summary.js +0 -1
  23. package/lib/model/integration-instance-summary.js.map +1 -1
  24. package/lib/model/integration-instance.d.ts +13 -1
  25. package/lib/model/integration-instance.js +6 -1
  26. package/lib/model/integration-instance.js.map +1 -1
  27. package/lib/model/work-request-summary.d.ts +3 -0
  28. package/lib/model/work-request-summary.js +3 -0
  29. package/lib/model/work-request-summary.js.map +1 -1
  30. package/lib/model/work-request.d.ts +3 -0
  31. package/lib/model/work-request.js +3 -0
  32. package/lib/model/work-request.js.map +1 -1
  33. package/lib/request/add-oracle-managed-custom-endpoint-request.d.ts +50 -0
  34. package/lib/request/add-oracle-managed-custom-endpoint-request.js +15 -0
  35. package/lib/request/add-oracle-managed-custom-endpoint-request.js.map +1 -0
  36. package/lib/request/disaster-recovery-failover-request.d.ts +45 -0
  37. package/lib/request/disaster-recovery-failover-request.js +15 -0
  38. package/lib/request/disaster-recovery-failover-request.js.map +1 -0
  39. package/lib/request/index.d.ts +6 -0
  40. package/lib/request/index.js.map +1 -1
  41. package/lib/request/list-integration-instances-request.d.ts +1 -2
  42. package/lib/request/list-integration-instances-request.js +0 -1
  43. package/lib/request/list-integration-instances-request.js.map +1 -1
  44. package/lib/request/remove-oracle-managed-custom-endpoint-request.d.ts +45 -0
  45. package/lib/request/remove-oracle-managed-custom-endpoint-request.js +15 -0
  46. package/lib/request/remove-oracle-managed-custom-endpoint-request.js.map +1 -0
  47. package/lib/response/add-oracle-managed-custom-endpoint-response.d.ts +27 -0
  48. package/lib/response/add-oracle-managed-custom-endpoint-response.js +15 -0
  49. package/lib/response/add-oracle-managed-custom-endpoint-response.js.map +1 -0
  50. package/lib/response/disaster-recovery-failover-response.d.ts +27 -0
  51. package/lib/response/disaster-recovery-failover-response.js +15 -0
  52. package/lib/response/disaster-recovery-failover-response.js.map +1 -0
  53. package/lib/response/index.d.ts +6 -0
  54. package/lib/response/remove-oracle-managed-custom-endpoint-response.d.ts +27 -0
  55. package/lib/response/remove-oracle-managed-custom-endpoint-response.js +15 -0
  56. package/lib/response/remove-oracle-managed-custom-endpoint-response.js.map +1 -0
  57. package/package.json +3 -3
@@ -10,6 +10,8 @@
10
10
  * Copyright (c) 2020, 2024, 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 AddOracleManagedCustomEndpointRequest from "./add-oracle-managed-custom-endpoint-request";
14
+ export import AddOracleManagedCustomEndpointRequest = AddOracleManagedCustomEndpointRequest.AddOracleManagedCustomEndpointRequest;
13
15
  import * as ChangeIntegrationInstanceCompartmentRequest from "./change-integration-instance-compartment-request";
14
16
  export import ChangeIntegrationInstanceCompartmentRequest = ChangeIntegrationInstanceCompartmentRequest.ChangeIntegrationInstanceCompartmentRequest;
15
17
  import * as ChangeIntegrationInstanceNetworkEndpointRequest from "./change-integration-instance-network-endpoint-request";
@@ -20,6 +22,8 @@ import * as CreateIntegrationInstanceRequest from "./create-integration-instance
20
22
  export import CreateIntegrationInstanceRequest = CreateIntegrationInstanceRequest.CreateIntegrationInstanceRequest;
21
23
  import * as DeleteIntegrationInstanceRequest from "./delete-integration-instance-request";
22
24
  export import DeleteIntegrationInstanceRequest = DeleteIntegrationInstanceRequest.DeleteIntegrationInstanceRequest;
25
+ import * as DisasterRecoveryFailoverRequest from "./disaster-recovery-failover-request";
26
+ export import DisasterRecoveryFailoverRequest = DisasterRecoveryFailoverRequest.DisasterRecoveryFailoverRequest;
23
27
  import * as EnableProcessAutomationRequest from "./enable-process-automation-request";
24
28
  export import EnableProcessAutomationRequest = EnableProcessAutomationRequest.EnableProcessAutomationRequest;
25
29
  import * as ExtendDataRetentionRequest from "./extend-data-retention-request";
@@ -36,6 +40,8 @@ import * as ListWorkRequestLogsRequest from "./list-work-request-logs-request";
36
40
  export import ListWorkRequestLogsRequest = ListWorkRequestLogsRequest.ListWorkRequestLogsRequest;
37
41
  import * as ListWorkRequestsRequest from "./list-work-requests-request";
38
42
  export import ListWorkRequestsRequest = ListWorkRequestsRequest.ListWorkRequestsRequest;
43
+ import * as RemoveOracleManagedCustomEndpointRequest from "./remove-oracle-managed-custom-endpoint-request";
44
+ export import RemoveOracleManagedCustomEndpointRequest = RemoveOracleManagedCustomEndpointRequest.RemoveOracleManagedCustomEndpointRequest;
39
45
  import * as StartIntegrationInstanceRequest from "./start-integration-instance-request";
40
46
  export import StartIntegrationInstanceRequest = StartIntegrationInstanceRequest.StartIntegrationInstanceRequest;
41
47
  import * as StopIntegrationInstanceRequest from "./stop-integration-instance-request";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAoBH,sGAAwF;AAC1E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAwBH,sGAAwF;AAC1E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC"}
@@ -62,8 +62,7 @@ export declare namespace ListIntegrationInstancesRequest {
62
62
  Inactive = "INACTIVE",
63
63
  Deleting = "DELETING",
64
64
  Deleted = "DELETED",
65
- Failed = "FAILED",
66
- Standby = "STANDBY"
65
+ Failed = "FAILED"
67
66
  }
68
67
  enum SortOrder {
69
68
  Asc = "ASC",
@@ -24,7 +24,6 @@ var ListIntegrationInstancesRequest;
24
24
  LifecycleState["Deleting"] = "DELETING";
25
25
  LifecycleState["Deleted"] = "DELETED";
26
26
  LifecycleState["Failed"] = "FAILED";
27
- LifecycleState["Standby"] = "STANDBY";
28
27
  })(LifecycleState = ListIntegrationInstancesRequest.LifecycleState || (ListIntegrationInstancesRequest.LifecycleState = {}));
29
28
  let SortOrder;
30
29
  (function (SortOrder) {
@@ -1 +1 @@
1
- {"version":3,"file":"list-integration-instances-request.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/request/list-integration-instances-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiDH,IAAiB,+BAA+B,CAqB/C;AArBD,WAAiB,+BAA+B;IAC9C,IAAY,cASX;IATD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB,qCAAmB,CAAA;IACrB,CAAC,EATW,cAAc,GAAd,8CAAc,KAAd,8CAAc,QASzB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,yCAAS,KAAT,yCAAS,QAGpB;IAED,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,sCAAM,KAAN,sCAAM,QAGjB;AACH,CAAC,EArBgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAqB/C"}
1
+ {"version":3,"file":"list-integration-instances-request.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/request/list-integration-instances-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiDH,IAAiB,+BAA+B,CAoB/C;AApBD,WAAiB,+BAA+B;IAC9C,IAAY,cAQX;IARD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;IACnB,CAAC,EARW,cAAc,GAAd,8CAAc,KAAd,8CAAc,QAQzB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,yCAAS,KAAT,yCAAS,QAGpB;IAED,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,sCAAM,KAAN,sCAAM,QAGjB;AACH,CAAC,EApBgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAoB/C"}
@@ -0,0 +1,45 @@
1
+ /**
2
+ *
3
+ *
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, 2024, 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
+ import common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/integration/RemoveOracleManagedCustomEndpoint.ts.html |here} to see how to use RemoveOracleManagedCustomEndpointRequest.
16
+ */
17
+ export interface RemoveOracleManagedCustomEndpointRequest extends common.BaseRequest {
18
+ /**
19
+ * Unique Integration Instance identifier.
20
+ */
21
+ "integrationInstanceId": string;
22
+ /**
23
+ * For optimistic concurrency control. In the PUT or DELETE call
24
+ * for a resource, set the {@code if-match} parameter to the value of the
25
+ * etag from a previous GET or POST response for that resource.
26
+ * The resource will be updated or deleted only if the etag you
27
+ * provide matches the resource's current etag value.
28
+ *
29
+ */
30
+ "ifMatch"?: string;
31
+ /**
32
+ * The client request ID for tracing.
33
+ */
34
+ "opcRequestId"?: string;
35
+ /**
36
+ * A token that uniquely identifies a request so it can be retried in case
37
+ * of a timeout or server error without risk of executing that same action
38
+ * again. Retry tokens expire after 24 hours, but can be invalidated before
39
+ * then due to conflicting operations. For example, if a resource has been
40
+ * deleted and purged from the system, then a retry of the original creation
41
+ * request might be rejected.
42
+ *
43
+ */
44
+ "opcRetryToken"?: string;
45
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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, 2024, 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
+ //# sourceMappingURL=remove-oracle-managed-custom-endpoint-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-oracle-managed-custom-endpoint-request.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/request/remove-oracle-managed-custom-endpoint-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ *
3
+ *
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, 2024, 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
+ export interface AddOracleManagedCustomEndpointResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request.
16
+ * You can use this to query status of the asynchronous operation.
17
+ *
18
+ */
19
+ "opcWorkRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If
22
+ * you need to contact Oracle about a particular request,
23
+ * please provide the request ID.
24
+ *
25
+ */
26
+ "opcRequestId": string;
27
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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, 2024, 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
+ //# sourceMappingURL=add-oracle-managed-custom-endpoint-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-oracle-managed-custom-endpoint-response.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/response/add-oracle-managed-custom-endpoint-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ *
3
+ *
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, 2024, 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
+ export interface DisasterRecoveryFailoverResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request.
16
+ * You can use this to query status of the asynchronous operation.
17
+ *
18
+ */
19
+ "opcWorkRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If
22
+ * you need to contact Oracle about a particular request,
23
+ * please provide the request ID.
24
+ *
25
+ */
26
+ "opcRequestId": string;
27
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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, 2024, 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
+ //# sourceMappingURL=disaster-recovery-failover-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"disaster-recovery-failover-response.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/response/disaster-recovery-failover-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -10,6 +10,8 @@
10
10
  * Copyright (c) 2020, 2024, 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 AddOracleManagedCustomEndpointResponse from "./add-oracle-managed-custom-endpoint-response";
14
+ export import AddOracleManagedCustomEndpointResponse = AddOracleManagedCustomEndpointResponse.AddOracleManagedCustomEndpointResponse;
13
15
  import * as ChangeIntegrationInstanceCompartmentResponse from "./change-integration-instance-compartment-response";
14
16
  export import ChangeIntegrationInstanceCompartmentResponse = ChangeIntegrationInstanceCompartmentResponse.ChangeIntegrationInstanceCompartmentResponse;
15
17
  import * as ChangeIntegrationInstanceNetworkEndpointResponse from "./change-integration-instance-network-endpoint-response";
@@ -20,6 +22,8 @@ import * as CreateIntegrationInstanceResponse from "./create-integration-instanc
20
22
  export import CreateIntegrationInstanceResponse = CreateIntegrationInstanceResponse.CreateIntegrationInstanceResponse;
21
23
  import * as DeleteIntegrationInstanceResponse from "./delete-integration-instance-response";
22
24
  export import DeleteIntegrationInstanceResponse = DeleteIntegrationInstanceResponse.DeleteIntegrationInstanceResponse;
25
+ import * as DisasterRecoveryFailoverResponse from "./disaster-recovery-failover-response";
26
+ export import DisasterRecoveryFailoverResponse = DisasterRecoveryFailoverResponse.DisasterRecoveryFailoverResponse;
23
27
  import * as EnableProcessAutomationResponse from "./enable-process-automation-response";
24
28
  export import EnableProcessAutomationResponse = EnableProcessAutomationResponse.EnableProcessAutomationResponse;
25
29
  import * as ExtendDataRetentionResponse from "./extend-data-retention-response";
@@ -36,6 +40,8 @@ import * as ListWorkRequestLogsResponse from "./list-work-request-logs-response"
36
40
  export import ListWorkRequestLogsResponse = ListWorkRequestLogsResponse.ListWorkRequestLogsResponse;
37
41
  import * as ListWorkRequestsResponse from "./list-work-requests-response";
38
42
  export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
43
+ import * as RemoveOracleManagedCustomEndpointResponse from "./remove-oracle-managed-custom-endpoint-response";
44
+ export import RemoveOracleManagedCustomEndpointResponse = RemoveOracleManagedCustomEndpointResponse.RemoveOracleManagedCustomEndpointResponse;
39
45
  import * as StartIntegrationInstanceResponse from "./start-integration-instance-response";
40
46
  export import StartIntegrationInstanceResponse = StartIntegrationInstanceResponse.StartIntegrationInstanceResponse;
41
47
  import * as StopIntegrationInstanceResponse from "./stop-integration-instance-response";
@@ -0,0 +1,27 @@
1
+ /**
2
+ *
3
+ *
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, 2024, 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
+ export interface RemoveOracleManagedCustomEndpointResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request.
16
+ * You can use this to query status of the asynchronous operation.
17
+ *
18
+ */
19
+ "opcWorkRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If
22
+ * you need to contact Oracle about a particular request,
23
+ * please provide the request ID.
24
+ *
25
+ */
26
+ "opcRequestId": string;
27
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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, 2024, 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
+ //# sourceMappingURL=remove-oracle-managed-custom-endpoint-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-oracle-managed-custom-endpoint-response.js","sourceRoot":"","sources":["../../../../../lib/integration/lib/response/remove-oracle-managed-custom-endpoint-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-integration",
3
- "version": "2.94.0",
3
+ "version": "2.95.1",
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.94.0",
19
- "oci-workrequests": "2.94.0"
18
+ "oci-common": "2.95.1",
19
+ "oci-workrequests": "2.95.1"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"