oci-sch 2.106.2 → 2.107.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.
Files changed (58) hide show
  1. package/lib/model/function-task-details-response.d.ts +47 -0
  2. package/lib/model/function-task-details-response.js +58 -0
  3. package/lib/model/function-task-details-response.js.map +1 -0
  4. package/lib/model/functions-target-details-response.d.ts +53 -0
  5. package/lib/model/functions-target-details-response.js +58 -0
  6. package/lib/model/functions-target-details-response.js.map +1 -0
  7. package/lib/model/index.d.ts +32 -0
  8. package/lib/model/index.js +34 -2
  9. package/lib/model/index.js.map +1 -1
  10. package/lib/model/lifecycle-state.d.ts +1 -0
  11. package/lib/model/lifecycle-state.js +1 -0
  12. package/lib/model/lifecycle-state.js.map +1 -1
  13. package/lib/model/log-rule-task-details-response.d.ts +36 -0
  14. package/lib/model/log-rule-task-details-response.js +58 -0
  15. package/lib/model/log-rule-task-details-response.js.map +1 -0
  16. package/lib/model/logging-analytics-target-details-response.d.ts +43 -0
  17. package/lib/model/logging-analytics-target-details-response.js +58 -0
  18. package/lib/model/logging-analytics-target-details-response.js.map +1 -0
  19. package/lib/model/logging-source-details-response.d.ts +36 -0
  20. package/lib/model/logging-source-details-response.js +70 -0
  21. package/lib/model/logging-source-details-response.js.map +1 -0
  22. package/lib/model/monitoring-source-details-response.d.ts +36 -0
  23. package/lib/model/monitoring-source-details-response.js +70 -0
  24. package/lib/model/monitoring-source-details-response.js.map +1 -0
  25. package/lib/model/monitoring-target-details-response.d.ts +53 -0
  26. package/lib/model/monitoring-target-details-response.js +70 -0
  27. package/lib/model/monitoring-target-details-response.js.map +1 -0
  28. package/lib/model/notifications-target-details-response.d.ts +42 -0
  29. package/lib/model/notifications-target-details-response.js +58 -0
  30. package/lib/model/notifications-target-details-response.js.map +1 -0
  31. package/lib/model/object-storage-target-details-response.d.ts +58 -0
  32. package/lib/model/object-storage-target-details-response.js +58 -0
  33. package/lib/model/object-storage-target-details-response.js.map +1 -0
  34. package/lib/model/plugin-source-details-response.d.ts +44 -0
  35. package/lib/model/plugin-source-details-response.js +58 -0
  36. package/lib/model/plugin-source-details-response.js.map +1 -0
  37. package/lib/model/private-endpoint-metadata.d.ts +36 -0
  38. package/lib/model/private-endpoint-metadata.js +33 -0
  39. package/lib/model/private-endpoint-metadata.js.map +1 -0
  40. package/lib/model/service-connector.d.ts +3 -3
  41. package/lib/model/service-connector.js +10 -6
  42. package/lib/model/service-connector.js.map +1 -1
  43. package/lib/model/source-details-response.d.ts +34 -0
  44. package/lib/model/source-details-response.js +92 -0
  45. package/lib/model/source-details-response.js.map +1 -0
  46. package/lib/model/streaming-source-details-response.d.ts +36 -0
  47. package/lib/model/streaming-source-details-response.js +64 -0
  48. package/lib/model/streaming-source-details-response.js.map +1 -0
  49. package/lib/model/streaming-target-details-response.d.ts +35 -0
  50. package/lib/model/streaming-target-details-response.js +58 -0
  51. package/lib/model/streaming-target-details-response.js.map +1 -0
  52. package/lib/model/target-details-response.d.ts +34 -0
  53. package/lib/model/target-details-response.js +100 -0
  54. package/lib/model/target-details-response.js.map +1 -0
  55. package/lib/model/task-details-response.d.ts +34 -0
  56. package/lib/model/task-details-response.js +84 -0
  57. package/lib/model/task-details-response.js.map +1 -0
  58. package/package.json +3 -3
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Connector Hub API
3
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
4
+ For more information about Connector Hub, see
5
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
6
+ Connector Hub is formerly known as Service Connector Hub.
7
+
8
+ * OpenAPI spec version: 20200909
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ import * as model from "../model";
18
+ /**
19
+ * The Functions task.
20
+ * Batch input for a function can be limited by either size or time. The first limit reached determines the boundary of the batch.
21
+ * For configuration instructions, see
22
+ * [Creating a Connector](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
23
+ *
24
+ */
25
+ export interface FunctionTaskDetailsResponse extends model.TaskDetailsResponse {
26
+ /**
27
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
28
+ *
29
+ */
30
+ "functionId": string;
31
+ /**
32
+ * Size limit (kilobytes) for batch sent to invoke the function.
33
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
34
+ */
35
+ "batchSizeInKbs"?: number;
36
+ /**
37
+ * Time limit (seconds) for batch sent to invoke the function.
38
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
39
+ */
40
+ "batchTimeInSec"?: number;
41
+ "kind": string;
42
+ }
43
+ export declare namespace FunctionTaskDetailsResponse {
44
+ function getJsonObj(obj: FunctionTaskDetailsResponse, isParentJsonObj?: boolean): object;
45
+ const kind = "function";
46
+ function getDeserializedJsonObj(obj: FunctionTaskDetailsResponse, isParentJsonObj?: boolean): object;
47
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /**
3
+ * Connector Hub API
4
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
5
+ For more information about Connector Hub, see
6
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
7
+ Connector Hub is formerly known as Service Connector Hub.
8
+
9
+ * OpenAPI spec version: 20200909
10
+ *
11
+ *
12
+ * NOTE: This class is auto generated by OracleSDKGenerator.
13
+ * Do not edit the class manually.
14
+ *
15
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
16
+ * 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.
17
+ */
18
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ Object.defineProperty(exports, "__esModule", { value: true });
38
+ exports.FunctionTaskDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var FunctionTaskDetailsResponse;
41
+ (function (FunctionTaskDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.TaskDetailsResponse.getJsonObj(obj))), {});
46
+ return jsonObj;
47
+ }
48
+ FunctionTaskDetailsResponse.getJsonObj = getJsonObj;
49
+ FunctionTaskDetailsResponse.kind = "function";
50
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
51
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
52
+ ? obj
53
+ : model.TaskDetailsResponse.getDeserializedJsonObj(obj))), {});
54
+ return jsonObj;
55
+ }
56
+ FunctionTaskDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(FunctionTaskDetailsResponse = exports.FunctionTaskDetailsResponse || (exports.FunctionTaskDetailsResponse = {}));
58
+ //# sourceMappingURL=function-task-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"function-task-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/function-task-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8BlC,IAAiB,2BAA2B,CAyB3C;AAzBD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC,EAAE,eAAyB;QACpF,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAiC,CAAC,GAC5E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,sCAAU,aASzB,CAAA;IACY,gCAAI,GAAG,UAAU,CAAC;IAC/B,SAAgB,sBAAsB,CACpC,GAAgC,EAChC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,GAAG,CAAiC,CAAC,GACxF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,kDAAsB,yBAYrC,CAAA;AACH,CAAC,EAzBgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAyB3C"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * Connector Hub API
3
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
4
+ For more information about Connector Hub, see
5
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
6
+ Connector Hub is formerly known as Service Connector Hub.
7
+
8
+ * OpenAPI spec version: 20200909
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ import * as model from "../model";
18
+ /**
19
+ * The destination function for data transferred from the source.
20
+ * For configuration instructions, see
21
+ * [Creating a Connector](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
22
+ *
23
+ */
24
+ export interface FunctionsTargetDetailsResponse extends model.TargetDetailsResponse {
25
+ /**
26
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function.
27
+ *
28
+ */
29
+ "functionId": string;
30
+ /**
31
+ * The batch rollover size in kilobytes.
32
+ * Only one size option can be specified: {@code batchSizeInKbs} or {@code batchSizeInNum}.
33
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
34
+ */
35
+ "batchSizeInKbs"?: number;
36
+ /**
37
+ * The batch rollover size in number of messages.
38
+ * Only one size option can be specified: {@code batchSizeInKbs} or {@code batchSizeInNum}.
39
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
40
+ */
41
+ "batchSizeInNum"?: number;
42
+ /**
43
+ * The batch rollover time in seconds.
44
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
45
+ */
46
+ "batchTimeInSec"?: number;
47
+ "kind": string;
48
+ }
49
+ export declare namespace FunctionsTargetDetailsResponse {
50
+ function getJsonObj(obj: FunctionsTargetDetailsResponse, isParentJsonObj?: boolean): object;
51
+ const kind = "functions";
52
+ function getDeserializedJsonObj(obj: FunctionsTargetDetailsResponse, isParentJsonObj?: boolean): object;
53
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /**
3
+ * Connector Hub API
4
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
5
+ For more information about Connector Hub, see
6
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
7
+ Connector Hub is formerly known as Service Connector Hub.
8
+
9
+ * OpenAPI spec version: 20200909
10
+ *
11
+ *
12
+ * NOTE: This class is auto generated by OracleSDKGenerator.
13
+ * Do not edit the class manually.
14
+ *
15
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
16
+ * 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.
17
+ */
18
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ Object.defineProperty(exports, "__esModule", { value: true });
38
+ exports.FunctionsTargetDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var FunctionsTargetDetailsResponse;
41
+ (function (FunctionsTargetDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.TargetDetailsResponse.getJsonObj(obj))), {});
46
+ return jsonObj;
47
+ }
48
+ FunctionsTargetDetailsResponse.getJsonObj = getJsonObj;
49
+ FunctionsTargetDetailsResponse.kind = "functions";
50
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
51
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
52
+ ? obj
53
+ : model.TargetDetailsResponse.getDeserializedJsonObj(obj))), {});
54
+ return jsonObj;
55
+ }
56
+ FunctionsTargetDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(FunctionsTargetDetailsResponse = exports.FunctionsTargetDetailsResponse || (exports.FunctionsTargetDetailsResponse = {}));
58
+ //# sourceMappingURL=functions-target-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"functions-target-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/functions-target-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoClC,IAAiB,8BAA8B,CA8B9C;AA9BD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CACxB,GAAmC,EACnC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAoC,CAAC,GACjF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,yCAAU,aAYzB,CAAA;IACY,mCAAI,GAAG,WAAW,CAAC;IAChC,SAAgB,sBAAsB,CACpC,GAAmC,EACnC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CAC+B,CAAC,GACtC,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,qDAAsB,yBAcrC,CAAA;AACH,CAAC,EA9BgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QA8B9C"}
@@ -50,6 +50,8 @@ import * as OperationStatus from "./operation-status";
50
50
  export import OperationStatus = OperationStatus.OperationStatus;
51
51
  import * as OperationType from "./operation-type";
52
52
  export import OperationType = OperationType.OperationType;
53
+ import * as PrivateEndpointMetadata from "./private-endpoint-metadata";
54
+ export import PrivateEndpointMetadata = PrivateEndpointMetadata.PrivateEndpointMetadata;
53
55
  import * as ServiceConnector from "./service-connector";
54
56
  export import ServiceConnector = ServiceConnector.ServiceConnector;
55
57
  import * as ServiceConnectorCollection from "./service-connector-collection";
@@ -60,12 +62,18 @@ import * as SortOrder from "./sort-order";
60
62
  export import SortOrder = SortOrder.SortOrder;
61
63
  import * as SourceDetails from "./source-details";
62
64
  export import SourceDetails = SourceDetails.SourceDetails;
65
+ import * as SourceDetailsResponse from "./source-details-response";
66
+ export import SourceDetailsResponse = SourceDetailsResponse.SourceDetailsResponse;
63
67
  import * as StreamingCursorDetails from "./streaming-cursor-details";
64
68
  export import StreamingCursorDetails = StreamingCursorDetails.StreamingCursorDetails;
65
69
  import * as TargetDetails from "./target-details";
66
70
  export import TargetDetails = TargetDetails.TargetDetails;
71
+ import * as TargetDetailsResponse from "./target-details-response";
72
+ export import TargetDetailsResponse = TargetDetailsResponse.TargetDetailsResponse;
67
73
  import * as TaskDetails from "./task-details";
68
74
  export import TaskDetails = TaskDetails.TaskDetails;
75
+ import * as TaskDetailsResponse from "./task-details-response";
76
+ export import TaskDetailsResponse = TaskDetailsResponse.TaskDetailsResponse;
69
77
  import * as UpdateServiceConnectorDetails from "./update-service-connector-details";
70
78
  export import UpdateServiceConnectorDetails = UpdateServiceConnectorDetails.UpdateServiceConnectorDetails;
71
79
  import * as WorkRequest from "./work-request";
@@ -84,32 +92,52 @@ import * as WorkRequestResource from "./work-request-resource";
84
92
  export import WorkRequestResource = WorkRequestResource.WorkRequestResource;
85
93
  import * as FunctionTaskDetails from "./function-task-details";
86
94
  export import FunctionTaskDetails = FunctionTaskDetails.FunctionTaskDetails;
95
+ import * as FunctionTaskDetailsResponse from "./function-task-details-response";
96
+ export import FunctionTaskDetailsResponse = FunctionTaskDetailsResponse.FunctionTaskDetailsResponse;
87
97
  import * as FunctionsTargetDetails from "./functions-target-details";
88
98
  export import FunctionsTargetDetails = FunctionsTargetDetails.FunctionsTargetDetails;
99
+ import * as FunctionsTargetDetailsResponse from "./functions-target-details-response";
100
+ export import FunctionsTargetDetailsResponse = FunctionsTargetDetailsResponse.FunctionsTargetDetailsResponse;
89
101
  import * as JmesPathDimensionValue from "./jmes-path-dimension-value";
90
102
  export import JmesPathDimensionValue = JmesPathDimensionValue.JmesPathDimensionValue;
91
103
  import * as LatestStreamingCursor from "./latest-streaming-cursor";
92
104
  export import LatestStreamingCursor = LatestStreamingCursor.LatestStreamingCursor;
93
105
  import * as LogRuleTaskDetails from "./log-rule-task-details";
94
106
  export import LogRuleTaskDetails = LogRuleTaskDetails.LogRuleTaskDetails;
107
+ import * as LogRuleTaskDetailsResponse from "./log-rule-task-details-response";
108
+ export import LogRuleTaskDetailsResponse = LogRuleTaskDetailsResponse.LogRuleTaskDetailsResponse;
95
109
  import * as LoggingAnalyticsTargetDetails from "./logging-analytics-target-details";
96
110
  export import LoggingAnalyticsTargetDetails = LoggingAnalyticsTargetDetails.LoggingAnalyticsTargetDetails;
111
+ import * as LoggingAnalyticsTargetDetailsResponse from "./logging-analytics-target-details-response";
112
+ export import LoggingAnalyticsTargetDetailsResponse = LoggingAnalyticsTargetDetailsResponse.LoggingAnalyticsTargetDetailsResponse;
97
113
  import * as LoggingSourceDetails from "./logging-source-details";
98
114
  export import LoggingSourceDetails = LoggingSourceDetails.LoggingSourceDetails;
115
+ import * as LoggingSourceDetailsResponse from "./logging-source-details-response";
116
+ export import LoggingSourceDetailsResponse = LoggingSourceDetailsResponse.LoggingSourceDetailsResponse;
99
117
  import * as MonitoringSourceAllMetrics from "./monitoring-source-all-metrics";
100
118
  export import MonitoringSourceAllMetrics = MonitoringSourceAllMetrics.MonitoringSourceAllMetrics;
101
119
  import * as MonitoringSourceDetails from "./monitoring-source-details";
102
120
  export import MonitoringSourceDetails = MonitoringSourceDetails.MonitoringSourceDetails;
121
+ import * as MonitoringSourceDetailsResponse from "./monitoring-source-details-response";
122
+ export import MonitoringSourceDetailsResponse = MonitoringSourceDetailsResponse.MonitoringSourceDetailsResponse;
103
123
  import * as MonitoringSourceSelectedNamespaceDetails from "./monitoring-source-selected-namespace-details";
104
124
  export import MonitoringSourceSelectedNamespaceDetails = MonitoringSourceSelectedNamespaceDetails.MonitoringSourceSelectedNamespaceDetails;
105
125
  import * as MonitoringTargetDetails from "./monitoring-target-details";
106
126
  export import MonitoringTargetDetails = MonitoringTargetDetails.MonitoringTargetDetails;
127
+ import * as MonitoringTargetDetailsResponse from "./monitoring-target-details-response";
128
+ export import MonitoringTargetDetailsResponse = MonitoringTargetDetailsResponse.MonitoringTargetDetailsResponse;
107
129
  import * as NotificationsTargetDetails from "./notifications-target-details";
108
130
  export import NotificationsTargetDetails = NotificationsTargetDetails.NotificationsTargetDetails;
131
+ import * as NotificationsTargetDetailsResponse from "./notifications-target-details-response";
132
+ export import NotificationsTargetDetailsResponse = NotificationsTargetDetailsResponse.NotificationsTargetDetailsResponse;
109
133
  import * as ObjectStorageTargetDetails from "./object-storage-target-details";
110
134
  export import ObjectStorageTargetDetails = ObjectStorageTargetDetails.ObjectStorageTargetDetails;
135
+ import * as ObjectStorageTargetDetailsResponse from "./object-storage-target-details-response";
136
+ export import ObjectStorageTargetDetailsResponse = ObjectStorageTargetDetailsResponse.ObjectStorageTargetDetailsResponse;
111
137
  import * as PluginSourceDetails from "./plugin-source-details";
112
138
  export import PluginSourceDetails = PluginSourceDetails.PluginSourceDetails;
139
+ import * as PluginSourceDetailsResponse from "./plugin-source-details-response";
140
+ export import PluginSourceDetailsResponse = PluginSourceDetailsResponse.PluginSourceDetailsResponse;
113
141
  import * as SourceConnectorPlugin from "./source-connector-plugin";
114
142
  export import SourceConnectorPlugin = SourceConnectorPlugin.SourceConnectorPlugin;
115
143
  import * as SourceConnectorPluginSummary from "./source-connector-plugin-summary";
@@ -118,8 +146,12 @@ import * as StaticDimensionValue from "./static-dimension-value";
118
146
  export import StaticDimensionValue = StaticDimensionValue.StaticDimensionValue;
119
147
  import * as StreamingSourceDetails from "./streaming-source-details";
120
148
  export import StreamingSourceDetails = StreamingSourceDetails.StreamingSourceDetails;
149
+ import * as StreamingSourceDetailsResponse from "./streaming-source-details-response";
150
+ export import StreamingSourceDetailsResponse = StreamingSourceDetailsResponse.StreamingSourceDetailsResponse;
121
151
  import * as StreamingTargetDetails from "./streaming-target-details";
122
152
  export import StreamingTargetDetails = StreamingTargetDetails.StreamingTargetDetails;
153
+ import * as StreamingTargetDetailsResponse from "./streaming-target-details-response";
154
+ export import StreamingTargetDetailsResponse = StreamingTargetDetailsResponse.StreamingTargetDetailsResponse;
123
155
  import * as TargetConnectorPlugin from "./target-connector-plugin";
124
156
  export import TargetConnectorPlugin = TargetConnectorPlugin.TargetConnectorPlugin;
125
157
  import * as TargetConnectorPluginSummary from "./target-connector-plugin-summary";
@@ -35,8 +35,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
35
35
  return result;
36
36
  };
37
37
  Object.defineProperty(exports, "__esModule", { value: true });
38
- exports.SourceConnectorPluginSummary = exports.SourceConnectorPlugin = exports.PluginSourceDetails = exports.ObjectStorageTargetDetails = exports.NotificationsTargetDetails = exports.MonitoringTargetDetails = exports.MonitoringSourceSelectedNamespaceDetails = exports.MonitoringSourceDetails = exports.MonitoringSourceAllMetrics = exports.LoggingSourceDetails = exports.LoggingAnalyticsTargetDetails = exports.LogRuleTaskDetails = exports.LatestStreamingCursor = exports.JmesPathDimensionValue = exports.FunctionsTargetDetails = exports.FunctionTaskDetails = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.UpdateServiceConnectorDetails = exports.TaskDetails = exports.TargetDetails = exports.StreamingCursorDetails = exports.SourceDetails = exports.SortOrder = exports.ServiceConnectorSummary = exports.ServiceConnectorCollection = exports.ServiceConnector = exports.OperationType = exports.OperationStatus = exports.MonitoringSourceSelectedNamespace = exports.MonitoringSourceNamespaceDetails = exports.MonitoringSourceMetricDetails = exports.MonitoringSource = exports.LogSource = exports.LifecycleState = exports.EstimatedThroughput = exports.DimensionValueDetails = exports.DimensionDetails = exports.CreateServiceConnectorDetails = exports.ConnectorPluginSummary = exports.ConnectorPluginLifecycleState = exports.ConnectorPluginCollection = exports.ConnectorPlugin = exports.ChangeServiceConnectorCompartmentDetails = exports.ActionType = void 0;
39
- exports.TrimHorizonStreamingCursor = exports.TargetConnectorPluginSummary = exports.TargetConnectorPlugin = exports.StreamingTargetDetails = exports.StreamingSourceDetails = exports.StaticDimensionValue = void 0;
38
+ exports.LoggingSourceDetailsResponse = exports.LoggingSourceDetails = exports.LoggingAnalyticsTargetDetailsResponse = exports.LoggingAnalyticsTargetDetails = exports.LogRuleTaskDetailsResponse = exports.LogRuleTaskDetails = exports.LatestStreamingCursor = exports.JmesPathDimensionValue = exports.FunctionsTargetDetailsResponse = exports.FunctionsTargetDetails = exports.FunctionTaskDetailsResponse = exports.FunctionTaskDetails = exports.WorkRequestResource = exports.WorkRequestLogEntryCollection = exports.WorkRequestLogEntry = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.UpdateServiceConnectorDetails = exports.TaskDetailsResponse = exports.TaskDetails = exports.TargetDetailsResponse = exports.TargetDetails = exports.StreamingCursorDetails = exports.SourceDetailsResponse = exports.SourceDetails = exports.SortOrder = exports.ServiceConnectorSummary = exports.ServiceConnectorCollection = exports.ServiceConnector = exports.PrivateEndpointMetadata = exports.OperationType = exports.OperationStatus = exports.MonitoringSourceSelectedNamespace = exports.MonitoringSourceNamespaceDetails = exports.MonitoringSourceMetricDetails = exports.MonitoringSource = exports.LogSource = exports.LifecycleState = exports.EstimatedThroughput = exports.DimensionValueDetails = exports.DimensionDetails = exports.CreateServiceConnectorDetails = exports.ConnectorPluginSummary = exports.ConnectorPluginLifecycleState = exports.ConnectorPluginCollection = exports.ConnectorPlugin = exports.ChangeServiceConnectorCompartmentDetails = exports.ActionType = void 0;
39
+ exports.TrimHorizonStreamingCursor = exports.TargetConnectorPluginSummary = exports.TargetConnectorPlugin = exports.StreamingTargetDetailsResponse = exports.StreamingTargetDetails = exports.StreamingSourceDetailsResponse = exports.StreamingSourceDetails = exports.StaticDimensionValue = exports.SourceConnectorPluginSummary = exports.SourceConnectorPlugin = exports.PluginSourceDetailsResponse = exports.PluginSourceDetails = exports.ObjectStorageTargetDetailsResponse = exports.ObjectStorageTargetDetails = exports.NotificationsTargetDetailsResponse = exports.NotificationsTargetDetails = exports.MonitoringTargetDetailsResponse = exports.MonitoringTargetDetails = exports.MonitoringSourceSelectedNamespaceDetails = exports.MonitoringSourceDetailsResponse = exports.MonitoringSourceDetails = exports.MonitoringSourceAllMetrics = void 0;
40
40
  const ActionType = __importStar(require("./action-type"));
41
41
  exports.ActionType = ActionType.ActionType;
42
42
  const ChangeServiceConnectorCompartmentDetails = __importStar(require("./change-service-connector-compartment-details"));
@@ -73,6 +73,8 @@ const OperationStatus = __importStar(require("./operation-status"));
73
73
  exports.OperationStatus = OperationStatus.OperationStatus;
74
74
  const OperationType = __importStar(require("./operation-type"));
75
75
  exports.OperationType = OperationType.OperationType;
76
+ const PrivateEndpointMetadata = __importStar(require("./private-endpoint-metadata"));
77
+ exports.PrivateEndpointMetadata = PrivateEndpointMetadata.PrivateEndpointMetadata;
76
78
  const ServiceConnector = __importStar(require("./service-connector"));
77
79
  exports.ServiceConnector = ServiceConnector.ServiceConnector;
78
80
  const ServiceConnectorCollection = __importStar(require("./service-connector-collection"));
@@ -83,12 +85,18 @@ const SortOrder = __importStar(require("./sort-order"));
83
85
  exports.SortOrder = SortOrder.SortOrder;
84
86
  const SourceDetails = __importStar(require("./source-details"));
85
87
  exports.SourceDetails = SourceDetails.SourceDetails;
88
+ const SourceDetailsResponse = __importStar(require("./source-details-response"));
89
+ exports.SourceDetailsResponse = SourceDetailsResponse.SourceDetailsResponse;
86
90
  const StreamingCursorDetails = __importStar(require("./streaming-cursor-details"));
87
91
  exports.StreamingCursorDetails = StreamingCursorDetails.StreamingCursorDetails;
88
92
  const TargetDetails = __importStar(require("./target-details"));
89
93
  exports.TargetDetails = TargetDetails.TargetDetails;
94
+ const TargetDetailsResponse = __importStar(require("./target-details-response"));
95
+ exports.TargetDetailsResponse = TargetDetailsResponse.TargetDetailsResponse;
90
96
  const TaskDetails = __importStar(require("./task-details"));
91
97
  exports.TaskDetails = TaskDetails.TaskDetails;
98
+ const TaskDetailsResponse = __importStar(require("./task-details-response"));
99
+ exports.TaskDetailsResponse = TaskDetailsResponse.TaskDetailsResponse;
92
100
  const UpdateServiceConnectorDetails = __importStar(require("./update-service-connector-details"));
93
101
  exports.UpdateServiceConnectorDetails = UpdateServiceConnectorDetails.UpdateServiceConnectorDetails;
94
102
  const WorkRequest = __importStar(require("./work-request"));
@@ -107,32 +115,52 @@ const WorkRequestResource = __importStar(require("./work-request-resource"));
107
115
  exports.WorkRequestResource = WorkRequestResource.WorkRequestResource;
108
116
  const FunctionTaskDetails = __importStar(require("./function-task-details"));
109
117
  exports.FunctionTaskDetails = FunctionTaskDetails.FunctionTaskDetails;
118
+ const FunctionTaskDetailsResponse = __importStar(require("./function-task-details-response"));
119
+ exports.FunctionTaskDetailsResponse = FunctionTaskDetailsResponse.FunctionTaskDetailsResponse;
110
120
  const FunctionsTargetDetails = __importStar(require("./functions-target-details"));
111
121
  exports.FunctionsTargetDetails = FunctionsTargetDetails.FunctionsTargetDetails;
122
+ const FunctionsTargetDetailsResponse = __importStar(require("./functions-target-details-response"));
123
+ exports.FunctionsTargetDetailsResponse = FunctionsTargetDetailsResponse.FunctionsTargetDetailsResponse;
112
124
  const JmesPathDimensionValue = __importStar(require("./jmes-path-dimension-value"));
113
125
  exports.JmesPathDimensionValue = JmesPathDimensionValue.JmesPathDimensionValue;
114
126
  const LatestStreamingCursor = __importStar(require("./latest-streaming-cursor"));
115
127
  exports.LatestStreamingCursor = LatestStreamingCursor.LatestStreamingCursor;
116
128
  const LogRuleTaskDetails = __importStar(require("./log-rule-task-details"));
117
129
  exports.LogRuleTaskDetails = LogRuleTaskDetails.LogRuleTaskDetails;
130
+ const LogRuleTaskDetailsResponse = __importStar(require("./log-rule-task-details-response"));
131
+ exports.LogRuleTaskDetailsResponse = LogRuleTaskDetailsResponse.LogRuleTaskDetailsResponse;
118
132
  const LoggingAnalyticsTargetDetails = __importStar(require("./logging-analytics-target-details"));
119
133
  exports.LoggingAnalyticsTargetDetails = LoggingAnalyticsTargetDetails.LoggingAnalyticsTargetDetails;
134
+ const LoggingAnalyticsTargetDetailsResponse = __importStar(require("./logging-analytics-target-details-response"));
135
+ exports.LoggingAnalyticsTargetDetailsResponse = LoggingAnalyticsTargetDetailsResponse.LoggingAnalyticsTargetDetailsResponse;
120
136
  const LoggingSourceDetails = __importStar(require("./logging-source-details"));
121
137
  exports.LoggingSourceDetails = LoggingSourceDetails.LoggingSourceDetails;
138
+ const LoggingSourceDetailsResponse = __importStar(require("./logging-source-details-response"));
139
+ exports.LoggingSourceDetailsResponse = LoggingSourceDetailsResponse.LoggingSourceDetailsResponse;
122
140
  const MonitoringSourceAllMetrics = __importStar(require("./monitoring-source-all-metrics"));
123
141
  exports.MonitoringSourceAllMetrics = MonitoringSourceAllMetrics.MonitoringSourceAllMetrics;
124
142
  const MonitoringSourceDetails = __importStar(require("./monitoring-source-details"));
125
143
  exports.MonitoringSourceDetails = MonitoringSourceDetails.MonitoringSourceDetails;
144
+ const MonitoringSourceDetailsResponse = __importStar(require("./monitoring-source-details-response"));
145
+ exports.MonitoringSourceDetailsResponse = MonitoringSourceDetailsResponse.MonitoringSourceDetailsResponse;
126
146
  const MonitoringSourceSelectedNamespaceDetails = __importStar(require("./monitoring-source-selected-namespace-details"));
127
147
  exports.MonitoringSourceSelectedNamespaceDetails = MonitoringSourceSelectedNamespaceDetails.MonitoringSourceSelectedNamespaceDetails;
128
148
  const MonitoringTargetDetails = __importStar(require("./monitoring-target-details"));
129
149
  exports.MonitoringTargetDetails = MonitoringTargetDetails.MonitoringTargetDetails;
150
+ const MonitoringTargetDetailsResponse = __importStar(require("./monitoring-target-details-response"));
151
+ exports.MonitoringTargetDetailsResponse = MonitoringTargetDetailsResponse.MonitoringTargetDetailsResponse;
130
152
  const NotificationsTargetDetails = __importStar(require("./notifications-target-details"));
131
153
  exports.NotificationsTargetDetails = NotificationsTargetDetails.NotificationsTargetDetails;
154
+ const NotificationsTargetDetailsResponse = __importStar(require("./notifications-target-details-response"));
155
+ exports.NotificationsTargetDetailsResponse = NotificationsTargetDetailsResponse.NotificationsTargetDetailsResponse;
132
156
  const ObjectStorageTargetDetails = __importStar(require("./object-storage-target-details"));
133
157
  exports.ObjectStorageTargetDetails = ObjectStorageTargetDetails.ObjectStorageTargetDetails;
158
+ const ObjectStorageTargetDetailsResponse = __importStar(require("./object-storage-target-details-response"));
159
+ exports.ObjectStorageTargetDetailsResponse = ObjectStorageTargetDetailsResponse.ObjectStorageTargetDetailsResponse;
134
160
  const PluginSourceDetails = __importStar(require("./plugin-source-details"));
135
161
  exports.PluginSourceDetails = PluginSourceDetails.PluginSourceDetails;
162
+ const PluginSourceDetailsResponse = __importStar(require("./plugin-source-details-response"));
163
+ exports.PluginSourceDetailsResponse = PluginSourceDetailsResponse.PluginSourceDetailsResponse;
136
164
  const SourceConnectorPlugin = __importStar(require("./source-connector-plugin"));
137
165
  exports.SourceConnectorPlugin = SourceConnectorPlugin.SourceConnectorPlugin;
138
166
  const SourceConnectorPluginSummary = __importStar(require("./source-connector-plugin-summary"));
@@ -141,8 +169,12 @@ const StaticDimensionValue = __importStar(require("./static-dimension-value"));
141
169
  exports.StaticDimensionValue = StaticDimensionValue.StaticDimensionValue;
142
170
  const StreamingSourceDetails = __importStar(require("./streaming-source-details"));
143
171
  exports.StreamingSourceDetails = StreamingSourceDetails.StreamingSourceDetails;
172
+ const StreamingSourceDetailsResponse = __importStar(require("./streaming-source-details-response"));
173
+ exports.StreamingSourceDetailsResponse = StreamingSourceDetailsResponse.StreamingSourceDetailsResponse;
144
174
  const StreamingTargetDetails = __importStar(require("./streaming-target-details"));
145
175
  exports.StreamingTargetDetails = StreamingTargetDetails.StreamingTargetDetails;
176
+ const StreamingTargetDetailsResponse = __importStar(require("./streaming-target-details-response"));
177
+ exports.StreamingTargetDetailsResponse = StreamingTargetDetailsResponse.StreamingTargetDetailsResponse;
146
178
  const TargetConnectorPlugin = __importStar(require("./target-connector-plugin"));
147
179
  exports.TargetConnectorPlugin = TargetConnectorPlugin.TargetConnectorPlugin;
148
180
  const TargetConnectorPluginSummary = __importStar(require("./target-connector-plugin-summary"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/index.ts"],"names":[],"mappings":"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"}
@@ -23,6 +23,7 @@ export declare enum LifecycleState {
23
23
  Updating = "UPDATING",
24
24
  Active = "ACTIVE",
25
25
  Inactive = "INACTIVE",
26
+ NeedsAttention = "NEEDS_ATTENTION",
26
27
  Deleting = "DELETING",
27
28
  Deleted = "DELETED",
28
29
  Failed = "FAILED",
@@ -27,6 +27,7 @@ var LifecycleState;
27
27
  LifecycleState["Updating"] = "UPDATING";
28
28
  LifecycleState["Active"] = "ACTIVE";
29
29
  LifecycleState["Inactive"] = "INACTIVE";
30
+ LifecycleState["NeedsAttention"] = "NEEDS_ATTENTION";
30
31
  LifecycleState["Deleting"] = "DELETING";
31
32
  LifecycleState["Deleted"] = "DELETED";
32
33
  LifecycleState["Failed"] = "FAILED";
@@ -1 +1 @@
1
- {"version":3,"file":"lifecycle-state.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/lifecycle-state.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAKH;;;IAGI;AACJ,IAAY,cAcX;AAdD,WAAY,cAAc;IACxB,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;IACrB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;IACrB,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IAEjB;;;OAGG;IACH,gDAA8B,CAAA;AAChC,CAAC,EAdW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAczB;AAED,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,yBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,qCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAO9B"}
1
+ {"version":3,"file":"lifecycle-state.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/lifecycle-state.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAKH;;;IAGI;AACJ,IAAY,cAeX;AAfD,WAAY,cAAc;IACxB,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;IACrB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;IACrB,oDAAkC,CAAA;IAClC,uCAAqB,CAAA;IACrB,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IAEjB;;;OAGG;IACH,gDAA8B,CAAA;AAChC,CAAC,EAfW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAezB;AAED,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,yBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,qCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAO9B"}
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Connector Hub API
3
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
4
+ For more information about Connector Hub, see
5
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
6
+ Connector Hub is formerly known as Service Connector Hub.
7
+
8
+ * OpenAPI spec version: 20200909
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ import * as model from "../model";
18
+ /**
19
+ * The log filter task.
20
+ * For configuration instructions, see
21
+ * [Creating a Connector](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
22
+ *
23
+ */
24
+ export interface LogRuleTaskDetailsResponse extends model.TaskDetailsResponse {
25
+ /**
26
+ * A filter or mask to limit the source used in the flow defined by the connector.
27
+ *
28
+ */
29
+ "condition": string;
30
+ "kind": string;
31
+ }
32
+ export declare namespace LogRuleTaskDetailsResponse {
33
+ function getJsonObj(obj: LogRuleTaskDetailsResponse, isParentJsonObj?: boolean): object;
34
+ const kind = "logRule";
35
+ function getDeserializedJsonObj(obj: LogRuleTaskDetailsResponse, isParentJsonObj?: boolean): object;
36
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /**
3
+ * Connector Hub API
4
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
5
+ For more information about Connector Hub, see
6
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
7
+ Connector Hub is formerly known as Service Connector Hub.
8
+
9
+ * OpenAPI spec version: 20200909
10
+ *
11
+ *
12
+ * NOTE: This class is auto generated by OracleSDKGenerator.
13
+ * Do not edit the class manually.
14
+ *
15
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
16
+ * 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.
17
+ */
18
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ Object.defineProperty(exports, "__esModule", { value: true });
38
+ exports.LogRuleTaskDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var LogRuleTaskDetailsResponse;
41
+ (function (LogRuleTaskDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.TaskDetailsResponse.getJsonObj(obj))), {});
46
+ return jsonObj;
47
+ }
48
+ LogRuleTaskDetailsResponse.getJsonObj = getJsonObj;
49
+ LogRuleTaskDetailsResponse.kind = "logRule";
50
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
51
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
52
+ ? obj
53
+ : model.TaskDetailsResponse.getDeserializedJsonObj(obj))), {});
54
+ return jsonObj;
55
+ }
56
+ LogRuleTaskDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(LogRuleTaskDetailsResponse = exports.LogRuleTaskDetailsResponse || (exports.LogRuleTaskDetailsResponse = {}));
58
+ //# sourceMappingURL=log-rule-task-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-rule-task-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/log-rule-task-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAmBlC,IAAiB,0BAA0B,CAyB1C;AAzBD,WAAiB,0BAA0B;IACzC,SAAgB,UAAU,CAAC,GAA+B,EAAE,eAAyB;QACnF,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAgC,CAAC,GAC3E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,qCAAU,aASzB,CAAA;IACY,+BAAI,GAAG,SAAS,CAAC;IAC9B,SAAgB,sBAAsB,CACpC,GAA+B,EAC/B,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,GAAG,CAAgC,CAAC,GACvF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,iDAAsB,yBAYrC,CAAA;AACH,CAAC,EAzBgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAyB1C"}
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Connector Hub API
3
+ * Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
4
+ For more information about Connector Hub, see
5
+ [the Connector Hub documentation](https://docs.oracle.com/iaas/Content/connector-hub/home.htm).
6
+ Connector Hub is formerly known as Service Connector Hub.
7
+
8
+ * OpenAPI spec version: 20200909
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ import * as model from "../model";
18
+ /**
19
+ * The destination log group for data transferred from the source.
20
+ * For configuration instructions, see
21
+ * [Creating a Connector](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
22
+ *
23
+ */
24
+ export interface LoggingAnalyticsTargetDetailsResponse extends model.TargetDetailsResponse {
25
+ /**
26
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
27
+ *
28
+ */
29
+ "logGroupId": string;
30
+ /**
31
+ * Identifier of the log source that you want to use for processing data received from the connector source.
32
+ * Applies to {@code StreamingSource} only.
33
+ * Equivalent to {@code name} at {@link LogAnalyticsSource}.
34
+ *
35
+ */
36
+ "logSourceIdentifier"?: string;
37
+ "kind": string;
38
+ }
39
+ export declare namespace LoggingAnalyticsTargetDetailsResponse {
40
+ function getJsonObj(obj: LoggingAnalyticsTargetDetailsResponse, isParentJsonObj?: boolean): object;
41
+ const kind = "loggingAnalytics";
42
+ function getDeserializedJsonObj(obj: LoggingAnalyticsTargetDetailsResponse, isParentJsonObj?: boolean): object;
43
+ }