oci-sch 2.106.1 → 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,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.LoggingAnalyticsTargetDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var LoggingAnalyticsTargetDetailsResponse;
41
+ (function (LoggingAnalyticsTargetDetailsResponse) {
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
+ LoggingAnalyticsTargetDetailsResponse.getJsonObj = getJsonObj;
49
+ LoggingAnalyticsTargetDetailsResponse.kind = "loggingAnalytics";
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
+ LoggingAnalyticsTargetDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(LoggingAnalyticsTargetDetailsResponse = exports.LoggingAnalyticsTargetDetailsResponse || (exports.LoggingAnalyticsTargetDetailsResponse = {}));
58
+ //# sourceMappingURL=logging-analytics-target-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logging-analytics-target-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/logging-analytics-target-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0BlC,IAAiB,qCAAqC,CA8BrD;AA9BD,WAAiB,qCAAqC;IACpD,SAAgB,UAAU,CACxB,GAA0C,EAC1C,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAA2C,CAAC,GACxF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,gDAAU,aAYzB,CAAA;IACY,0CAAI,GAAG,kBAAkB,CAAC;IACvC,SAAgB,sBAAsB,CACpC,GAA0C,EAC1C,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CACsC,CAAC,GAC7C,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,4DAAsB,yBAcrC,CAAA;AACH,CAAC,EA9BgB,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QA8BrD"}
@@ -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 Logging source.
20
+ * For configuration instructions, see
21
+ * [Creating a Connector with a Logging Source](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector-logging-source.htm).
22
+ *
23
+ */
24
+ export interface LoggingSourceDetailsResponse extends model.SourceDetailsResponse {
25
+ /**
26
+ * The logs for this Logging source.
27
+ *
28
+ */
29
+ "logSources": Array<model.LogSource>;
30
+ "kind": string;
31
+ }
32
+ export declare namespace LoggingSourceDetailsResponse {
33
+ function getJsonObj(obj: LoggingSourceDetailsResponse, isParentJsonObj?: boolean): object;
34
+ const kind = "logging";
35
+ function getDeserializedJsonObj(obj: LoggingSourceDetailsResponse, isParentJsonObj?: boolean): object;
36
+ }
@@ -0,0 +1,70 @@
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.LoggingSourceDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var LoggingSourceDetailsResponse;
41
+ (function (LoggingSourceDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.SourceDetailsResponse.getJsonObj(obj))), {
46
+ "logSources": obj.logSources
47
+ ? obj.logSources.map(item => {
48
+ return model.LogSource.getJsonObj(item);
49
+ })
50
+ : undefined
51
+ });
52
+ return jsonObj;
53
+ }
54
+ LoggingSourceDetailsResponse.getJsonObj = getJsonObj;
55
+ LoggingSourceDetailsResponse.kind = "logging";
56
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
57
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
58
+ ? obj
59
+ : model.SourceDetailsResponse.getDeserializedJsonObj(obj))), {
60
+ "logSources": obj.logSources
61
+ ? obj.logSources.map(item => {
62
+ return model.LogSource.getDeserializedJsonObj(item);
63
+ })
64
+ : undefined
65
+ });
66
+ return jsonObj;
67
+ }
68
+ LoggingSourceDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
69
+ })(LoggingSourceDetailsResponse = exports.LoggingSourceDetailsResponse || (exports.LoggingSourceDetailsResponse = {}));
70
+ //# sourceMappingURL=logging-source-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logging-source-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/logging-source-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAmBlC,IAAiB,4BAA4B,CAuC5C;AAvCD,WAAiB,4BAA4B;IAC3C,SAAgB,UAAU,CAAC,GAAiC,EAAE,eAAyB;QACrF,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAkC,CAAC,GAC/E;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,uCAAU,aAezB,CAAA;IACY,iCAAI,GAAG,SAAS,CAAC;IAC9B,SAAgB,sBAAsB,CACpC,GAAiC,EACjC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CAC6B,CAAC,GACpC;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IApBe,mDAAsB,yBAoBrC,CAAA;AACH,CAAC,EAvCgB,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAuC5C"}
@@ -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 Monitoring source.
20
+ * For configuration instructions, see
21
+ * [Creating a Connector with a Monitoring Source](https://docs.oracle.com/iaas/Content/connector-hub/create-service-connector-monitoring-source.htm).
22
+ *
23
+ */
24
+ export interface MonitoringSourceDetailsResponse extends model.SourceDetailsResponse {
25
+ /**
26
+ * One or more compartment-specific lists of metric namespaces to retrieve data from.
27
+ *
28
+ */
29
+ "monitoringSources": Array<model.MonitoringSource>;
30
+ "kind": string;
31
+ }
32
+ export declare namespace MonitoringSourceDetailsResponse {
33
+ function getJsonObj(obj: MonitoringSourceDetailsResponse, isParentJsonObj?: boolean): object;
34
+ const kind = "monitoring";
35
+ function getDeserializedJsonObj(obj: MonitoringSourceDetailsResponse, isParentJsonObj?: boolean): object;
36
+ }
@@ -0,0 +1,70 @@
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.MonitoringSourceDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var MonitoringSourceDetailsResponse;
41
+ (function (MonitoringSourceDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.SourceDetailsResponse.getJsonObj(obj))), {
46
+ "monitoringSources": obj.monitoringSources
47
+ ? obj.monitoringSources.map(item => {
48
+ return model.MonitoringSource.getJsonObj(item);
49
+ })
50
+ : undefined
51
+ });
52
+ return jsonObj;
53
+ }
54
+ MonitoringSourceDetailsResponse.getJsonObj = getJsonObj;
55
+ MonitoringSourceDetailsResponse.kind = "monitoring";
56
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
57
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
58
+ ? obj
59
+ : model.SourceDetailsResponse.getDeserializedJsonObj(obj))), {
60
+ "monitoringSources": obj.monitoringSources
61
+ ? obj.monitoringSources.map(item => {
62
+ return model.MonitoringSource.getDeserializedJsonObj(item);
63
+ })
64
+ : undefined
65
+ });
66
+ return jsonObj;
67
+ }
68
+ MonitoringSourceDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
69
+ })(MonitoringSourceDetailsResponse = exports.MonitoringSourceDetailsResponse || (exports.MonitoringSourceDetailsResponse = {}));
70
+ //# sourceMappingURL=monitoring-source-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monitoring-source-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/monitoring-source-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAmBlC,IAAiB,+BAA+B,CA0C/C;AA1CD,WAAiB,+BAA+B;IAC9C,SAAgB,UAAU,CACxB,GAAoC,EACpC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAqC,CAAC,GAClF;YACD,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC/B,OAAO,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACjD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,0CAAU,aAkBzB,CAAA;IACY,oCAAI,GAAG,YAAY,CAAC;IACjC,SAAgB,sBAAsB,CACpC,GAAoC,EACpC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CACgC,CAAC,GACvC;YACD,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC/B,OAAO,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC7D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IApBe,sDAAsB,yBAoBrC,CAAA;AACH,CAAC,EA1CgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QA0C/C"}
@@ -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 metric 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 MonitoringTargetDetailsResponse extends model.TargetDetailsResponse {
25
+ /**
26
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric.
27
+ *
28
+ */
29
+ "compartmentId": string;
30
+ /**
31
+ * The namespace of the metric.
32
+ * Example: {@code oci_computeagent}
33
+ *
34
+ */
35
+ "metricNamespace": string;
36
+ /**
37
+ * The name of the metric.
38
+ * Example: {@code CpuUtilization}
39
+ *
40
+ */
41
+ "metric": string;
42
+ /**
43
+ * List of dimension names and values.
44
+ *
45
+ */
46
+ "dimensions"?: Array<model.DimensionDetails>;
47
+ "kind": string;
48
+ }
49
+ export declare namespace MonitoringTargetDetailsResponse {
50
+ function getJsonObj(obj: MonitoringTargetDetailsResponse, isParentJsonObj?: boolean): object;
51
+ const kind = "monitoring";
52
+ function getDeserializedJsonObj(obj: MonitoringTargetDetailsResponse, isParentJsonObj?: boolean): object;
53
+ }
@@ -0,0 +1,70 @@
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.MonitoringTargetDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var MonitoringTargetDetailsResponse;
41
+ (function (MonitoringTargetDetailsResponse) {
42
+ function getJsonObj(obj, isParentJsonObj) {
43
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
44
+ ? obj
45
+ : model.TargetDetailsResponse.getJsonObj(obj))), {
46
+ "dimensions": obj.dimensions
47
+ ? obj.dimensions.map(item => {
48
+ return model.DimensionDetails.getJsonObj(item);
49
+ })
50
+ : undefined
51
+ });
52
+ return jsonObj;
53
+ }
54
+ MonitoringTargetDetailsResponse.getJsonObj = getJsonObj;
55
+ MonitoringTargetDetailsResponse.kind = "monitoring";
56
+ function getDeserializedJsonObj(obj, isParentJsonObj) {
57
+ const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
58
+ ? obj
59
+ : model.TargetDetailsResponse.getDeserializedJsonObj(obj))), {
60
+ "dimensions": obj.dimensions
61
+ ? obj.dimensions.map(item => {
62
+ return model.DimensionDetails.getDeserializedJsonObj(item);
63
+ })
64
+ : undefined
65
+ });
66
+ return jsonObj;
67
+ }
68
+ MonitoringTargetDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
69
+ })(MonitoringTargetDetailsResponse = exports.MonitoringTargetDetailsResponse || (exports.MonitoringTargetDetailsResponse = {}));
70
+ //# sourceMappingURL=monitoring-target-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monitoring-target-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/monitoring-target-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoClC,IAAiB,+BAA+B,CA0C/C;AA1CD,WAAiB,+BAA+B;IAC9C,SAAgB,UAAU,CACxB,GAAoC,EACpC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAqC,CAAC,GAClF;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACjD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,0CAAU,aAkBzB,CAAA;IACY,oCAAI,GAAG,YAAY,CAAC;IACjC,SAAgB,sBAAsB,CACpC,GAAoC,EACpC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CACgC,CAAC,GACvC;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC7D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IApBe,sDAAsB,yBAoBrC,CAAA;AACH,CAAC,EA1CgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QA0C/C"}
@@ -0,0 +1,42 @@
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 topic 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 NotificationsTargetDetailsResponse extends model.TargetDetailsResponse {
25
+ /**
26
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the topic.
27
+ *
28
+ */
29
+ "topicId": string;
30
+ /**
31
+ * Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
32
+ * Example: {@code true}
33
+ *
34
+ */
35
+ "enableFormattedMessaging"?: boolean;
36
+ "kind": string;
37
+ }
38
+ export declare namespace NotificationsTargetDetailsResponse {
39
+ function getJsonObj(obj: NotificationsTargetDetailsResponse, isParentJsonObj?: boolean): object;
40
+ const kind = "notifications";
41
+ function getDeserializedJsonObj(obj: NotificationsTargetDetailsResponse, isParentJsonObj?: boolean): object;
42
+ }
@@ -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.NotificationsTargetDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var NotificationsTargetDetailsResponse;
41
+ (function (NotificationsTargetDetailsResponse) {
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
+ NotificationsTargetDetailsResponse.getJsonObj = getJsonObj;
49
+ NotificationsTargetDetailsResponse.kind = "notifications";
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
+ NotificationsTargetDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(NotificationsTargetDetailsResponse = exports.NotificationsTargetDetailsResponse || (exports.NotificationsTargetDetailsResponse = {}));
58
+ //# sourceMappingURL=notifications-target-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notifications-target-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/notifications-target-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyBlC,IAAiB,kCAAkC,CA8BlD;AA9BD,WAAiB,kCAAkC;IACjD,SAAgB,UAAU,CACxB,GAAuC,EACvC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAwC,CAAC,GACrF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,6CAAU,aAYzB,CAAA;IACY,uCAAI,GAAG,eAAe,CAAC;IACpC,SAAgB,sBAAsB,CACpC,GAAuC,EACvC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CACmC,CAAC,GAC1C,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,yDAAsB,yBAcrC,CAAA;AACH,CAAC,EA9BgB,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QA8BlD"}
@@ -0,0 +1,58 @@
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 bucket 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 ObjectStorageTargetDetailsResponse extends model.TargetDetailsResponse {
25
+ /**
26
+ * The namespace.
27
+ *
28
+ */
29
+ "namespace"?: string;
30
+ /**
31
+ * The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-),
32
+ * underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace.
33
+ * Avoid entering confidential information. Example: my-new-bucket1
34
+ *
35
+ */
36
+ "bucketName": string;
37
+ /**
38
+ * The prefix of the objects. Avoid entering confidential information.
39
+ *
40
+ */
41
+ "objectNamePrefix"?: string;
42
+ /**
43
+ * The batch rollover size in megabytes.
44
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
45
+ */
46
+ "batchRolloverSizeInMBs"?: number;
47
+ /**
48
+ * The batch rollover time in milliseconds.
49
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
50
+ */
51
+ "batchRolloverTimeInMs"?: number;
52
+ "kind": string;
53
+ }
54
+ export declare namespace ObjectStorageTargetDetailsResponse {
55
+ function getJsonObj(obj: ObjectStorageTargetDetailsResponse, isParentJsonObj?: boolean): object;
56
+ const kind = "objectStorage";
57
+ function getDeserializedJsonObj(obj: ObjectStorageTargetDetailsResponse, isParentJsonObj?: boolean): object;
58
+ }
@@ -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.ObjectStorageTargetDetailsResponse = void 0;
39
+ const model = __importStar(require("../model"));
40
+ var ObjectStorageTargetDetailsResponse;
41
+ (function (ObjectStorageTargetDetailsResponse) {
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
+ ObjectStorageTargetDetailsResponse.getJsonObj = getJsonObj;
49
+ ObjectStorageTargetDetailsResponse.kind = "objectStorage";
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
+ ObjectStorageTargetDetailsResponse.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(ObjectStorageTargetDetailsResponse = exports.ObjectStorageTargetDetailsResponse || (exports.ObjectStorageTargetDetailsResponse = {}));
58
+ //# sourceMappingURL=object-storage-target-details-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"object-storage-target-details-response.js","sourceRoot":"","sources":["../../../../../lib/sch/lib/model/object-storage-target-details-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyClC,IAAiB,kCAAkC,CA8BlD;AA9BD,WAAiB,kCAAkC;IACjD,SAAgB,UAAU,CACxB,GAAuC,EACvC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAwC,CAAC,GACrF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,6CAAU,aAYzB,CAAA;IACY,uCAAI,GAAG,eAAe,CAAC;IACpC,SAAgB,sBAAsB,CACpC,GAAuC,EACvC,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CACjD,GAAG,CACmC,CAAC,GAC1C,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAde,yDAAsB,yBAcrC,CAAA;AACH,CAAC,EA9BgB,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QA8BlD"}