oci-recovery 2.52.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 (275) hide show
  1. package/LICENSE.txt +89 -0
  2. package/NOTICE.txt +1 -0
  3. package/README.md +22 -0
  4. package/THIRD_PARTY_LICENSES.txt +576 -0
  5. package/index.d.ts +22 -0
  6. package/index.js +45 -0
  7. package/index.js.map +1 -0
  8. package/lib/client.d.ts +290 -0
  9. package/lib/client.js +1669 -0
  10. package/lib/client.js.map +1 -0
  11. package/lib/databaserecovery-waiter.d.ts +52 -0
  12. package/lib/databaserecovery-waiter.js +100 -0
  13. package/lib/databaserecovery-waiter.js.map +1 -0
  14. package/lib/model/action-type.d.ts +32 -0
  15. package/lib/model/action-type.js +43 -0
  16. package/lib/model/action-type.js.map +1 -0
  17. package/lib/model/change-protected-database-compartment-details.d.ts +26 -0
  18. package/lib/model/change-protected-database-compartment-details.js +29 -0
  19. package/lib/model/change-protected-database-compartment-details.js.map +1 -0
  20. package/lib/model/change-protection-policy-compartment-details.d.ts +26 -0
  21. package/lib/model/change-protection-policy-compartment-details.js +29 -0
  22. package/lib/model/change-protection-policy-compartment-details.js.map +1 -0
  23. package/lib/model/change-recovery-service-subnet-compartment-details.d.ts +26 -0
  24. package/lib/model/change-recovery-service-subnet-compartment-details.js +29 -0
  25. package/lib/model/change-recovery-service-subnet-compartment-details.js.map +1 -0
  26. package/lib/model/create-protected-database-details.d.ts +93 -0
  27. package/lib/model/create-protected-database-details.js +61 -0
  28. package/lib/model/create-protected-database-details.js.map +1 -0
  29. package/lib/model/create-protection-policy-details.d.ts +51 -0
  30. package/lib/model/create-protection-policy-details.js +29 -0
  31. package/lib/model/create-protection-policy-details.js.map +1 -0
  32. package/lib/model/create-recovery-service-subnet-details.d.ts +55 -0
  33. package/lib/model/create-recovery-service-subnet-details.js +29 -0
  34. package/lib/model/create-recovery-service-subnet-details.js.map +1 -0
  35. package/lib/model/database-sizes.d.ts +33 -0
  36. package/lib/model/database-sizes.js +44 -0
  37. package/lib/model/database-sizes.js.map +1 -0
  38. package/lib/model/fetch-protected-database-configuration-details.d.ts +31 -0
  39. package/lib/model/fetch-protected-database-configuration-details.js +36 -0
  40. package/lib/model/fetch-protected-database-configuration-details.js.map +1 -0
  41. package/lib/model/health.d.ts +29 -0
  42. package/lib/model/health.js +40 -0
  43. package/lib/model/health.js.map +1 -0
  44. package/lib/model/index.d.ts +88 -0
  45. package/lib/model/index.js +111 -0
  46. package/lib/model/index.js.map +1 -0
  47. package/lib/model/lifecycle-state.d.ts +32 -0
  48. package/lib/model/lifecycle-state.js +43 -0
  49. package/lib/model/lifecycle-state.js.map +1 -0
  50. package/lib/model/metrics-summary.d.ts +53 -0
  51. package/lib/model/metrics-summary.js +29 -0
  52. package/lib/model/metrics-summary.js.map +1 -0
  53. package/lib/model/metrics.d.ts +53 -0
  54. package/lib/model/metrics.js +29 -0
  55. package/lib/model/metrics.js.map +1 -0
  56. package/lib/model/operation-status.d.ts +32 -0
  57. package/lib/model/operation-status.js +43 -0
  58. package/lib/model/operation-status.js.map +1 -0
  59. package/lib/model/operation-type.d.ts +38 -0
  60. package/lib/model/operation-type.js +49 -0
  61. package/lib/model/operation-type.js.map +1 -0
  62. package/lib/model/protected-database-collection.d.ts +26 -0
  63. package/lib/model/protected-database-collection.js +61 -0
  64. package/lib/model/protected-database-collection.js.map +1 -0
  65. package/lib/model/protected-database-summary.d.ts +127 -0
  66. package/lib/model/protected-database-summary.js +65 -0
  67. package/lib/model/protected-database-summary.js.map +1 -0
  68. package/lib/model/protected-database.d.ts +157 -0
  69. package/lib/model/protected-database.js +63 -0
  70. package/lib/model/protected-database.js.map +1 -0
  71. package/lib/model/protection-policy-collection.d.ts +26 -0
  72. package/lib/model/protection-policy-collection.js +61 -0
  73. package/lib/model/protection-policy-collection.js.map +1 -0
  74. package/lib/model/protection-policy-summary.d.ts +91 -0
  75. package/lib/model/protection-policy-summary.js +29 -0
  76. package/lib/model/protection-policy-summary.js.map +1 -0
  77. package/lib/model/protection-policy.d.ts +97 -0
  78. package/lib/model/protection-policy.js +29 -0
  79. package/lib/model/protection-policy.js.map +1 -0
  80. package/lib/model/recovery-service-subnet-collection.d.ts +26 -0
  81. package/lib/model/recovery-service-subnet-collection.js +61 -0
  82. package/lib/model/recovery-service-subnet-collection.js.map +1 -0
  83. package/lib/model/recovery-service-subnet-details.d.ts +30 -0
  84. package/lib/model/recovery-service-subnet-details.js +29 -0
  85. package/lib/model/recovery-service-subnet-details.js.map +1 -0
  86. package/lib/model/recovery-service-subnet-input.d.ts +25 -0
  87. package/lib/model/recovery-service-subnet-input.js +29 -0
  88. package/lib/model/recovery-service-subnet-input.js.map +1 -0
  89. package/lib/model/recovery-service-subnet-summary.d.ts +101 -0
  90. package/lib/model/recovery-service-subnet-summary.js +29 -0
  91. package/lib/model/recovery-service-subnet-summary.js.map +1 -0
  92. package/lib/model/recovery-service-subnet.d.ts +99 -0
  93. package/lib/model/recovery-service-subnet.js +29 -0
  94. package/lib/model/recovery-service-subnet.js.map +1 -0
  95. package/lib/model/sort-order.d.ts +23 -0
  96. package/lib/model/sort-order.js +34 -0
  97. package/lib/model/sort-order.js.map +1 -0
  98. package/lib/model/update-protected-database-details.d.ts +75 -0
  99. package/lib/model/update-protected-database-details.js +61 -0
  100. package/lib/model/update-protected-database-details.js.map +1 -0
  101. package/lib/model/update-protection-policy-details.d.ts +47 -0
  102. package/lib/model/update-protection-policy-details.js +29 -0
  103. package/lib/model/update-protection-policy-details.js.map +1 -0
  104. package/lib/model/update-recovery-service-subnet-details.d.ts +43 -0
  105. package/lib/model/update-recovery-service-subnet-details.js +29 -0
  106. package/lib/model/update-recovery-service-subnet-details.js.map +1 -0
  107. package/lib/model/work-request-error-collection.d.ts +26 -0
  108. package/lib/model/work-request-error-collection.js +61 -0
  109. package/lib/model/work-request-error-collection.js.map +1 -0
  110. package/lib/model/work-request-error.d.ts +35 -0
  111. package/lib/model/work-request-error.js +29 -0
  112. package/lib/model/work-request-error.js.map +1 -0
  113. package/lib/model/work-request-log-entry-collection.d.ts +26 -0
  114. package/lib/model/work-request-log-entry-collection.js +61 -0
  115. package/lib/model/work-request-log-entry-collection.js.map +1 -0
  116. package/lib/model/work-request-log-entry.d.ts +29 -0
  117. package/lib/model/work-request-log-entry.js +29 -0
  118. package/lib/model/work-request-log-entry.js.map +1 -0
  119. package/lib/model/work-request-resource.d.ts +42 -0
  120. package/lib/model/work-request-resource.js +29 -0
  121. package/lib/model/work-request-resource.js.map +1 -0
  122. package/lib/model/work-request-summary-collection.d.ts +26 -0
  123. package/lib/model/work-request-summary-collection.js +61 -0
  124. package/lib/model/work-request-summary-collection.js.map +1 -0
  125. package/lib/model/work-request-summary.d.ts +65 -0
  126. package/lib/model/work-request-summary.js +61 -0
  127. package/lib/model/work-request-summary.js.map +1 -0
  128. package/lib/model/work-request.d.ts +67 -0
  129. package/lib/model/work-request.js +61 -0
  130. package/lib/model/work-request.js.map +1 -0
  131. package/lib/request/change-protected-database-compartment-request.d.ts +40 -0
  132. package/lib/request/change-protected-database-compartment-request.js +15 -0
  133. package/lib/request/change-protected-database-compartment-request.js.map +1 -0
  134. package/lib/request/change-protection-policy-compartment-request.d.ts +40 -0
  135. package/lib/request/change-protection-policy-compartment-request.js +15 -0
  136. package/lib/request/change-protection-policy-compartment-request.js.map +1 -0
  137. package/lib/request/change-recovery-service-subnet-compartment-request.d.ts +40 -0
  138. package/lib/request/change-recovery-service-subnet-compartment-request.js +15 -0
  139. package/lib/request/change-recovery-service-subnet-compartment-request.js.map +1 -0
  140. package/lib/request/create-protected-database-request.d.ts +36 -0
  141. package/lib/request/create-protected-database-request.js +15 -0
  142. package/lib/request/create-protected-database-request.js.map +1 -0
  143. package/lib/request/create-protection-policy-request.d.ts +36 -0
  144. package/lib/request/create-protection-policy-request.js +15 -0
  145. package/lib/request/create-protection-policy-request.js.map +1 -0
  146. package/lib/request/create-recovery-service-subnet-request.d.ts +36 -0
  147. package/lib/request/create-recovery-service-subnet-request.js +15 -0
  148. package/lib/request/create-recovery-service-subnet-request.js.map +1 -0
  149. package/lib/request/delete-protected-database-request.d.ts +35 -0
  150. package/lib/request/delete-protected-database-request.js +15 -0
  151. package/lib/request/delete-protected-database-request.js.map +1 -0
  152. package/lib/request/delete-protection-policy-request.d.ts +35 -0
  153. package/lib/request/delete-protection-policy-request.js +15 -0
  154. package/lib/request/delete-protection-policy-request.js.map +1 -0
  155. package/lib/request/delete-recovery-service-subnet-request.d.ts +35 -0
  156. package/lib/request/delete-recovery-service-subnet-request.js +15 -0
  157. package/lib/request/delete-recovery-service-subnet-request.js.map +1 -0
  158. package/lib/request/fetch-protected-database-configuration-request.d.ts +40 -0
  159. package/lib/request/fetch-protected-database-configuration-request.js +15 -0
  160. package/lib/request/fetch-protected-database-configuration-request.js.map +1 -0
  161. package/lib/request/get-protected-database-request.d.ts +26 -0
  162. package/lib/request/get-protected-database-request.js +15 -0
  163. package/lib/request/get-protected-database-request.js.map +1 -0
  164. package/lib/request/get-protection-policy-request.d.ts +26 -0
  165. package/lib/request/get-protection-policy-request.js +15 -0
  166. package/lib/request/get-protection-policy-request.js.map +1 -0
  167. package/lib/request/get-recovery-service-subnet-request.d.ts +26 -0
  168. package/lib/request/get-recovery-service-subnet-request.js +15 -0
  169. package/lib/request/get-recovery-service-subnet-request.js.map +1 -0
  170. package/lib/request/get-work-request-request.d.ts +26 -0
  171. package/lib/request/get-work-request-request.js +15 -0
  172. package/lib/request/get-work-request-request.js.map +1 -0
  173. package/lib/request/index.d.ts +58 -0
  174. package/lib/request/index.js +47 -0
  175. package/lib/request/index.js.map +1 -0
  176. package/lib/request/list-protected-databases-request.d.ts +76 -0
  177. package/lib/request/list-protected-databases-request.js +24 -0
  178. package/lib/request/list-protected-databases-request.js.map +1 -0
  179. package/lib/request/list-protection-policies-request.d.ts +76 -0
  180. package/lib/request/list-protection-policies-request.js +29 -0
  181. package/lib/request/list-protection-policies-request.js.map +1 -0
  182. package/lib/request/list-recovery-service-subnets-request.d.ts +79 -0
  183. package/lib/request/list-recovery-service-subnets-request.js +24 -0
  184. package/lib/request/list-recovery-service-subnets-request.js.map +1 -0
  185. package/lib/request/list-work-request-errors-request.d.ts +52 -0
  186. package/lib/request/list-work-request-errors-request.js +23 -0
  187. package/lib/request/list-work-request-errors-request.js.map +1 -0
  188. package/lib/request/list-work-request-logs-request.d.ts +52 -0
  189. package/lib/request/list-work-request-logs-request.js +23 -0
  190. package/lib/request/list-work-request-logs-request.js.map +1 -0
  191. package/lib/request/list-work-requests-request.d.ts +64 -0
  192. package/lib/request/list-work-requests-request.js +23 -0
  193. package/lib/request/list-work-requests-request.js.map +1 -0
  194. package/lib/request/update-protected-database-request.d.ts +40 -0
  195. package/lib/request/update-protected-database-request.js +15 -0
  196. package/lib/request/update-protected-database-request.js.map +1 -0
  197. package/lib/request/update-protection-policy-request.d.ts +40 -0
  198. package/lib/request/update-protection-policy-request.js +15 -0
  199. package/lib/request/update-protection-policy-request.js.map +1 -0
  200. package/lib/request/update-recovery-service-subnet-request.d.ts +40 -0
  201. package/lib/request/update-recovery-service-subnet-request.js +15 -0
  202. package/lib/request/update-recovery-service-subnet-request.js.map +1 -0
  203. package/lib/response/change-protected-database-compartment-response.d.ts +25 -0
  204. package/lib/response/change-protected-database-compartment-response.js +15 -0
  205. package/lib/response/change-protected-database-compartment-response.js.map +1 -0
  206. package/lib/response/change-protection-policy-compartment-response.d.ts +25 -0
  207. package/lib/response/change-protection-policy-compartment-response.js +15 -0
  208. package/lib/response/change-protection-policy-compartment-response.js.map +1 -0
  209. package/lib/response/change-recovery-service-subnet-compartment-response.d.ts +25 -0
  210. package/lib/response/change-recovery-service-subnet-compartment-response.js +15 -0
  211. package/lib/response/change-recovery-service-subnet-compartment-response.js.map +1 -0
  212. package/lib/response/create-protected-database-response.d.ts +40 -0
  213. package/lib/response/create-protected-database-response.js +15 -0
  214. package/lib/response/create-protected-database-response.js.map +1 -0
  215. package/lib/response/create-protection-policy-response.d.ts +40 -0
  216. package/lib/response/create-protection-policy-response.js +15 -0
  217. package/lib/response/create-protection-policy-response.js.map +1 -0
  218. package/lib/response/create-recovery-service-subnet-response.d.ts +40 -0
  219. package/lib/response/create-recovery-service-subnet-response.js +15 -0
  220. package/lib/response/create-recovery-service-subnet-response.js.map +1 -0
  221. package/lib/response/delete-protected-database-response.d.ts +25 -0
  222. package/lib/response/delete-protected-database-response.js +15 -0
  223. package/lib/response/delete-protected-database-response.js.map +1 -0
  224. package/lib/response/delete-protection-policy-response.d.ts +25 -0
  225. package/lib/response/delete-protection-policy-response.js +15 -0
  226. package/lib/response/delete-protection-policy-response.js.map +1 -0
  227. package/lib/response/delete-recovery-service-subnet-response.d.ts +25 -0
  228. package/lib/response/delete-recovery-service-subnet-response.js +15 -0
  229. package/lib/response/delete-recovery-service-subnet-response.js.map +1 -0
  230. package/lib/response/fetch-protected-database-configuration-response.d.ts +31 -0
  231. package/lib/response/fetch-protected-database-configuration-response.js +15 -0
  232. package/lib/response/fetch-protected-database-configuration-response.js.map +1 -0
  233. package/lib/response/get-protected-database-response.d.ts +30 -0
  234. package/lib/response/get-protected-database-response.js +15 -0
  235. package/lib/response/get-protected-database-response.js.map +1 -0
  236. package/lib/response/get-protection-policy-response.d.ts +30 -0
  237. package/lib/response/get-protection-policy-response.js +15 -0
  238. package/lib/response/get-protection-policy-response.js.map +1 -0
  239. package/lib/response/get-recovery-service-subnet-response.d.ts +30 -0
  240. package/lib/response/get-recovery-service-subnet-response.js +15 -0
  241. package/lib/response/get-recovery-service-subnet-response.js.map +1 -0
  242. package/lib/response/get-work-request-response.d.ts +29 -0
  243. package/lib/response/get-work-request-response.js +15 -0
  244. package/lib/response/get-work-request-response.js.map +1 -0
  245. package/lib/response/index.d.ts +58 -0
  246. package/lib/response/index.js +15 -0
  247. package/lib/response/index.js.map +1 -0
  248. package/lib/response/list-protected-databases-response.d.ts +32 -0
  249. package/lib/response/list-protected-databases-response.js +15 -0
  250. package/lib/response/list-protected-databases-response.js.map +1 -0
  251. package/lib/response/list-protection-policies-response.d.ts +32 -0
  252. package/lib/response/list-protection-policies-response.js +15 -0
  253. package/lib/response/list-protection-policies-response.js.map +1 -0
  254. package/lib/response/list-recovery-service-subnets-response.d.ts +32 -0
  255. package/lib/response/list-recovery-service-subnets-response.js +15 -0
  256. package/lib/response/list-recovery-service-subnets-response.js.map +1 -0
  257. package/lib/response/list-work-request-errors-response.d.ts +32 -0
  258. package/lib/response/list-work-request-errors-response.js +15 -0
  259. package/lib/response/list-work-request-errors-response.js.map +1 -0
  260. package/lib/response/list-work-request-logs-response.d.ts +32 -0
  261. package/lib/response/list-work-request-logs-response.js +15 -0
  262. package/lib/response/list-work-request-logs-response.js.map +1 -0
  263. package/lib/response/list-work-requests-response.d.ts +32 -0
  264. package/lib/response/list-work-requests-response.js +15 -0
  265. package/lib/response/list-work-requests-response.js.map +1 -0
  266. package/lib/response/update-protected-database-response.d.ts +25 -0
  267. package/lib/response/update-protected-database-response.js +15 -0
  268. package/lib/response/update-protected-database-response.js.map +1 -0
  269. package/lib/response/update-protection-policy-response.d.ts +25 -0
  270. package/lib/response/update-protection-policy-response.js +15 -0
  271. package/lib/response/update-protection-policy-response.js.map +1 -0
  272. package/lib/response/update-recovery-service-subnet-response.d.ts +25 -0
  273. package/lib/response/update-recovery-service-subnet-response.js +15 -0
  274. package/lib/response/update-recovery-service-subnet-response.js.map +1 -0
  275. package/package.json +29 -0
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, 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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15
+ if (k2 === undefined) k2 = k;
16
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
17
+ }) : (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ o[k2] = m[k];
20
+ }));
21
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
22
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
23
+ }) : function(o, v) {
24
+ o["default"] = v;
25
+ });
26
+ var __importStar = (this && this.__importStar) || function (mod) {
27
+ if (mod && mod.__esModule) return mod;
28
+ var result = {};
29
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
30
+ __setModuleDefault(result, mod);
31
+ return result;
32
+ };
33
+ Object.defineProperty(exports, "__esModule", { value: true });
34
+ exports.CreateProtectedDatabaseDetails = void 0;
35
+ const model = __importStar(require("../model"));
36
+ var CreateProtectedDatabaseDetails;
37
+ (function (CreateProtectedDatabaseDetails) {
38
+ function getJsonObj(obj) {
39
+ const jsonObj = Object.assign(Object.assign({}, obj), {
40
+ "recoveryServiceSubnets": obj.recoveryServiceSubnets
41
+ ? obj.recoveryServiceSubnets.map(item => {
42
+ return model.RecoveryServiceSubnetInput.getJsonObj(item);
43
+ })
44
+ : undefined
45
+ });
46
+ return jsonObj;
47
+ }
48
+ CreateProtectedDatabaseDetails.getJsonObj = getJsonObj;
49
+ function getDeserializedJsonObj(obj) {
50
+ const jsonObj = Object.assign(Object.assign({}, obj), {
51
+ "recoveryServiceSubnets": obj.recoveryServiceSubnets
52
+ ? obj.recoveryServiceSubnets.map(item => {
53
+ return model.RecoveryServiceSubnetInput.getDeserializedJsonObj(item);
54
+ })
55
+ : undefined
56
+ });
57
+ return jsonObj;
58
+ }
59
+ CreateProtectedDatabaseDetails.getDeserializedJsonObj = getDeserializedJsonObj;
60
+ })(CreateProtectedDatabaseDetails = exports.CreateProtectedDatabaseDetails || (exports.CreateProtectedDatabaseDetails = {}));
61
+ //# sourceMappingURL=create-protected-database-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-protected-database-details.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/create-protected-database-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA0ElC,IAAiB,8BAA8B,CA6B9C;AA7BD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACpC,OAAO,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC3D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,yCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,wBAAwB,EAAE,GAAG,CAAC,sBAAsB;gBAClD,CAAC,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACpC,OAAO,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACvE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,qDAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QA6B9C"}
@@ -0,0 +1,51 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * Describes the parameters required to create a custom protection policy.
15
+ */
16
+ export interface CreateProtectionPolicyDetails {
17
+ /**
18
+ * A user provided name for the protection policy. The 'displayName' does not have to be unique, and it can be modified. Avoid entering confidential information.
19
+ */
20
+ "displayName": string;
21
+ /**
22
+ * The maximum number of days to retain backups for a protected database. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
23
+ */
24
+ "backupRetentionPeriodInDays": number;
25
+ /**
26
+ * Compartment Identifier
27
+ */
28
+ "compartmentId": string;
29
+ /**
30
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
31
+ * Example: `{\"bar-key\": \"value\"}`
32
+ *
33
+ */
34
+ "freeformTags"?: {
35
+ [key: string]: string;
36
+ };
37
+ /**
38
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
39
+ * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
40
+ *
41
+ */
42
+ "definedTags"?: {
43
+ [key: string]: {
44
+ [key: string]: any;
45
+ };
46
+ };
47
+ }
48
+ export declare namespace CreateProtectionPolicyDetails {
49
+ function getJsonObj(obj: CreateProtectionPolicyDetails): object;
50
+ function getDeserializedJsonObj(obj: CreateProtectionPolicyDetails): object;
51
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
12
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.CreateProtectionPolicyDetails = void 0;
16
+ var CreateProtectionPolicyDetails;
17
+ (function (CreateProtectionPolicyDetails) {
18
+ function getJsonObj(obj) {
19
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
20
+ return jsonObj;
21
+ }
22
+ CreateProtectionPolicyDetails.getJsonObj = getJsonObj;
23
+ function getDeserializedJsonObj(obj) {
24
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
25
+ return jsonObj;
26
+ }
27
+ CreateProtectionPolicyDetails.getDeserializedJsonObj = getDeserializedJsonObj;
28
+ })(CreateProtectionPolicyDetails = exports.CreateProtectionPolicyDetails || (exports.CreateProtectionPolicyDetails = {}));
29
+ //# sourceMappingURL=create-protection-policy-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-protection-policy-details.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/create-protection-policy-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAmCH,IAAiB,6BAA6B,CAW7C;AAXD,WAAiB,6BAA6B;IAC5C,SAAgB,UAAU,CAAC,GAAkC;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkC;QACvE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,6BAA6B,GAA7B,qCAA6B,KAA7B,qCAA6B,QAW7C"}
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * Describes the parameters required to create a recovery service subnet.
15
+ */
16
+ export interface CreateRecoveryServiceSubnetDetails {
17
+ /**
18
+ * A user-provided name for the recovery service subnet. The 'displayName' does not have to be unique, and it can be modified. Avoid entering confidential information.
19
+ */
20
+ "displayName": string;
21
+ /**
22
+ * The OCID of the subnet associated with the recovery service subnet. You can create a single backup network per virtual cloud network (VCN).
23
+ */
24
+ "subnetId": string;
25
+ /**
26
+ * The OCID of the virtual cloud network (VCN) that contains the recovery service subnet. You can create a single recovery service subnet per VCN.
27
+ */
28
+ "vcnId": string;
29
+ /**
30
+ * The compartment OCID.
31
+ */
32
+ "compartmentId": string;
33
+ /**
34
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
35
+ * Example: `{\"bar-key\": \"value\"}`
36
+ *
37
+ */
38
+ "freeformTags"?: {
39
+ [key: string]: string;
40
+ };
41
+ /**
42
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
43
+ * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`. For more information, see [Resource Tags](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/resourcetags.htm)
44
+ *
45
+ */
46
+ "definedTags"?: {
47
+ [key: string]: {
48
+ [key: string]: any;
49
+ };
50
+ };
51
+ }
52
+ export declare namespace CreateRecoveryServiceSubnetDetails {
53
+ function getJsonObj(obj: CreateRecoveryServiceSubnetDetails): object;
54
+ function getDeserializedJsonObj(obj: CreateRecoveryServiceSubnetDetails): object;
55
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
12
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.CreateRecoveryServiceSubnetDetails = void 0;
16
+ var CreateRecoveryServiceSubnetDetails;
17
+ (function (CreateRecoveryServiceSubnetDetails) {
18
+ function getJsonObj(obj) {
19
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
20
+ return jsonObj;
21
+ }
22
+ CreateRecoveryServiceSubnetDetails.getJsonObj = getJsonObj;
23
+ function getDeserializedJsonObj(obj) {
24
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
25
+ return jsonObj;
26
+ }
27
+ CreateRecoveryServiceSubnetDetails.getDeserializedJsonObj = getDeserializedJsonObj;
28
+ })(CreateRecoveryServiceSubnetDetails = exports.CreateRecoveryServiceSubnetDetails || (exports.CreateRecoveryServiceSubnetDetails = {}));
29
+ //# sourceMappingURL=create-recovery-service-subnet-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-recovery-service-subnet-details.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/create-recovery-service-subnet-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAuCH,IAAiB,kCAAkC,CAWlD;AAXD,WAAiB,kCAAkC;IACjD,SAAgB,UAAU,CAAC,GAAuC;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuC;QAC5E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QAWlD"}
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * Possible database sizes.
15
+ **/
16
+ export declare enum DatabaseSizes {
17
+ Xs = "XS",
18
+ S = "S",
19
+ M = "M",
20
+ L = "L",
21
+ Xl = "XL",
22
+ Xxl = "XXL",
23
+ Auto = "AUTO",
24
+ /**
25
+ * This value is used if a service returns a value for this enum that is not recognized by this
26
+ * version of the SDK.
27
+ */
28
+ UnknownValue = "UNKNOWN_VALUE"
29
+ }
30
+ export declare namespace DatabaseSizes {
31
+ function getJsonObj(obj: DatabaseSizes): DatabaseSizes;
32
+ function getDeserializedJsonObj(obj: DatabaseSizes): DatabaseSizes;
33
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
12
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.DatabaseSizes = void 0;
16
+ /**
17
+ * Possible database sizes.
18
+ **/
19
+ var DatabaseSizes;
20
+ (function (DatabaseSizes) {
21
+ DatabaseSizes["Xs"] = "XS";
22
+ DatabaseSizes["S"] = "S";
23
+ DatabaseSizes["M"] = "M";
24
+ DatabaseSizes["L"] = "L";
25
+ DatabaseSizes["Xl"] = "XL";
26
+ DatabaseSizes["Xxl"] = "XXL";
27
+ DatabaseSizes["Auto"] = "AUTO";
28
+ /**
29
+ * This value is used if a service returns a value for this enum that is not recognized by this
30
+ * version of the SDK.
31
+ */
32
+ DatabaseSizes["UnknownValue"] = "UNKNOWN_VALUE";
33
+ })(DatabaseSizes = exports.DatabaseSizes || (exports.DatabaseSizes = {}));
34
+ (function (DatabaseSizes) {
35
+ function getJsonObj(obj) {
36
+ return obj;
37
+ }
38
+ DatabaseSizes.getJsonObj = getJsonObj;
39
+ function getDeserializedJsonObj(obj) {
40
+ return obj;
41
+ }
42
+ DatabaseSizes.getDeserializedJsonObj = getDeserializedJsonObj;
43
+ })(DatabaseSizes = exports.DatabaseSizes || (exports.DatabaseSizes = {}));
44
+ //# sourceMappingURL=database-sizes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"database-sizes.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/database-sizes.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,aAcX;AAdD,WAAY,aAAa;IACvB,0BAAS,CAAA;IACT,wBAAO,CAAA;IACP,wBAAO,CAAA;IACP,wBAAO,CAAA;IACP,0BAAS,CAAA;IACT,4BAAW,CAAA;IACX,8BAAa,CAAA;IAEb;;;OAGG;IACH,+CAA8B,CAAA;AAChC,CAAC,EAdW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAcxB;AAED,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,wBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,oCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAO7B"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * Provides which configuration details to get.
15
+ */
16
+ export interface FetchProtectedDatabaseConfigurationDetails {
17
+ /**
18
+ * Currently has four config options ALL, TNSNAMES, HOSTS and CABUNDLE. All will return a zipped folder containing the contents of both tnsnames and the certificateChainPem.
19
+ */
20
+ "configurationType"?: FetchProtectedDatabaseConfigurationDetails.ConfigurationType;
21
+ }
22
+ export declare namespace FetchProtectedDatabaseConfigurationDetails {
23
+ enum ConfigurationType {
24
+ Cabundle = "CABUNDLE",
25
+ Tnsnames = "TNSNAMES",
26
+ Hosts = "HOSTS",
27
+ All = "ALL"
28
+ }
29
+ function getJsonObj(obj: FetchProtectedDatabaseConfigurationDetails): object;
30
+ function getDeserializedJsonObj(obj: FetchProtectedDatabaseConfigurationDetails): object;
31
+ }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
12
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.FetchProtectedDatabaseConfigurationDetails = void 0;
16
+ var FetchProtectedDatabaseConfigurationDetails;
17
+ (function (FetchProtectedDatabaseConfigurationDetails) {
18
+ let ConfigurationType;
19
+ (function (ConfigurationType) {
20
+ ConfigurationType["Cabundle"] = "CABUNDLE";
21
+ ConfigurationType["Tnsnames"] = "TNSNAMES";
22
+ ConfigurationType["Hosts"] = "HOSTS";
23
+ ConfigurationType["All"] = "ALL";
24
+ })(ConfigurationType = FetchProtectedDatabaseConfigurationDetails.ConfigurationType || (FetchProtectedDatabaseConfigurationDetails.ConfigurationType = {}));
25
+ function getJsonObj(obj) {
26
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
27
+ return jsonObj;
28
+ }
29
+ FetchProtectedDatabaseConfigurationDetails.getJsonObj = getJsonObj;
30
+ function getDeserializedJsonObj(obj) {
31
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
32
+ return jsonObj;
33
+ }
34
+ FetchProtectedDatabaseConfigurationDetails.getDeserializedJsonObj = getDeserializedJsonObj;
35
+ })(FetchProtectedDatabaseConfigurationDetails = exports.FetchProtectedDatabaseConfigurationDetails || (exports.FetchProtectedDatabaseConfigurationDetails = {}));
36
+ //# sourceMappingURL=fetch-protected-database-configuration-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fetch-protected-database-configuration-details.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/fetch-protected-database-configuration-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAeH,IAAiB,0CAA0C,CAkB1D;AAlBD,WAAiB,0CAA0C;IACzD,IAAY,iBAKX;IALD,WAAY,iBAAiB;QAC3B,0CAAqB,CAAA;QACrB,0CAAqB,CAAA;QACrB,oCAAe,CAAA;QACf,gCAAW,CAAA;IACb,CAAC,EALW,iBAAiB,GAAjB,4DAAiB,KAAjB,4DAAiB,QAK5B;IAED,SAAgB,UAAU,CAAC,GAA+C;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA+C;QACpF,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iEAAsB,yBAIrC,CAAA;AACH,CAAC,EAlBgB,0CAA0C,GAA1C,kDAA0C,KAA1C,kDAA0C,QAkB1D"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
11
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+ */
13
+ /**
14
+ * The current health of the resource
15
+ **/
16
+ export declare enum Health {
17
+ Protected = "PROTECTED",
18
+ Warning = "WARNING",
19
+ Alert = "ALERT",
20
+ /**
21
+ * This value is used if a service returns a value for this enum that is not recognized by this
22
+ * version of the SDK.
23
+ */
24
+ UnknownValue = "UNKNOWN_VALUE"
25
+ }
26
+ export declare namespace Health {
27
+ function getJsonObj(obj: Health): Health;
28
+ function getDeserializedJsonObj(obj: Health): Health;
29
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ /**
3
+ * Oracle Database Autonomous Recovery Service API
4
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
5
+ * OpenAPI spec version: 20210216
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
12
+ * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.Health = void 0;
16
+ /**
17
+ * The current health of the resource
18
+ **/
19
+ var Health;
20
+ (function (Health) {
21
+ Health["Protected"] = "PROTECTED";
22
+ Health["Warning"] = "WARNING";
23
+ Health["Alert"] = "ALERT";
24
+ /**
25
+ * This value is used if a service returns a value for this enum that is not recognized by this
26
+ * version of the SDK.
27
+ */
28
+ Health["UnknownValue"] = "UNKNOWN_VALUE";
29
+ })(Health = exports.Health || (exports.Health = {}));
30
+ (function (Health) {
31
+ function getJsonObj(obj) {
32
+ return obj;
33
+ }
34
+ Health.getJsonObj = getJsonObj;
35
+ function getDeserializedJsonObj(obj) {
36
+ return obj;
37
+ }
38
+ Health.getDeserializedJsonObj = getDeserializedJsonObj;
39
+ })(Health = exports.Health || (exports.Health = {}));
40
+ //# sourceMappingURL=health.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"health.js","sourceRoot":"","sources":["../../../../../lib/recovery/lib/model/health.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,MAUX;AAVD,WAAY,MAAM;IAChB,iCAAuB,CAAA;IACvB,6BAAmB,CAAA;IACnB,yBAAe,CAAA;IAEf;;;OAGG;IACH,wCAA8B,CAAA;AAChC,CAAC,EAVW,MAAM,GAAN,cAAM,KAAN,cAAM,QAUjB;AAED,WAAiB,MAAM;IACrB,SAAgB,UAAU,CAAC,GAAW;QACpC,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,iBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAW;QAChD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,6BAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAOtB"}
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Oracle Database Autonomous Recovery Service API
3
+ * Use Oracle Database Autonomous Recovery Service API to manage Protected Databases.
4
+ * OpenAPI spec version: 20210216
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2023, 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 * as ActionType from "./action-type";
14
+ export import ActionType = ActionType.ActionType;
15
+ import * as ChangeProtectedDatabaseCompartmentDetails from "./change-protected-database-compartment-details";
16
+ export import ChangeProtectedDatabaseCompartmentDetails = ChangeProtectedDatabaseCompartmentDetails.ChangeProtectedDatabaseCompartmentDetails;
17
+ import * as ChangeProtectionPolicyCompartmentDetails from "./change-protection-policy-compartment-details";
18
+ export import ChangeProtectionPolicyCompartmentDetails = ChangeProtectionPolicyCompartmentDetails.ChangeProtectionPolicyCompartmentDetails;
19
+ import * as ChangeRecoveryServiceSubnetCompartmentDetails from "./change-recovery-service-subnet-compartment-details";
20
+ export import ChangeRecoveryServiceSubnetCompartmentDetails = ChangeRecoveryServiceSubnetCompartmentDetails.ChangeRecoveryServiceSubnetCompartmentDetails;
21
+ import * as CreateProtectedDatabaseDetails from "./create-protected-database-details";
22
+ export import CreateProtectedDatabaseDetails = CreateProtectedDatabaseDetails.CreateProtectedDatabaseDetails;
23
+ import * as CreateProtectionPolicyDetails from "./create-protection-policy-details";
24
+ export import CreateProtectionPolicyDetails = CreateProtectionPolicyDetails.CreateProtectionPolicyDetails;
25
+ import * as CreateRecoveryServiceSubnetDetails from "./create-recovery-service-subnet-details";
26
+ export import CreateRecoveryServiceSubnetDetails = CreateRecoveryServiceSubnetDetails.CreateRecoveryServiceSubnetDetails;
27
+ import * as DatabaseSizes from "./database-sizes";
28
+ export import DatabaseSizes = DatabaseSizes.DatabaseSizes;
29
+ import * as FetchProtectedDatabaseConfigurationDetails from "./fetch-protected-database-configuration-details";
30
+ export import FetchProtectedDatabaseConfigurationDetails = FetchProtectedDatabaseConfigurationDetails.FetchProtectedDatabaseConfigurationDetails;
31
+ import * as Health from "./health";
32
+ export import Health = Health.Health;
33
+ import * as LifecycleState from "./lifecycle-state";
34
+ export import LifecycleState = LifecycleState.LifecycleState;
35
+ import * as Metrics from "./metrics";
36
+ export import Metrics = Metrics.Metrics;
37
+ import * as MetricsSummary from "./metrics-summary";
38
+ export import MetricsSummary = MetricsSummary.MetricsSummary;
39
+ import * as OperationStatus from "./operation-status";
40
+ export import OperationStatus = OperationStatus.OperationStatus;
41
+ import * as OperationType from "./operation-type";
42
+ export import OperationType = OperationType.OperationType;
43
+ import * as ProtectedDatabase from "./protected-database";
44
+ export import ProtectedDatabase = ProtectedDatabase.ProtectedDatabase;
45
+ import * as ProtectedDatabaseCollection from "./protected-database-collection";
46
+ export import ProtectedDatabaseCollection = ProtectedDatabaseCollection.ProtectedDatabaseCollection;
47
+ import * as ProtectedDatabaseSummary from "./protected-database-summary";
48
+ export import ProtectedDatabaseSummary = ProtectedDatabaseSummary.ProtectedDatabaseSummary;
49
+ import * as ProtectionPolicy from "./protection-policy";
50
+ export import ProtectionPolicy = ProtectionPolicy.ProtectionPolicy;
51
+ import * as ProtectionPolicyCollection from "./protection-policy-collection";
52
+ export import ProtectionPolicyCollection = ProtectionPolicyCollection.ProtectionPolicyCollection;
53
+ import * as ProtectionPolicySummary from "./protection-policy-summary";
54
+ export import ProtectionPolicySummary = ProtectionPolicySummary.ProtectionPolicySummary;
55
+ import * as RecoveryServiceSubnet from "./recovery-service-subnet";
56
+ export import RecoveryServiceSubnet = RecoveryServiceSubnet.RecoveryServiceSubnet;
57
+ import * as RecoveryServiceSubnetCollection from "./recovery-service-subnet-collection";
58
+ export import RecoveryServiceSubnetCollection = RecoveryServiceSubnetCollection.RecoveryServiceSubnetCollection;
59
+ import * as RecoveryServiceSubnetDetails from "./recovery-service-subnet-details";
60
+ export import RecoveryServiceSubnetDetails = RecoveryServiceSubnetDetails.RecoveryServiceSubnetDetails;
61
+ import * as RecoveryServiceSubnetInput from "./recovery-service-subnet-input";
62
+ export import RecoveryServiceSubnetInput = RecoveryServiceSubnetInput.RecoveryServiceSubnetInput;
63
+ import * as RecoveryServiceSubnetSummary from "./recovery-service-subnet-summary";
64
+ export import RecoveryServiceSubnetSummary = RecoveryServiceSubnetSummary.RecoveryServiceSubnetSummary;
65
+ import * as SortOrder from "./sort-order";
66
+ export import SortOrder = SortOrder.SortOrder;
67
+ import * as UpdateProtectedDatabaseDetails from "./update-protected-database-details";
68
+ export import UpdateProtectedDatabaseDetails = UpdateProtectedDatabaseDetails.UpdateProtectedDatabaseDetails;
69
+ import * as UpdateProtectionPolicyDetails from "./update-protection-policy-details";
70
+ export import UpdateProtectionPolicyDetails = UpdateProtectionPolicyDetails.UpdateProtectionPolicyDetails;
71
+ import * as UpdateRecoveryServiceSubnetDetails from "./update-recovery-service-subnet-details";
72
+ export import UpdateRecoveryServiceSubnetDetails = UpdateRecoveryServiceSubnetDetails.UpdateRecoveryServiceSubnetDetails;
73
+ import * as WorkRequest from "./work-request";
74
+ export import WorkRequest = WorkRequest.WorkRequest;
75
+ import * as WorkRequestError from "./work-request-error";
76
+ export import WorkRequestError = WorkRequestError.WorkRequestError;
77
+ import * as WorkRequestErrorCollection from "./work-request-error-collection";
78
+ export import WorkRequestErrorCollection = WorkRequestErrorCollection.WorkRequestErrorCollection;
79
+ import * as WorkRequestLogEntry from "./work-request-log-entry";
80
+ export import WorkRequestLogEntry = WorkRequestLogEntry.WorkRequestLogEntry;
81
+ import * as WorkRequestLogEntryCollection from "./work-request-log-entry-collection";
82
+ export import WorkRequestLogEntryCollection = WorkRequestLogEntryCollection.WorkRequestLogEntryCollection;
83
+ import * as WorkRequestResource from "./work-request-resource";
84
+ export import WorkRequestResource = WorkRequestResource.WorkRequestResource;
85
+ import * as WorkRequestSummary from "./work-request-summary";
86
+ export import WorkRequestSummary = WorkRequestSummary.WorkRequestSummary;
87
+ import * as WorkRequestSummaryCollection from "./work-request-summary-collection";
88
+ export import WorkRequestSummaryCollection = WorkRequestSummaryCollection.WorkRequestSummaryCollection;