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,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=change-redis-cluster-compartment-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"change-redis-cluster-compartment-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/change-redis-cluster-compartment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface CreateRedisClusterResponse {
15
+ /**
16
+ * For optimistic concurrency control. See `if-match`.
17
+ *
18
+ */
19
+ "etag": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
22
+ *
23
+ */
24
+ "opcWorkRequestId": string;
25
+ /**
26
+ * Unique Oracle-assigned identifier for the request. If you need to contact
27
+ * Oracle about a particular request, please provide the request ID.
28
+ *
29
+ */
30
+ "opcRequestId": string;
31
+ /**
32
+ * The returned model.RedisCluster instance.
33
+ */
34
+ "redisCluster": model.RedisCluster;
35
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=create-redis-cluster-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-redis-cluster-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/create-redis-cluster-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface DeleteRedisClusterResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
16
+ *
17
+ */
18
+ "opcWorkRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact
21
+ * Oracle about a particular request, please provide the request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=delete-redis-cluster-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-redis-cluster-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/delete-redis-cluster-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface GetRedisClusterResponse {
15
+ /**
16
+ * For optimistic concurrency control. See `if-match`.
17
+ *
18
+ */
19
+ "etag": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If you need to contact
22
+ * Oracle about a particular request, please provide the request ID.
23
+ *
24
+ */
25
+ "opcRequestId": string;
26
+ /**
27
+ * The returned model.RedisCluster instance.
28
+ */
29
+ "redisCluster": model.RedisCluster;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=get-redis-cluster-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-redis-cluster-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/get-redis-cluster-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,34 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface GetWorkRequestResponse {
15
+ /**
16
+ * For optimistic concurrency control. See `if-match`.
17
+ *
18
+ */
19
+ "etag": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If you need to contact
22
+ * Oracle about a particular request, please provide the request ID.
23
+ *
24
+ */
25
+ "opcRequestId": string;
26
+ /**
27
+ * A decimal number representing the number of seconds the client should wait before polling this endpoint again.
28
+ */
29
+ "retryAfter": number;
30
+ /**
31
+ * The returned model.WorkRequest instance.
32
+ */
33
+ "workRequest": model.WorkRequest;
34
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=get-work-request-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-work-request-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/get-work-request-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,34 @@
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 CancelWorkRequestResponse from "./cancel-work-request-response";
14
+ export import CancelWorkRequestResponse = CancelWorkRequestResponse.CancelWorkRequestResponse;
15
+ import * as ChangeRedisClusterCompartmentResponse from "./change-redis-cluster-compartment-response";
16
+ export import ChangeRedisClusterCompartmentResponse = ChangeRedisClusterCompartmentResponse.ChangeRedisClusterCompartmentResponse;
17
+ import * as CreateRedisClusterResponse from "./create-redis-cluster-response";
18
+ export import CreateRedisClusterResponse = CreateRedisClusterResponse.CreateRedisClusterResponse;
19
+ import * as DeleteRedisClusterResponse from "./delete-redis-cluster-response";
20
+ export import DeleteRedisClusterResponse = DeleteRedisClusterResponse.DeleteRedisClusterResponse;
21
+ import * as GetRedisClusterResponse from "./get-redis-cluster-response";
22
+ export import GetRedisClusterResponse = GetRedisClusterResponse.GetRedisClusterResponse;
23
+ import * as GetWorkRequestResponse from "./get-work-request-response";
24
+ export import GetWorkRequestResponse = GetWorkRequestResponse.GetWorkRequestResponse;
25
+ import * as ListRedisClustersResponse from "./list-redis-clusters-response";
26
+ export import ListRedisClustersResponse = ListRedisClustersResponse.ListRedisClustersResponse;
27
+ import * as ListWorkRequestErrorsResponse from "./list-work-request-errors-response";
28
+ export import ListWorkRequestErrorsResponse = ListWorkRequestErrorsResponse.ListWorkRequestErrorsResponse;
29
+ import * as ListWorkRequestLogsResponse from "./list-work-request-logs-response";
30
+ export import ListWorkRequestLogsResponse = ListWorkRequestLogsResponse.ListWorkRequestLogsResponse;
31
+ import * as ListWorkRequestsResponse from "./list-work-requests-response";
32
+ export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
33
+ import * as UpdateRedisClusterResponse from "./update-redis-cluster-response";
34
+ export import UpdateRedisClusterResponse = UpdateRedisClusterResponse.UpdateRedisClusterResponse;
@@ -0,0 +1,15 @@
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
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface ListRedisClustersResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
+ * then a partial list might have been returned. Include this value as the `page` parameter for the
24
+ * subsequent GET request to get the next batch of items.
25
+ *
26
+ */
27
+ "opcNextPage": string;
28
+ /**
29
+ * The returned model.RedisClusterCollection instance.
30
+ */
31
+ "redisClusterCollection": model.RedisClusterCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=list-redis-clusters-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-redis-clusters-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/list-redis-clusters-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface ListWorkRequestErrorsResponse {
15
+ /**
16
+ * For pagination of a list of items. When paging through a list, if this header appears in the response,
17
+ * then a partial list might have been returned. Include this value as the `page` parameter for the
18
+ * subsequent GET request to get the next batch of items.
19
+ *
20
+ */
21
+ "opcNextPage": string;
22
+ /**
23
+ * Unique Oracle-assigned identifier for the request. If you need to contact
24
+ * Oracle about a particular request, please provide the request ID.
25
+ *
26
+ */
27
+ "opcRequestId": string;
28
+ /**
29
+ * The returned model.WorkRequestErrorCollection instance.
30
+ */
31
+ "workRequestErrorCollection": model.WorkRequestErrorCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=list-work-request-errors-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-work-request-errors-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/list-work-request-errors-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface ListWorkRequestLogsResponse {
15
+ /**
16
+ * For pagination of a list of items. When paging through a list, if this header appears in the response,
17
+ * then a partial list might have been returned. Include this value as the `page` parameter for the
18
+ * subsequent GET request to get the next batch of items.
19
+ *
20
+ */
21
+ "opcNextPage": string;
22
+ /**
23
+ * Unique Oracle-assigned identifier for the request. If you need to contact
24
+ * Oracle about a particular request, please provide the request ID.
25
+ *
26
+ */
27
+ "opcRequestId": string;
28
+ /**
29
+ * The returned model.WorkRequestLogEntryCollection instance.
30
+ */
31
+ "workRequestLogEntryCollection": model.WorkRequestLogEntryCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=list-work-request-logs-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-work-request-logs-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/list-work-request-logs-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface ListWorkRequestsResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * For pagination of a list of items. When paging through a list, if this header appears in the response,
23
+ * then a partial list might have been returned. Include this value as the `page` parameter for the
24
+ * subsequent GET request to get the next batch of items.
25
+ *
26
+ */
27
+ "opcNextPage": string;
28
+ /**
29
+ * The returned model.WorkRequestSummaryCollection instance.
30
+ */
31
+ "workRequestSummaryCollection": model.WorkRequestSummaryCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=list-work-requests-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-work-requests-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/list-work-requests-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
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
+ export interface UpdateRedisClusterResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
16
+ *
17
+ */
18
+ "opcWorkRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact
21
+ * Oracle about a particular request, please provide the request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
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
+ //# sourceMappingURL=update-redis-cluster-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-redis-cluster-response.js","sourceRoot":"","sources":["../../../../../lib/redis/lib/response/update-redis-cluster-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "oci-redis",
3
+ "version": "2.71.0",
4
+ "description": "OCI NodeJS client for Redis Service",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/oracle/oci-typescript-sdk"
8
+ },
9
+ "main": "./index.js",
10
+ "typings": "./index",
11
+ "scripts": {},
12
+ "author": {
13
+ "name": "Oracle Cloud Infrastructure",
14
+ "email": ""
15
+ },
16
+ "license": "(UPL-1.0 OR Apache-2.0)",
17
+ "dependencies": {
18
+ "oci-common": "2.71.0",
19
+ "oci-workrequests": "2.71.0"
20
+ },
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org"
23
+ },
24
+ "contributors": [
25
+ "Jyoti Saini <jyoti.s.saini@oracle.com>",
26
+ "Joe Levy <joe.levy@oracle.com>",
27
+ "Walt Tran <walt.tran@oracle.com>"
28
+ ]
29
+ }