oci-redis 2.71.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 (149) 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 +187 -0
  9. package/lib/client.js +902 -0
  10. package/lib/client.js.map +1 -0
  11. package/lib/model/action-type.d.ts +32 -0
  12. package/lib/model/action-type.js +43 -0
  13. package/lib/model/action-type.js.map +1 -0
  14. package/lib/model/change-redis-cluster-compartment-details.d.ts +27 -0
  15. package/lib/model/change-redis-cluster-compartment-details.js +29 -0
  16. package/lib/model/change-redis-cluster-compartment-details.js.map +1 -0
  17. package/lib/model/create-redis-cluster-details.d.ts +63 -0
  18. package/lib/model/create-redis-cluster-details.js +29 -0
  19. package/lib/model/create-redis-cluster-details.js.map +1 -0
  20. package/lib/model/index.d.ts +52 -0
  21. package/lib/model/index.js +75 -0
  22. package/lib/model/index.js.map +1 -0
  23. package/lib/model/node-collection.d.ts +26 -0
  24. package/lib/model/node-collection.js +61 -0
  25. package/lib/model/node-collection.js.map +1 -0
  26. package/lib/model/node.d.ts +33 -0
  27. package/lib/model/node.js +29 -0
  28. package/lib/model/node.js.map +1 -0
  29. package/lib/model/operation-status.d.ts +34 -0
  30. package/lib/model/operation-status.js +45 -0
  31. package/lib/model/operation-status.js.map +1 -0
  32. package/lib/model/operation-type.d.ts +35 -0
  33. package/lib/model/operation-type.js +46 -0
  34. package/lib/model/operation-type.js.map +1 -0
  35. package/lib/model/redis-cluster-collection.d.ts +26 -0
  36. package/lib/model/redis-cluster-collection.js +61 -0
  37. package/lib/model/redis-cluster-collection.js.map +1 -0
  38. package/lib/model/redis-cluster-summary.d.ts +110 -0
  39. package/lib/model/redis-cluster-summary.js +29 -0
  40. package/lib/model/redis-cluster-summary.js.map +1 -0
  41. package/lib/model/redis-cluster.d.ts +132 -0
  42. package/lib/model/redis-cluster.js +80 -0
  43. package/lib/model/redis-cluster.js.map +1 -0
  44. package/lib/model/sort-order.d.ts +23 -0
  45. package/lib/model/sort-order.js +34 -0
  46. package/lib/model/sort-order.js.map +1 -0
  47. package/lib/model/update-redis-cluster-details.d.ts +51 -0
  48. package/lib/model/update-redis-cluster-details.js +29 -0
  49. package/lib/model/update-redis-cluster-details.js.map +1 -0
  50. package/lib/model/work-request-error-collection.d.ts +26 -0
  51. package/lib/model/work-request-error-collection.js +61 -0
  52. package/lib/model/work-request-error-collection.js.map +1 -0
  53. package/lib/model/work-request-error.d.ts +34 -0
  54. package/lib/model/work-request-error.js +29 -0
  55. package/lib/model/work-request-error.js.map +1 -0
  56. package/lib/model/work-request-log-entry-collection.d.ts +26 -0
  57. package/lib/model/work-request-log-entry-collection.js +61 -0
  58. package/lib/model/work-request-log-entry-collection.js.map +1 -0
  59. package/lib/model/work-request-log-entry.d.ts +29 -0
  60. package/lib/model/work-request-log-entry.js +29 -0
  61. package/lib/model/work-request-log-entry.js.map +1 -0
  62. package/lib/model/work-request-resource.d.ts +42 -0
  63. package/lib/model/work-request-resource.js +29 -0
  64. package/lib/model/work-request-resource.js.map +1 -0
  65. package/lib/model/work-request-summary-collection.d.ts +26 -0
  66. package/lib/model/work-request-summary-collection.js +61 -0
  67. package/lib/model/work-request-summary-collection.js.map +1 -0
  68. package/lib/model/work-request-summary.d.ts +80 -0
  69. package/lib/model/work-request-summary.js +61 -0
  70. package/lib/model/work-request-summary.js.map +1 -0
  71. package/lib/model/work-request.d.ts +62 -0
  72. package/lib/model/work-request.js +61 -0
  73. package/lib/model/work-request.js.map +1 -0
  74. package/lib/rediscluster-waiter.d.ts +36 -0
  75. package/lib/rediscluster-waiter.js +76 -0
  76. package/lib/rediscluster-waiter.js.map +1 -0
  77. package/lib/request/cancel-work-request-request.d.ts +35 -0
  78. package/lib/request/cancel-work-request-request.js +15 -0
  79. package/lib/request/cancel-work-request-request.js.map +1 -0
  80. package/lib/request/change-redis-cluster-compartment-request.d.ts +49 -0
  81. package/lib/request/change-redis-cluster-compartment-request.js +15 -0
  82. package/lib/request/change-redis-cluster-compartment-request.js.map +1 -0
  83. package/lib/request/create-redis-cluster-request.d.ts +36 -0
  84. package/lib/request/create-redis-cluster-request.js +15 -0
  85. package/lib/request/create-redis-cluster-request.js.map +1 -0
  86. package/lib/request/delete-redis-cluster-request.d.ts +35 -0
  87. package/lib/request/delete-redis-cluster-request.js +15 -0
  88. package/lib/request/delete-redis-cluster-request.js.map +1 -0
  89. package/lib/request/get-redis-cluster-request.d.ts +26 -0
  90. package/lib/request/get-redis-cluster-request.js +15 -0
  91. package/lib/request/get-redis-cluster-request.js.map +1 -0
  92. package/lib/request/get-work-request-request.d.ts +26 -0
  93. package/lib/request/get-work-request-request.js +15 -0
  94. package/lib/request/get-work-request-request.js.map +1 -0
  95. package/lib/request/index.d.ts +34 -0
  96. package/lib/request/index.js +43 -0
  97. package/lib/request/index.js.map +1 -0
  98. package/lib/request/list-redis-clusters-request.d.ts +62 -0
  99. package/lib/request/list-redis-clusters-request.js +24 -0
  100. package/lib/request/list-redis-clusters-request.js.map +1 -0
  101. package/lib/request/list-work-request-errors-request.d.ts +49 -0
  102. package/lib/request/list-work-request-errors-request.js +23 -0
  103. package/lib/request/list-work-request-errors-request.js.map +1 -0
  104. package/lib/request/list-work-request-logs-request.d.ts +49 -0
  105. package/lib/request/list-work-request-logs-request.js +23 -0
  106. package/lib/request/list-work-request-logs-request.js.map +1 -0
  107. package/lib/request/list-work-requests-request.d.ts +61 -0
  108. package/lib/request/list-work-requests-request.js +23 -0
  109. package/lib/request/list-work-requests-request.js.map +1 -0
  110. package/lib/request/update-redis-cluster-request.d.ts +40 -0
  111. package/lib/request/update-redis-cluster-request.js +15 -0
  112. package/lib/request/update-redis-cluster-request.js.map +1 -0
  113. package/lib/response/cancel-work-request-response.d.ts +20 -0
  114. package/lib/response/cancel-work-request-response.js +15 -0
  115. package/lib/response/cancel-work-request-response.js.map +1 -0
  116. package/lib/response/change-redis-cluster-compartment-response.d.ts +25 -0
  117. package/lib/response/change-redis-cluster-compartment-response.js +15 -0
  118. package/lib/response/change-redis-cluster-compartment-response.js.map +1 -0
  119. package/lib/response/create-redis-cluster-response.d.ts +35 -0
  120. package/lib/response/create-redis-cluster-response.js +15 -0
  121. package/lib/response/create-redis-cluster-response.js.map +1 -0
  122. package/lib/response/delete-redis-cluster-response.d.ts +25 -0
  123. package/lib/response/delete-redis-cluster-response.js +15 -0
  124. package/lib/response/delete-redis-cluster-response.js.map +1 -0
  125. package/lib/response/get-redis-cluster-response.d.ts +30 -0
  126. package/lib/response/get-redis-cluster-response.js +15 -0
  127. package/lib/response/get-redis-cluster-response.js.map +1 -0
  128. package/lib/response/get-work-request-response.d.ts +34 -0
  129. package/lib/response/get-work-request-response.js +15 -0
  130. package/lib/response/get-work-request-response.js.map +1 -0
  131. package/lib/response/index.d.ts +34 -0
  132. package/lib/response/index.js +15 -0
  133. package/lib/response/index.js.map +1 -0
  134. package/lib/response/list-redis-clusters-response.d.ts +32 -0
  135. package/lib/response/list-redis-clusters-response.js +15 -0
  136. package/lib/response/list-redis-clusters-response.js.map +1 -0
  137. package/lib/response/list-work-request-errors-response.d.ts +32 -0
  138. package/lib/response/list-work-request-errors-response.js +15 -0
  139. package/lib/response/list-work-request-errors-response.js.map +1 -0
  140. package/lib/response/list-work-request-logs-response.d.ts +32 -0
  141. package/lib/response/list-work-request-logs-response.js +15 -0
  142. package/lib/response/list-work-request-logs-response.js.map +1 -0
  143. package/lib/response/list-work-requests-response.d.ts +32 -0
  144. package/lib/response/list-work-requests-response.js +15 -0
  145. package/lib/response/list-work-requests-response.js.map +1 -0
  146. package/lib/response/update-redis-cluster-response.d.ts +25 -0
  147. package/lib/response/update-redis-cluster-response.js +15 -0
  148. package/lib/response/update-redis-cluster-response.js.map +1 -0
  149. package/package.json +29 -0
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.OperationStatus = void 0;
16
+ /**
17
+ * Possible operation status.
18
+ **/
19
+ var OperationStatus;
20
+ (function (OperationStatus) {
21
+ OperationStatus["Accepted"] = "ACCEPTED";
22
+ OperationStatus["InProgress"] = "IN_PROGRESS";
23
+ OperationStatus["Waiting"] = "WAITING";
24
+ OperationStatus["NeedsAttention"] = "NEEDS_ATTENTION";
25
+ OperationStatus["Failed"] = "FAILED";
26
+ OperationStatus["Succeeded"] = "SUCCEEDED";
27
+ OperationStatus["Canceling"] = "CANCELING";
28
+ OperationStatus["Canceled"] = "CANCELED";
29
+ /**
30
+ * This value is used if a service returns a value for this enum that is not recognized by this
31
+ * version of the SDK.
32
+ */
33
+ OperationStatus["UnknownValue"] = "UNKNOWN_VALUE";
34
+ })(OperationStatus = exports.OperationStatus || (exports.OperationStatus = {}));
35
+ (function (OperationStatus) {
36
+ function getJsonObj(obj) {
37
+ return obj;
38
+ }
39
+ OperationStatus.getJsonObj = getJsonObj;
40
+ function getDeserializedJsonObj(obj) {
41
+ return obj;
42
+ }
43
+ OperationStatus.getDeserializedJsonObj = getDeserializedJsonObj;
44
+ })(OperationStatus = exports.OperationStatus || (exports.OperationStatus = {}));
45
+ //# sourceMappingURL=operation-status.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operation-status.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/operation-status.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,eAeX;AAfD,WAAY,eAAe;IACzB,wCAAqB,CAAA;IACrB,6CAA0B,CAAA;IAC1B,sCAAmB,CAAA;IACnB,qDAAkC,CAAA;IAClC,oCAAiB,CAAA;IACjB,0CAAuB,CAAA;IACvB,0CAAuB,CAAA;IACvB,wCAAqB,CAAA;IAErB;;;OAGG;IACH,iDAA8B,CAAA;AAChC,CAAC,EAfW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAe1B;AAED,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,0BAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,sCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAO/B"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Redis Service API
3
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
4
+ * OpenAPI spec version: 20220315
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 operation types.
15
+ **/
16
+ export declare enum OperationType {
17
+ CreateRedisCluster = "CREATE_REDIS_CLUSTER",
18
+ UpdateRedisCluster = "UPDATE_REDIS_CLUSTER",
19
+ DeleteRedisCluster = "DELETE_REDIS_CLUSTER",
20
+ MoveRedisCluster = "MOVE_REDIS_CLUSTER",
21
+ FailoverRedisCluster = "FAILOVER_REDIS_CLUSTER",
22
+ CreateRedisConfigSet = "CREATE_REDIS_CONFIG_SET",
23
+ UpdateRedisConfigSet = "UPDATE_REDIS_CONFIG_SET",
24
+ DeleteRedisConfigSet = "DELETE_REDIS_CONFIG_SET",
25
+ MoveRedisConfigSet = "MOVE_REDIS_CONFIG_SET",
26
+ /**
27
+ * This value is used if a service returns a value for this enum that is not recognized by this
28
+ * version of the SDK.
29
+ */
30
+ UnknownValue = "UNKNOWN_VALUE"
31
+ }
32
+ export declare namespace OperationType {
33
+ function getJsonObj(obj: OperationType): OperationType;
34
+ function getDeserializedJsonObj(obj: OperationType): OperationType;
35
+ }
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.OperationType = void 0;
16
+ /**
17
+ * Possible operation types.
18
+ **/
19
+ var OperationType;
20
+ (function (OperationType) {
21
+ OperationType["CreateRedisCluster"] = "CREATE_REDIS_CLUSTER";
22
+ OperationType["UpdateRedisCluster"] = "UPDATE_REDIS_CLUSTER";
23
+ OperationType["DeleteRedisCluster"] = "DELETE_REDIS_CLUSTER";
24
+ OperationType["MoveRedisCluster"] = "MOVE_REDIS_CLUSTER";
25
+ OperationType["FailoverRedisCluster"] = "FAILOVER_REDIS_CLUSTER";
26
+ OperationType["CreateRedisConfigSet"] = "CREATE_REDIS_CONFIG_SET";
27
+ OperationType["UpdateRedisConfigSet"] = "UPDATE_REDIS_CONFIG_SET";
28
+ OperationType["DeleteRedisConfigSet"] = "DELETE_REDIS_CONFIG_SET";
29
+ OperationType["MoveRedisConfigSet"] = "MOVE_REDIS_CONFIG_SET";
30
+ /**
31
+ * This value is used if a service returns a value for this enum that is not recognized by this
32
+ * version of the SDK.
33
+ */
34
+ OperationType["UnknownValue"] = "UNKNOWN_VALUE";
35
+ })(OperationType = exports.OperationType || (exports.OperationType = {}));
36
+ (function (OperationType) {
37
+ function getJsonObj(obj) {
38
+ return obj;
39
+ }
40
+ OperationType.getJsonObj = getJsonObj;
41
+ function getDeserializedJsonObj(obj) {
42
+ return obj;
43
+ }
44
+ OperationType.getDeserializedJsonObj = getDeserializedJsonObj;
45
+ })(OperationType = exports.OperationType || (exports.OperationType = {}));
46
+ //# sourceMappingURL=operation-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operation-type.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/operation-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,aAgBX;AAhBD,WAAY,aAAa;IACvB,4DAA2C,CAAA;IAC3C,4DAA2C,CAAA;IAC3C,4DAA2C,CAAA;IAC3C,wDAAuC,CAAA;IACvC,gEAA+C,CAAA;IAC/C,iEAAgD,CAAA;IAChD,iEAAgD,CAAA;IAChD,iEAAgD,CAAA;IAChD,6DAA4C,CAAA;IAE5C;;;OAGG;IACH,+CAA8B,CAAA;AAChC,CAAC,EAhBW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAgBxB;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,26 @@
1
+ /**
2
+ * Redis Service API
3
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
4
+ * OpenAPI spec version: 20220315
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 model from "../model";
14
+ /**
15
+ * A list of Redis clusters that match filter criteria, if any. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
16
+ */
17
+ export interface RedisClusterCollection {
18
+ /**
19
+ * The list of Redis clusters.
20
+ */
21
+ "items": Array<model.RedisClusterSummary>;
22
+ }
23
+ export declare namespace RedisClusterCollection {
24
+ function getJsonObj(obj: RedisClusterCollection): object;
25
+ function getDeserializedJsonObj(obj: RedisClusterCollection): object;
26
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.RedisClusterCollection = void 0;
35
+ const model = __importStar(require("../model"));
36
+ var RedisClusterCollection;
37
+ (function (RedisClusterCollection) {
38
+ function getJsonObj(obj) {
39
+ const jsonObj = Object.assign(Object.assign({}, obj), {
40
+ "items": obj.items
41
+ ? obj.items.map(item => {
42
+ return model.RedisClusterSummary.getJsonObj(item);
43
+ })
44
+ : undefined
45
+ });
46
+ return jsonObj;
47
+ }
48
+ RedisClusterCollection.getJsonObj = getJsonObj;
49
+ function getDeserializedJsonObj(obj) {
50
+ const jsonObj = Object.assign(Object.assign({}, obj), {
51
+ "items": obj.items
52
+ ? obj.items.map(item => {
53
+ return model.RedisClusterSummary.getDeserializedJsonObj(item);
54
+ })
55
+ : undefined
56
+ });
57
+ return jsonObj;
58
+ }
59
+ RedisClusterCollection.getDeserializedJsonObj = getDeserializedJsonObj;
60
+ })(RedisClusterCollection = exports.RedisClusterCollection || (exports.RedisClusterCollection = {}));
61
+ //# sourceMappingURL=redis-cluster-collection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redis-cluster-collection.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/redis-cluster-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,sBAAsB,CA6BtC;AA7BD,WAAiB,sBAAsB;IACrC,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,iCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,6CAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QA6BtC"}
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Redis Service API
3
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
4
+ * OpenAPI spec version: 20220315
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
+ * Summary of information about a Redis cluster. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
15
+ *
16
+ */
17
+ export interface RedisClusterSummary {
18
+ /**
19
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
20
+ */
21
+ "id": string;
22
+ /**
23
+ * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
24
+ */
25
+ "displayName": string;
26
+ /**
27
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Redis cluster.
28
+ */
29
+ "compartmentId": string;
30
+ /**
31
+ * The current state of the Redis cluster.
32
+ */
33
+ "lifecycleState"?: string;
34
+ /**
35
+ * A message describing the current state in more detail. For example, the message might provide actionable information for a resource in `FAILED` state.
36
+ */
37
+ "lifecycleDetails"?: string;
38
+ /**
39
+ * The number of nodes in the Redis cluster. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
40
+ */
41
+ "nodeCount": number;
42
+ /**
43
+ * The amount of memory allocated to the Redis cluster's nodes, in gigabytes. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
44
+ */
45
+ "nodeMemoryInGBs": number;
46
+ /**
47
+ * The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
48
+ */
49
+ "primaryFqdn": string;
50
+ /**
51
+ * The private IP address of the API endpoint for the Redis cluster's primary node.
52
+ */
53
+ "primaryEndpointIpAddress": string;
54
+ /**
55
+ * The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes.
56
+ */
57
+ "replicasFqdn": string;
58
+ /**
59
+ * The private IP address of the API endpoint for the Redis cluster's replica nodes.
60
+ */
61
+ "replicasEndpointIpAddress": string;
62
+ /**
63
+ * The Redis version that the cluster is running.
64
+ */
65
+ "softwareVersion": string;
66
+ /**
67
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
68
+ */
69
+ "subnetId": string;
70
+ /**
71
+ * The date and time the Redis cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
72
+ */
73
+ "timeCreated"?: Date;
74
+ /**
75
+ * The date and time the Redis cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
76
+ */
77
+ "timeUpdated"?: Date;
78
+ /**
79
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
80
+ * Example: `{\"bar-key\": \"value\"}`
81
+ *
82
+ */
83
+ "freeformTags"?: {
84
+ [key: string]: string;
85
+ };
86
+ /**
87
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
88
+ * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
89
+ *
90
+ */
91
+ "definedTags"?: {
92
+ [key: string]: {
93
+ [key: string]: any;
94
+ };
95
+ };
96
+ /**
97
+ * Usage of system tag keys. These predefined keys are scoped to namespaces.
98
+ * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
99
+ *
100
+ */
101
+ "systemTags"?: {
102
+ [key: string]: {
103
+ [key: string]: any;
104
+ };
105
+ };
106
+ }
107
+ export declare namespace RedisClusterSummary {
108
+ function getJsonObj(obj: RedisClusterSummary): object;
109
+ function getDeserializedJsonObj(obj: RedisClusterSummary): object;
110
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.RedisClusterSummary = void 0;
16
+ var RedisClusterSummary;
17
+ (function (RedisClusterSummary) {
18
+ function getJsonObj(obj) {
19
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
20
+ return jsonObj;
21
+ }
22
+ RedisClusterSummary.getJsonObj = getJsonObj;
23
+ function getDeserializedJsonObj(obj) {
24
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
25
+ return jsonObj;
26
+ }
27
+ RedisClusterSummary.getDeserializedJsonObj = getDeserializedJsonObj;
28
+ })(RedisClusterSummary = exports.RedisClusterSummary || (exports.RedisClusterSummary = {}));
29
+ //# sourceMappingURL=redis-cluster-summary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redis-cluster-summary.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/redis-cluster-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA0FH,IAAiB,mBAAmB,CAWnC;AAXD,WAAiB,mBAAmB;IAClC,SAAgB,UAAU,CAAC,GAAwB;QACjD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwB;QAC7D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAWnC"}
@@ -0,0 +1,132 @@
1
+ /**
2
+ * Redis Service API
3
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
4
+ * OpenAPI spec version: 20220315
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 model from "../model";
14
+ /**
15
+ * A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](https://docs.cloud.oracle.com/iaas/Content/redis/home.htm).
16
+ */
17
+ export interface RedisCluster {
18
+ /**
19
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster.
20
+ */
21
+ "id": string;
22
+ /**
23
+ * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
24
+ */
25
+ "displayName": string;
26
+ /**
27
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Redis cluster.
28
+ */
29
+ "compartmentId": string;
30
+ /**
31
+ * The current state of the Redis cluster.
32
+ */
33
+ "lifecycleState"?: RedisCluster.LifecycleState;
34
+ /**
35
+ * A message describing the current state in more detail. For example, the message might provide actionable information for a resource in `FAILED` state.
36
+ */
37
+ "lifecycleDetails"?: string;
38
+ /**
39
+ * The number of nodes in the Redis cluster. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
40
+ */
41
+ "nodeCount": number;
42
+ /**
43
+ * The amount of memory allocated to the Redis cluster's nodes, in gigabytes. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
44
+ */
45
+ "nodeMemoryInGBs": number;
46
+ /**
47
+ * The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
48
+ */
49
+ "primaryFqdn": string;
50
+ /**
51
+ * The private IP address of the API endpoint for the Redis cluster's primary node.
52
+ */
53
+ "primaryEndpointIpAddress": string;
54
+ /**
55
+ * The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes.
56
+ */
57
+ "replicasFqdn": string;
58
+ /**
59
+ * The private IP address of the API endpoint for the Redis cluster's replica nodes.
60
+ */
61
+ "replicasEndpointIpAddress": string;
62
+ /**
63
+ * The Redis version that the cluster is running.
64
+ */
65
+ "softwareVersion": RedisCluster.SoftwareVersion;
66
+ /**
67
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
68
+ */
69
+ "subnetId": string;
70
+ /**
71
+ * The date and time the Redis cluster was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
72
+ */
73
+ "timeCreated"?: Date;
74
+ /**
75
+ * The date and time the Redis cluster was updated. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
76
+ */
77
+ "timeUpdated"?: Date;
78
+ "nodeCollection": model.NodeCollection;
79
+ /**
80
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
81
+ * Example: `{\"bar-key\": \"value\"}`
82
+ *
83
+ */
84
+ "freeformTags"?: {
85
+ [key: string]: string;
86
+ };
87
+ /**
88
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
89
+ * Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
90
+ *
91
+ */
92
+ "definedTags"?: {
93
+ [key: string]: {
94
+ [key: string]: any;
95
+ };
96
+ };
97
+ /**
98
+ * Usage of system tag keys. These predefined keys are scoped to namespaces.
99
+ * Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
100
+ *
101
+ */
102
+ "systemTags"?: {
103
+ [key: string]: {
104
+ [key: string]: any;
105
+ };
106
+ };
107
+ }
108
+ export declare namespace RedisCluster {
109
+ enum LifecycleState {
110
+ Creating = "CREATING",
111
+ Updating = "UPDATING",
112
+ Active = "ACTIVE",
113
+ Deleting = "DELETING",
114
+ Deleted = "DELETED",
115
+ Failed = "FAILED",
116
+ /**
117
+ * This value is used if a service returns a value for this enum that is not recognized by this
118
+ * version of the SDK.
119
+ */
120
+ UnknownValue = "UNKNOWN_VALUE"
121
+ }
122
+ enum SoftwareVersion {
123
+ V705 = "V7_0_5",
124
+ /**
125
+ * This value is used if a service returns a value for this enum that is not recognized by this
126
+ * version of the SDK.
127
+ */
128
+ UnknownValue = "UNKNOWN_VALUE"
129
+ }
130
+ function getJsonObj(obj: RedisCluster): object;
131
+ function getDeserializedJsonObj(obj: RedisCluster): object;
132
+ }
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.RedisCluster = void 0;
35
+ const model = __importStar(require("../model"));
36
+ var RedisCluster;
37
+ (function (RedisCluster) {
38
+ let LifecycleState;
39
+ (function (LifecycleState) {
40
+ LifecycleState["Creating"] = "CREATING";
41
+ LifecycleState["Updating"] = "UPDATING";
42
+ LifecycleState["Active"] = "ACTIVE";
43
+ LifecycleState["Deleting"] = "DELETING";
44
+ LifecycleState["Deleted"] = "DELETED";
45
+ LifecycleState["Failed"] = "FAILED";
46
+ /**
47
+ * This value is used if a service returns a value for this enum that is not recognized by this
48
+ * version of the SDK.
49
+ */
50
+ LifecycleState["UnknownValue"] = "UNKNOWN_VALUE";
51
+ })(LifecycleState = RedisCluster.LifecycleState || (RedisCluster.LifecycleState = {}));
52
+ let SoftwareVersion;
53
+ (function (SoftwareVersion) {
54
+ SoftwareVersion["V705"] = "V7_0_5";
55
+ /**
56
+ * This value is used if a service returns a value for this enum that is not recognized by this
57
+ * version of the SDK.
58
+ */
59
+ SoftwareVersion["UnknownValue"] = "UNKNOWN_VALUE";
60
+ })(SoftwareVersion = RedisCluster.SoftwareVersion || (RedisCluster.SoftwareVersion = {}));
61
+ function getJsonObj(obj) {
62
+ const jsonObj = Object.assign(Object.assign({}, obj), {
63
+ "nodeCollection": obj.nodeCollection
64
+ ? model.NodeCollection.getJsonObj(obj.nodeCollection)
65
+ : undefined
66
+ });
67
+ return jsonObj;
68
+ }
69
+ RedisCluster.getJsonObj = getJsonObj;
70
+ function getDeserializedJsonObj(obj) {
71
+ const jsonObj = Object.assign(Object.assign({}, obj), {
72
+ "nodeCollection": obj.nodeCollection
73
+ ? model.NodeCollection.getDeserializedJsonObj(obj.nodeCollection)
74
+ : undefined
75
+ });
76
+ return jsonObj;
77
+ }
78
+ RedisCluster.getDeserializedJsonObj = getDeserializedJsonObj;
79
+ })(RedisCluster = exports.RedisCluster || (exports.RedisCluster = {}));
80
+ //# sourceMappingURL=redis-cluster.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redis-cluster.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/redis-cluster.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAwFlC,IAAiB,YAAY,CAgD5B;AAhDD,WAAiB,YAAY;IAC3B,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,2BAAc,KAAd,2BAAc,QAYzB;IAED,IAAY,eAOX;IAPD,WAAY,eAAe;QACzB,kCAAe,CAAA;QACf;;;WAGG;QACH,iDAA8B,CAAA;IAChC,CAAC,EAPW,eAAe,GAAf,4BAAe,KAAf,4BAAe,QAO1B;IAED,SAAgB,UAAU,CAAC,GAAiB;QAC1C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC;gBACrD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,uBAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiB;QACtD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,sBAAsB,CAAC,GAAG,CAAC,cAAc,CAAC;gBACjE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,mCAAsB,yBAWrC,CAAA;AACH,CAAC,EAhDgB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAgD5B"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Redis Service API
3
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
4
+ * OpenAPI spec version: 20220315
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 sort order to use, either 'ASC' or 'DESC'.
15
+ **/
16
+ export declare enum SortOrder {
17
+ Asc = "ASC",
18
+ Desc = "DESC"
19
+ }
20
+ export declare namespace SortOrder {
21
+ function getJsonObj(obj: SortOrder): SortOrder;
22
+ function getDeserializedJsonObj(obj: SortOrder): SortOrder;
23
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /**
3
+ * Redis Service API
4
+ * Use the Redis Service API to create and manage Redis clusters. A Redis cluster is a memory-based storage solution. For more information, see [OCI Caching Service with Redis](/iaas/Content/redis/home.htm).
5
+ * OpenAPI spec version: 20220315
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.SortOrder = void 0;
16
+ /**
17
+ * The sort order to use, either 'ASC' or 'DESC'.
18
+ **/
19
+ var SortOrder;
20
+ (function (SortOrder) {
21
+ SortOrder["Asc"] = "ASC";
22
+ SortOrder["Desc"] = "DESC";
23
+ })(SortOrder = exports.SortOrder || (exports.SortOrder = {}));
24
+ (function (SortOrder) {
25
+ function getJsonObj(obj) {
26
+ return obj;
27
+ }
28
+ SortOrder.getJsonObj = getJsonObj;
29
+ function getDeserializedJsonObj(obj) {
30
+ return obj;
31
+ }
32
+ SortOrder.getDeserializedJsonObj = getDeserializedJsonObj;
33
+ })(SortOrder = exports.SortOrder || (exports.SortOrder = {}));
34
+ //# sourceMappingURL=sort-order.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sort-order.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/model/sort-order.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;AAED,WAAiB,SAAS;IACxB,SAAgB,UAAU,CAAC,GAAc;QACvC,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,oBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAc;QACnD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,gCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAOzB"}