oci-nosql 2.62.3 → 2.64.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.
- package/LICENSE.txt +6 -6
- package/lib/client.d.ts +22 -22
- package/lib/client.js +22 -22
- package/lib/request/change-table-compartment-request.d.ts +1 -1
- package/lib/request/create-index-request.d.ts +1 -1
- package/lib/request/create-table-request.d.ts +1 -1
- package/lib/request/delete-index-request.d.ts +1 -1
- package/lib/request/delete-row-request.d.ts +1 -1
- package/lib/request/delete-table-request.d.ts +1 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- package/lib/request/get-index-request.d.ts +1 -1
- package/lib/request/get-row-request.d.ts +1 -1
- package/lib/request/get-table-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-indexes-request.d.ts +1 -1
- package/lib/request/list-table-usage-request.d.ts +1 -1
- package/lib/request/list-tables-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/prepare-statement-request.d.ts +1 -1
- package/lib/request/query-request.d.ts +1 -1
- package/lib/request/summarize-statement-request.d.ts +1 -1
- package/lib/request/update-row-request.d.ts +1 -1
- package/lib/request/update-table-request.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c) 2016,
|
|
1
|
+
Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
2
2
|
|
|
3
3
|
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
4
|
|
|
@@ -70,10 +70,10 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
70
70
|
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
71
71
|
|
|
72
72
|
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
- You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
74
|
+
- You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
75
|
+
- You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
76
|
+
- If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
|
|
77
77
|
|
|
78
78
|
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
79
79
|
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
@@ -86,4 +86,4 @@ You may add Your own copyright statement to Your modifications and may provide a
|
|
|
86
86
|
|
|
87
87
|
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
88
88
|
|
|
89
|
-
END OF TERMS AND CONDITIONS
|
|
89
|
+
END OF TERMS AND CONDITIONS
|
package/lib/client.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export declare class NosqlClient {
|
|
|
89
89
|
* @param ChangeTableCompartmentRequest
|
|
90
90
|
* @return ChangeTableCompartmentResponse
|
|
91
91
|
* @throws OciError when an error occurs
|
|
92
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
92
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ChangeTableCompartment.ts.html |here} to see how to use ChangeTableCompartment API.
|
|
93
93
|
*/
|
|
94
94
|
changeTableCompartment(changeTableCompartmentRequest: requests.ChangeTableCompartmentRequest): Promise<responses.ChangeTableCompartmentResponse>;
|
|
95
95
|
/**
|
|
@@ -98,7 +98,7 @@ export declare class NosqlClient {
|
|
|
98
98
|
* @param CreateIndexRequest
|
|
99
99
|
* @return CreateIndexResponse
|
|
100
100
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateIndex.ts.html |here} to see how to use CreateIndex API.
|
|
102
102
|
*/
|
|
103
103
|
createIndex(createIndexRequest: requests.CreateIndexRequest): Promise<responses.CreateIndexResponse>;
|
|
104
104
|
/**
|
|
@@ -107,7 +107,7 @@ export declare class NosqlClient {
|
|
|
107
107
|
* @param CreateTableRequest
|
|
108
108
|
* @return CreateTableResponse
|
|
109
109
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateTable.ts.html |here} to see how to use CreateTable API.
|
|
111
111
|
*/
|
|
112
112
|
createTable(createTableRequest: requests.CreateTableRequest): Promise<responses.CreateTableResponse>;
|
|
113
113
|
/**
|
|
@@ -116,7 +116,7 @@ export declare class NosqlClient {
|
|
|
116
116
|
* @param DeleteIndexRequest
|
|
117
117
|
* @return DeleteIndexResponse
|
|
118
118
|
* @throws OciError when an error occurs
|
|
119
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteIndex.ts.html |here} to see how to use DeleteIndex API.
|
|
120
120
|
*/
|
|
121
121
|
deleteIndex(deleteIndexRequest: requests.DeleteIndexRequest): Promise<responses.DeleteIndexResponse>;
|
|
122
122
|
/**
|
|
@@ -125,7 +125,7 @@ export declare class NosqlClient {
|
|
|
125
125
|
* @param DeleteRowRequest
|
|
126
126
|
* @return DeleteRowResponse
|
|
127
127
|
* @throws OciError when an error occurs
|
|
128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
128
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteRow.ts.html |here} to see how to use DeleteRow API.
|
|
129
129
|
*/
|
|
130
130
|
deleteRow(deleteRowRequest: requests.DeleteRowRequest): Promise<responses.DeleteRowResponse>;
|
|
131
131
|
/**
|
|
@@ -134,7 +134,7 @@ export declare class NosqlClient {
|
|
|
134
134
|
* @param DeleteTableRequest
|
|
135
135
|
* @return DeleteTableResponse
|
|
136
136
|
* @throws OciError when an error occurs
|
|
137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
137
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteTable.ts.html |here} to see how to use DeleteTable API.
|
|
138
138
|
*/
|
|
139
139
|
deleteTable(deleteTableRequest: requests.DeleteTableRequest): Promise<responses.DeleteTableResponse>;
|
|
140
140
|
/**
|
|
@@ -143,7 +143,7 @@ export declare class NosqlClient {
|
|
|
143
143
|
* @param DeleteWorkRequestRequest
|
|
144
144
|
* @return DeleteWorkRequestResponse
|
|
145
145
|
* @throws OciError when an error occurs
|
|
146
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
147
147
|
*/
|
|
148
148
|
deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
|
|
149
149
|
/**
|
|
@@ -152,7 +152,7 @@ export declare class NosqlClient {
|
|
|
152
152
|
* @param GetIndexRequest
|
|
153
153
|
* @return GetIndexResponse
|
|
154
154
|
* @throws OciError when an error occurs
|
|
155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetIndex.ts.html |here} to see how to use GetIndex API.
|
|
156
156
|
*/
|
|
157
157
|
getIndex(getIndexRequest: requests.GetIndexRequest): Promise<responses.GetIndexResponse>;
|
|
158
158
|
/**
|
|
@@ -161,7 +161,7 @@ export declare class NosqlClient {
|
|
|
161
161
|
* @param GetRowRequest
|
|
162
162
|
* @return GetRowResponse
|
|
163
163
|
* @throws OciError when an error occurs
|
|
164
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetRow.ts.html |here} to see how to use GetRow API.
|
|
165
165
|
*/
|
|
166
166
|
getRow(getRowRequest: requests.GetRowRequest): Promise<responses.GetRowResponse>;
|
|
167
167
|
/**
|
|
@@ -170,7 +170,7 @@ export declare class NosqlClient {
|
|
|
170
170
|
* @param GetTableRequest
|
|
171
171
|
* @return GetTableResponse
|
|
172
172
|
* @throws OciError when an error occurs
|
|
173
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetTable.ts.html |here} to see how to use GetTable API.
|
|
174
174
|
*/
|
|
175
175
|
getTable(getTableRequest: requests.GetTableRequest): Promise<responses.GetTableResponse>;
|
|
176
176
|
/**
|
|
@@ -179,7 +179,7 @@ export declare class NosqlClient {
|
|
|
179
179
|
* @param GetWorkRequestRequest
|
|
180
180
|
* @return GetWorkRequestResponse
|
|
181
181
|
* @throws OciError when an error occurs
|
|
182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
183
183
|
*/
|
|
184
184
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
185
185
|
/**
|
|
@@ -188,7 +188,7 @@ export declare class NosqlClient {
|
|
|
188
188
|
* @param ListIndexesRequest
|
|
189
189
|
* @return ListIndexesResponse
|
|
190
190
|
* @throws OciError when an error occurs
|
|
191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListIndexes.ts.html |here} to see how to use ListIndexes API.
|
|
192
192
|
*/
|
|
193
193
|
listIndexes(listIndexesRequest: requests.ListIndexesRequest): Promise<responses.ListIndexesResponse>;
|
|
194
194
|
/**
|
|
@@ -197,7 +197,7 @@ export declare class NosqlClient {
|
|
|
197
197
|
* @param ListTableUsageRequest
|
|
198
198
|
* @return ListTableUsageResponse
|
|
199
199
|
* @throws OciError when an error occurs
|
|
200
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
200
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTableUsage.ts.html |here} to see how to use ListTableUsage API.
|
|
201
201
|
*/
|
|
202
202
|
listTableUsage(listTableUsageRequest: requests.ListTableUsageRequest): Promise<responses.ListTableUsageResponse>;
|
|
203
203
|
/**
|
|
@@ -206,7 +206,7 @@ export declare class NosqlClient {
|
|
|
206
206
|
* @param ListTablesRequest
|
|
207
207
|
* @return ListTablesResponse
|
|
208
208
|
* @throws OciError when an error occurs
|
|
209
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTables.ts.html |here} to see how to use ListTables API.
|
|
210
210
|
*/
|
|
211
211
|
listTables(listTablesRequest: requests.ListTablesRequest): Promise<responses.ListTablesResponse>;
|
|
212
212
|
/**
|
|
@@ -216,7 +216,7 @@ export declare class NosqlClient {
|
|
|
216
216
|
* @param ListWorkRequestErrorsRequest
|
|
217
217
|
* @return ListWorkRequestErrorsResponse
|
|
218
218
|
* @throws OciError when an error occurs
|
|
219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
219
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
220
220
|
*/
|
|
221
221
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
222
222
|
/**
|
|
@@ -226,7 +226,7 @@ export declare class NosqlClient {
|
|
|
226
226
|
* @param ListWorkRequestLogsRequest
|
|
227
227
|
* @return ListWorkRequestLogsResponse
|
|
228
228
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
230
230
|
*/
|
|
231
231
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
232
232
|
/**
|
|
@@ -235,7 +235,7 @@ export declare class NosqlClient {
|
|
|
235
235
|
* @param ListWorkRequestsRequest
|
|
236
236
|
* @return ListWorkRequestsResponse
|
|
237
237
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
238
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
239
239
|
*/
|
|
240
240
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
241
241
|
/**
|
|
@@ -245,7 +245,7 @@ export declare class NosqlClient {
|
|
|
245
245
|
* @param PrepareStatementRequest
|
|
246
246
|
* @return PrepareStatementResponse
|
|
247
247
|
* @throws OciError when an error occurs
|
|
248
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/PrepareStatement.ts.html |here} to see how to use PrepareStatement API.
|
|
249
249
|
*/
|
|
250
250
|
prepareStatement(prepareStatementRequest: requests.PrepareStatementRequest): Promise<responses.PrepareStatementResponse>;
|
|
251
251
|
/**
|
|
@@ -254,7 +254,7 @@ export declare class NosqlClient {
|
|
|
254
254
|
* @param QueryRequest
|
|
255
255
|
* @return QueryResponse
|
|
256
256
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/Query.ts.html |here} to see how to use Query API.
|
|
258
258
|
*/
|
|
259
259
|
query(queryRequest: requests.QueryRequest): Promise<responses.QueryResponse>;
|
|
260
260
|
/**
|
|
@@ -264,7 +264,7 @@ export declare class NosqlClient {
|
|
|
264
264
|
* @param SummarizeStatementRequest
|
|
265
265
|
* @return SummarizeStatementResponse
|
|
266
266
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/SummarizeStatement.ts.html |here} to see how to use SummarizeStatement API.
|
|
268
268
|
*/
|
|
269
269
|
summarizeStatement(summarizeStatementRequest: requests.SummarizeStatementRequest): Promise<responses.SummarizeStatementResponse>;
|
|
270
270
|
/**
|
|
@@ -273,7 +273,7 @@ export declare class NosqlClient {
|
|
|
273
273
|
* @param UpdateRowRequest
|
|
274
274
|
* @return UpdateRowResponse
|
|
275
275
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateRow.ts.html |here} to see how to use UpdateRow API.
|
|
277
277
|
*/
|
|
278
278
|
updateRow(updateRowRequest: requests.UpdateRowRequest): Promise<responses.UpdateRowResponse>;
|
|
279
279
|
/**
|
|
@@ -284,7 +284,7 @@ export declare class NosqlClient {
|
|
|
284
284
|
* @param UpdateTableRequest
|
|
285
285
|
* @return UpdateTableResponse
|
|
286
286
|
* @throws OciError when an error occurs
|
|
287
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateTable.ts.html |here} to see how to use UpdateTable API.
|
|
288
288
|
*/
|
|
289
289
|
updateTable(updateTableRequest: requests.UpdateTableRequest): Promise<responses.UpdateTableResponse>;
|
|
290
290
|
}
|
package/lib/client.js
CHANGED
|
@@ -183,7 +183,7 @@ class NosqlClient {
|
|
|
183
183
|
* @param ChangeTableCompartmentRequest
|
|
184
184
|
* @return ChangeTableCompartmentResponse
|
|
185
185
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ChangeTableCompartment.ts.html |here} to see how to use ChangeTableCompartment API.
|
|
187
187
|
*/
|
|
188
188
|
changeTableCompartment(changeTableCompartmentRequest) {
|
|
189
189
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -245,7 +245,7 @@ class NosqlClient {
|
|
|
245
245
|
* @param CreateIndexRequest
|
|
246
246
|
* @return CreateIndexResponse
|
|
247
247
|
* @throws OciError when an error occurs
|
|
248
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateIndex.ts.html |here} to see how to use CreateIndex API.
|
|
249
249
|
*/
|
|
250
250
|
createIndex(createIndexRequest) {
|
|
251
251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -306,7 +306,7 @@ class NosqlClient {
|
|
|
306
306
|
* @param CreateTableRequest
|
|
307
307
|
* @return CreateTableResponse
|
|
308
308
|
* @throws OciError when an error occurs
|
|
309
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateTable.ts.html |here} to see how to use CreateTable API.
|
|
310
310
|
*/
|
|
311
311
|
createTable(createTableRequest) {
|
|
312
312
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -365,7 +365,7 @@ class NosqlClient {
|
|
|
365
365
|
* @param DeleteIndexRequest
|
|
366
366
|
* @return DeleteIndexResponse
|
|
367
367
|
* @throws OciError when an error occurs
|
|
368
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
368
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteIndex.ts.html |here} to see how to use DeleteIndex API.
|
|
369
369
|
*/
|
|
370
370
|
deleteIndex(deleteIndexRequest) {
|
|
371
371
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -429,7 +429,7 @@ class NosqlClient {
|
|
|
429
429
|
* @param DeleteRowRequest
|
|
430
430
|
* @return DeleteRowResponse
|
|
431
431
|
* @throws OciError when an error occurs
|
|
432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteRow.ts.html |here} to see how to use DeleteRow API.
|
|
433
433
|
*/
|
|
434
434
|
deleteRow(deleteRowRequest) {
|
|
435
435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -493,7 +493,7 @@ class NosqlClient {
|
|
|
493
493
|
* @param DeleteTableRequest
|
|
494
494
|
* @return DeleteTableResponse
|
|
495
495
|
* @throws OciError when an error occurs
|
|
496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteTable.ts.html |here} to see how to use DeleteTable API.
|
|
497
497
|
*/
|
|
498
498
|
deleteTable(deleteTableRequest) {
|
|
499
499
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -556,7 +556,7 @@ class NosqlClient {
|
|
|
556
556
|
* @param DeleteWorkRequestRequest
|
|
557
557
|
* @return DeleteWorkRequestResponse
|
|
558
558
|
* @throws OciError when an error occurs
|
|
559
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
559
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
560
560
|
*/
|
|
561
561
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
562
562
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -616,7 +616,7 @@ class NosqlClient {
|
|
|
616
616
|
* @param GetIndexRequest
|
|
617
617
|
* @return GetIndexResponse
|
|
618
618
|
* @throws OciError when an error occurs
|
|
619
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
619
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetIndex.ts.html |here} to see how to use GetIndex API.
|
|
620
620
|
*/
|
|
621
621
|
getIndex(getIndexRequest) {
|
|
622
622
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -682,7 +682,7 @@ class NosqlClient {
|
|
|
682
682
|
* @param GetRowRequest
|
|
683
683
|
* @return GetRowResponse
|
|
684
684
|
* @throws OciError when an error occurs
|
|
685
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
685
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetRow.ts.html |here} to see how to use GetRow API.
|
|
686
686
|
*/
|
|
687
687
|
getRow(getRowRequest) {
|
|
688
688
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -750,7 +750,7 @@ class NosqlClient {
|
|
|
750
750
|
* @param GetTableRequest
|
|
751
751
|
* @return GetTableResponse
|
|
752
752
|
* @throws OciError when an error occurs
|
|
753
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
753
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetTable.ts.html |here} to see how to use GetTable API.
|
|
754
754
|
*/
|
|
755
755
|
getTable(getTableRequest) {
|
|
756
756
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -815,7 +815,7 @@ class NosqlClient {
|
|
|
815
815
|
* @param GetWorkRequestRequest
|
|
816
816
|
* @return GetWorkRequestResponse
|
|
817
817
|
* @throws OciError when an error occurs
|
|
818
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
819
819
|
*/
|
|
820
820
|
getWorkRequest(getWorkRequestRequest) {
|
|
821
821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -883,7 +883,7 @@ class NosqlClient {
|
|
|
883
883
|
* @param ListIndexesRequest
|
|
884
884
|
* @return ListIndexesResponse
|
|
885
885
|
* @throws OciError when an error occurs
|
|
886
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
886
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListIndexes.ts.html |here} to see how to use ListIndexes API.
|
|
887
887
|
*/
|
|
888
888
|
listIndexes(listIndexesRequest) {
|
|
889
889
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -954,7 +954,7 @@ class NosqlClient {
|
|
|
954
954
|
* @param ListTableUsageRequest
|
|
955
955
|
* @return ListTableUsageResponse
|
|
956
956
|
* @throws OciError when an error occurs
|
|
957
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
957
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTableUsage.ts.html |here} to see how to use ListTableUsage API.
|
|
958
958
|
*/
|
|
959
959
|
listTableUsage(listTableUsageRequest) {
|
|
960
960
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1023,7 +1023,7 @@ class NosqlClient {
|
|
|
1023
1023
|
* @param ListTablesRequest
|
|
1024
1024
|
* @return ListTablesResponse
|
|
1025
1025
|
* @throws OciError when an error occurs
|
|
1026
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1026
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTables.ts.html |here} to see how to use ListTables API.
|
|
1027
1027
|
*/
|
|
1028
1028
|
listTables(listTablesRequest) {
|
|
1029
1029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1093,7 +1093,7 @@ class NosqlClient {
|
|
|
1093
1093
|
* @param ListWorkRequestErrorsRequest
|
|
1094
1094
|
* @return ListWorkRequestErrorsResponse
|
|
1095
1095
|
* @throws OciError when an error occurs
|
|
1096
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1096
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1097
1097
|
*/
|
|
1098
1098
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1099
1099
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1160,7 +1160,7 @@ class NosqlClient {
|
|
|
1160
1160
|
* @param ListWorkRequestLogsRequest
|
|
1161
1161
|
* @return ListWorkRequestLogsResponse
|
|
1162
1162
|
* @throws OciError when an error occurs
|
|
1163
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1164
1164
|
*/
|
|
1165
1165
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1166
1166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1226,7 +1226,7 @@ class NosqlClient {
|
|
|
1226
1226
|
* @param ListWorkRequestsRequest
|
|
1227
1227
|
* @return ListWorkRequestsResponse
|
|
1228
1228
|
* @throws OciError when an error occurs
|
|
1229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1230
1230
|
*/
|
|
1231
1231
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1232
1232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1292,7 +1292,7 @@ class NosqlClient {
|
|
|
1292
1292
|
* @param PrepareStatementRequest
|
|
1293
1293
|
* @return PrepareStatementResponse
|
|
1294
1294
|
* @throws OciError when an error occurs
|
|
1295
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/PrepareStatement.ts.html |here} to see how to use PrepareStatement API.
|
|
1296
1296
|
*/
|
|
1297
1297
|
prepareStatement(prepareStatementRequest) {
|
|
1298
1298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1352,7 +1352,7 @@ class NosqlClient {
|
|
|
1352
1352
|
* @param QueryRequest
|
|
1353
1353
|
* @return QueryResponse
|
|
1354
1354
|
* @throws OciError when an error occurs
|
|
1355
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1355
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/Query.ts.html |here} to see how to use Query API.
|
|
1356
1356
|
*/
|
|
1357
1357
|
query(queryRequest) {
|
|
1358
1358
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1418,7 +1418,7 @@ class NosqlClient {
|
|
|
1418
1418
|
* @param SummarizeStatementRequest
|
|
1419
1419
|
* @return SummarizeStatementResponse
|
|
1420
1420
|
* @throws OciError when an error occurs
|
|
1421
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1421
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/SummarizeStatement.ts.html |here} to see how to use SummarizeStatement API.
|
|
1422
1422
|
*/
|
|
1423
1423
|
summarizeStatement(summarizeStatementRequest) {
|
|
1424
1424
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1477,7 +1477,7 @@ class NosqlClient {
|
|
|
1477
1477
|
* @param UpdateRowRequest
|
|
1478
1478
|
* @return UpdateRowResponse
|
|
1479
1479
|
* @throws OciError when an error occurs
|
|
1480
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1480
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateRow.ts.html |here} to see how to use UpdateRow API.
|
|
1481
1481
|
*/
|
|
1482
1482
|
updateRow(updateRowRequest) {
|
|
1483
1483
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1544,7 +1544,7 @@ class NosqlClient {
|
|
|
1544
1544
|
* @param UpdateTableRequest
|
|
1545
1545
|
* @return UpdateTableResponse
|
|
1546
1546
|
* @throws OciError when an error occurs
|
|
1547
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1547
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateTable.ts.html |here} to see how to use UpdateTable API.
|
|
1548
1548
|
*/
|
|
1549
1549
|
updateTable(updateTableRequest) {
|
|
1550
1550
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ChangeTableCompartment.ts.html |here} to see how to use ChangeTableCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeTableCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateIndex.ts.html |here} to see how to use CreateIndexRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateIndexRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/CreateTable.ts.html |here} to see how to use CreateTableRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateTableRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteIndex.ts.html |here} to see how to use DeleteIndexRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteIndexRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteRow.ts.html |here} to see how to use DeleteRowRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteRowRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteTable.ts.html |here} to see how to use DeleteTableRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteTableRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetIndex.ts.html |here} to see how to use GetIndexRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetIndexRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetRow.ts.html |here} to see how to use GetRowRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetRowRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetTable.ts.html |here} to see how to use GetTableRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetTableRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListIndexes.ts.html |here} to see how to use ListIndexesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListIndexesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTableUsage.ts.html |here} to see how to use ListTableUsageRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListTableUsageRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListTables.ts.html |here} to see how to use ListTablesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListTablesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/PrepareStatement.ts.html |here} to see how to use PrepareStatementRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface PrepareStatementRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/Query.ts.html |here} to see how to use QueryRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface QueryRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/SummarizeStatement.ts.html |here} to see how to use SummarizeStatementRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface SummarizeStatementRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateRow.ts.html |here} to see how to use UpdateRowRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateRowRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.64.0/nosql/UpdateTable.ts.html |here} to see how to use UpdateTableRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateTableRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-nosql",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.64.0",
|
|
4
4
|
"description": "OCI NodeJS client for Nosql Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.64.0",
|
|
19
|
+
"oci-workrequests": "2.64.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|