oci-lockbox 2.84.2 → 2.85.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 (47) hide show
  1. package/lib/client.d.ts +55 -46
  2. package/lib/client.js +137 -69
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/access-request-ext.d.ts +138 -0
  5. package/lib/model/access-request-ext.js +95 -0
  6. package/lib/model/access-request-ext.js.map +1 -0
  7. package/lib/model/access-request-summary.d.ts +28 -0
  8. package/lib/model/access-request-summary.js.map +1 -1
  9. package/lib/model/approver-info.d.ts +4 -0
  10. package/lib/model/approver-info.js.map +1 -1
  11. package/lib/model/index.d.ts +2 -0
  12. package/lib/model/index.js +3 -1
  13. package/lib/model/index.js.map +1 -1
  14. package/lib/request/cancel-work-request-request.d.ts +1 -1
  15. package/lib/request/change-approval-template-compartment-request.d.ts +1 -1
  16. package/lib/request/change-lockbox-compartment-request.d.ts +1 -1
  17. package/lib/request/create-access-request-request.d.ts +1 -1
  18. package/lib/request/create-approval-template-request.d.ts +1 -1
  19. package/lib/request/create-lockbox-request.d.ts +1 -1
  20. package/lib/request/delete-approval-template-request.d.ts +1 -1
  21. package/lib/request/delete-lockbox-request.d.ts +1 -1
  22. package/lib/request/export-access-requests-request.d.ts +2 -2
  23. package/lib/request/get-access-materials-request.d.ts +1 -1
  24. package/lib/request/get-access-request-internal-request.d.ts +26 -0
  25. package/lib/request/get-access-request-internal-request.js +15 -0
  26. package/lib/request/get-access-request-internal-request.js.map +1 -0
  27. package/lib/request/get-access-request-request.d.ts +1 -1
  28. package/lib/request/get-approval-template-request.d.ts +1 -1
  29. package/lib/request/get-lockbox-request.d.ts +1 -1
  30. package/lib/request/get-work-request-request.d.ts +1 -1
  31. package/lib/request/handle-access-request-request.d.ts +1 -1
  32. package/lib/request/index.d.ts +2 -0
  33. package/lib/request/index.js.map +1 -1
  34. package/lib/request/list-access-requests-request.d.ts +1 -1
  35. package/lib/request/list-approval-templates-request.d.ts +1 -1
  36. package/lib/request/list-lockboxes-request.d.ts +1 -1
  37. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  38. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  39. package/lib/request/list-work-requests-request.d.ts +1 -1
  40. package/lib/request/update-approval-template-request.d.ts +1 -1
  41. package/lib/request/update-lockbox-request.d.ts +1 -1
  42. package/lib/response/export-access-requests-response.d.ts +5 -0
  43. package/lib/response/get-access-request-internal-response.d.ts +30 -0
  44. package/lib/response/get-access-request-internal-response.js +15 -0
  45. package/lib/response/get-access-request-internal-response.js.map +1 -0
  46. package/lib/response/index.d.ts +2 -0
  47. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -94,220 +94,229 @@ export declare class LockboxClient {
94
94
  close(): void;
95
95
  /**
96
96
  * Cancels the work request with the given ID.
97
- * This operation does not retry by default if the user has not defined a retry configuration.
97
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
98
98
  * @param CancelWorkRequestRequest
99
99
  * @return CancelWorkRequestResponse
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.84.2/lockbox/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
101
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
102
102
  */
103
103
  cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
104
104
  /**
105
105
  * Moves an ApprovalTemplate resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource.
106
- * This operation does not retry by default if the user has not defined a retry configuration.
106
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
107
107
  * @param ChangeApprovalTemplateCompartmentRequest
108
108
  * @return ChangeApprovalTemplateCompartmentResponse
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.84.2/lockbox/ChangeApprovalTemplateCompartment.ts.html |here} to see how to use ChangeApprovalTemplateCompartment API.
110
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ChangeApprovalTemplateCompartment.ts.html |here} to see how to use ChangeApprovalTemplateCompartment API.
111
111
  */
112
112
  changeApprovalTemplateCompartment(changeApprovalTemplateCompartmentRequest: requests.ChangeApprovalTemplateCompartmentRequest): Promise<responses.ChangeApprovalTemplateCompartmentResponse>;
113
113
  /**
114
114
  * Moves a Lockbox resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource.
115
- * This operation does not retry by default if the user has not defined a retry configuration.
115
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
116
116
  * @param ChangeLockboxCompartmentRequest
117
117
  * @return ChangeLockboxCompartmentResponse
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.84.2/lockbox/ChangeLockboxCompartment.ts.html |here} to see how to use ChangeLockboxCompartment API.
119
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ChangeLockboxCompartment.ts.html |here} to see how to use ChangeLockboxCompartment API.
120
120
  */
121
121
  changeLockboxCompartment(changeLockboxCompartmentRequest: requests.ChangeLockboxCompartmentRequest): Promise<responses.ChangeLockboxCompartmentResponse>;
122
122
  /**
123
123
  * Creates a new access request.
124
124
  *
125
- * This operation does not retry by default if the user has not defined a retry configuration.
125
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
126
126
  * @param CreateAccessRequestRequest
127
127
  * @return CreateAccessRequestResponse
128
128
  * @throws OciError when an error occurs
129
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/CreateAccessRequest.ts.html |here} to see how to use CreateAccessRequest API.
129
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/CreateAccessRequest.ts.html |here} to see how to use CreateAccessRequest API.
130
130
  */
131
131
  createAccessRequest(createAccessRequestRequest: requests.CreateAccessRequestRequest): Promise<responses.CreateAccessRequestResponse>;
132
132
  /**
133
133
  * Creates a new approval template.
134
134
  *
135
- * This operation does not retry by default if the user has not defined a retry configuration.
135
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
136
136
  * @param CreateApprovalTemplateRequest
137
137
  * @return CreateApprovalTemplateResponse
138
138
  * @throws OciError when an error occurs
139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/CreateApprovalTemplate.ts.html |here} to see how to use CreateApprovalTemplate API.
139
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/CreateApprovalTemplate.ts.html |here} to see how to use CreateApprovalTemplate API.
140
140
  */
141
141
  createApprovalTemplate(createApprovalTemplateRequest: requests.CreateApprovalTemplateRequest): Promise<responses.CreateApprovalTemplateResponse>;
142
142
  /**
143
143
  * Creates a new Lockbox.
144
144
  *
145
- * This operation does not retry by default if the user has not defined a retry configuration.
145
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
146
146
  * @param CreateLockboxRequest
147
147
  * @return CreateLockboxResponse
148
148
  * @throws OciError when an error occurs
149
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/CreateLockbox.ts.html |here} to see how to use CreateLockbox API.
149
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/CreateLockbox.ts.html |here} to see how to use CreateLockbox API.
150
150
  */
151
151
  createLockbox(createLockboxRequest: requests.CreateLockboxRequest): Promise<responses.CreateLockboxResponse>;
152
152
  /**
153
153
  * Deletes an ApprovalTemplate resource by identifier
154
- * This operation does not retry by default if the user has not defined a retry configuration.
154
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
155
155
  * @param DeleteApprovalTemplateRequest
156
156
  * @return DeleteApprovalTemplateResponse
157
157
  * @throws OciError when an error occurs
158
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/DeleteApprovalTemplate.ts.html |here} to see how to use DeleteApprovalTemplate API.
158
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/DeleteApprovalTemplate.ts.html |here} to see how to use DeleteApprovalTemplate API.
159
159
  */
160
160
  deleteApprovalTemplate(deleteApprovalTemplateRequest: requests.DeleteApprovalTemplateRequest): Promise<responses.DeleteApprovalTemplateResponse>;
161
161
  /**
162
162
  * Deletes a Lockbox resource by identifier
163
- * This operation does not retry by default if the user has not defined a retry configuration.
163
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
164
164
  * @param DeleteLockboxRequest
165
165
  * @return DeleteLockboxResponse
166
166
  * @throws OciError when an error occurs
167
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/DeleteLockbox.ts.html |here} to see how to use DeleteLockbox API.
167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/DeleteLockbox.ts.html |here} to see how to use DeleteLockbox API.
168
168
  */
169
169
  deleteLockbox(deleteLockboxRequest: requests.DeleteLockboxRequest): Promise<responses.DeleteLockboxResponse>;
170
170
  /**
171
171
  * Exports a list of AccessRequestSummary objects within a compartment and during a specified time range in text format. You can filter the results by problem severity.
172
172
  *
173
- * This operation does not retry by default if the user has not defined a retry configuration.
173
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
174
174
  * @param ExportAccessRequestsRequest
175
175
  * @return ExportAccessRequestsResponse
176
176
  * @throws OciError when an error occurs
177
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ExportAccessRequests.ts.html |here} to see how to use ExportAccessRequests API.
177
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ExportAccessRequests.ts.html |here} to see how to use ExportAccessRequests API.
178
178
  */
179
179
  exportAccessRequests(exportAccessRequestsRequest: requests.ExportAccessRequestsRequest): Promise<responses.ExportAccessRequestsResponse>;
180
180
  /**
181
181
  * Retrieves the access credential/material associated with the access request.
182
182
  *
183
- * This operation does not retry by default if the user has not defined a retry configuration.
183
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
184
184
  * @param GetAccessMaterialsRequest
185
185
  * @return GetAccessMaterialsResponse
186
186
  * @throws OciError when an error occurs
187
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/GetAccessMaterials.ts.html |here} to see how to use GetAccessMaterials API.
187
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetAccessMaterials.ts.html |here} to see how to use GetAccessMaterials API.
188
188
  */
189
189
  getAccessMaterials(getAccessMaterialsRequest: requests.GetAccessMaterialsRequest): Promise<responses.GetAccessMaterialsResponse>;
190
190
  /**
191
191
  * Retrieves an access request identified by the access request ID.
192
- * This operation does not retry by default if the user has not defined a retry configuration.
192
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
193
193
  * @param GetAccessRequestRequest
194
194
  * @return GetAccessRequestResponse
195
195
  * @throws OciError when an error occurs
196
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/GetAccessRequest.ts.html |here} to see how to use GetAccessRequest API.
196
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetAccessRequest.ts.html |here} to see how to use GetAccessRequest API.
197
197
  */
198
198
  getAccessRequest(getAccessRequestRequest: requests.GetAccessRequestRequest): Promise<responses.GetAccessRequestResponse>;
199
+ /**
200
+ * Retrieves an access request identified by the access request ID for internal use.
201
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
202
+ * @param GetAccessRequestInternalRequest
203
+ * @return GetAccessRequestInternalResponse
204
+ * @throws OciError when an error occurs
205
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetAccessRequestInternal.ts.html |here} to see how to use GetAccessRequestInternal API.
206
+ */
207
+ getAccessRequestInternal(getAccessRequestInternalRequest: requests.GetAccessRequestInternalRequest): Promise<responses.GetAccessRequestInternalResponse>;
199
208
  /**
200
209
  * Retrieves an approval template identified by the approval template ID.
201
- * This operation does not retry by default if the user has not defined a retry configuration.
210
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
202
211
  * @param GetApprovalTemplateRequest
203
212
  * @return GetApprovalTemplateResponse
204
213
  * @throws OciError when an error occurs
205
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/GetApprovalTemplate.ts.html |here} to see how to use GetApprovalTemplate API.
214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetApprovalTemplate.ts.html |here} to see how to use GetApprovalTemplate API.
206
215
  */
207
216
  getApprovalTemplate(getApprovalTemplateRequest: requests.GetApprovalTemplateRequest): Promise<responses.GetApprovalTemplateResponse>;
208
217
  /**
209
218
  * Gets a Lockbox by identifier
210
- * This operation does not retry by default if the user has not defined a retry configuration.
219
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
211
220
  * @param GetLockboxRequest
212
221
  * @return GetLockboxResponse
213
222
  * @throws OciError when an error occurs
214
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/GetLockbox.ts.html |here} to see how to use GetLockbox API.
223
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetLockbox.ts.html |here} to see how to use GetLockbox API.
215
224
  */
216
225
  getLockbox(getLockboxRequest: requests.GetLockboxRequest): Promise<responses.GetLockboxResponse>;
217
226
  /**
218
227
  * Gets details of the work request with the given ID.
219
- * This operation does not retry by default if the user has not defined a retry configuration.
228
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
220
229
  * @param GetWorkRequestRequest
221
230
  * @return GetWorkRequestResponse
222
231
  * @throws OciError when an error occurs
223
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
232
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
224
233
  */
225
234
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
226
235
  /**
227
236
  * Handle the AccessRequest
228
- * This operation does not retry by default if the user has not defined a retry configuration.
237
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
229
238
  * @param HandleAccessRequestRequest
230
239
  * @return HandleAccessRequestResponse
231
240
  * @throws OciError when an error occurs
232
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/HandleAccessRequest.ts.html |here} to see how to use HandleAccessRequest API.
241
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/HandleAccessRequest.ts.html |here} to see how to use HandleAccessRequest API.
233
242
  */
234
243
  handleAccessRequest(handleAccessRequestRequest: requests.HandleAccessRequestRequest): Promise<responses.HandleAccessRequestResponse>;
235
244
  /**
236
245
  * Retrieves a list of AccessRequestSummary objects in a compartment.
237
246
  *
238
- * This operation does not retry by default if the user has not defined a retry configuration.
247
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
239
248
  * @param ListAccessRequestsRequest
240
249
  * @return ListAccessRequestsResponse
241
250
  * @throws OciError when an error occurs
242
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListAccessRequests.ts.html |here} to see how to use ListAccessRequests API.
251
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListAccessRequests.ts.html |here} to see how to use ListAccessRequests API.
243
252
  */
244
253
  listAccessRequests(listAccessRequestsRequest: requests.ListAccessRequestsRequest): Promise<responses.ListAccessRequestsResponse>;
245
254
  /**
246
255
  * Retrieves a list of ApprovalTemplateSummary objects in a compartment.
247
256
  *
248
- * This operation does not retry by default if the user has not defined a retry configuration.
257
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
249
258
  * @param ListApprovalTemplatesRequest
250
259
  * @return ListApprovalTemplatesResponse
251
260
  * @throws OciError when an error occurs
252
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListApprovalTemplates.ts.html |here} to see how to use ListApprovalTemplates API.
261
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListApprovalTemplates.ts.html |here} to see how to use ListApprovalTemplates API.
253
262
  */
254
263
  listApprovalTemplates(listApprovalTemplatesRequest: requests.ListApprovalTemplatesRequest): Promise<responses.ListApprovalTemplatesResponse>;
255
264
  /**
256
265
  * Returns a list of Lockboxes.
257
266
  *
258
- * This operation does not retry by default if the user has not defined a retry configuration.
267
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
259
268
  * @param ListLockboxesRequest
260
269
  * @return ListLockboxesResponse
261
270
  * @throws OciError when an error occurs
262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListLockboxes.ts.html |here} to see how to use ListLockboxes API.
271
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListLockboxes.ts.html |here} to see how to use ListLockboxes API.
263
272
  */
264
273
  listLockboxes(listLockboxesRequest: requests.ListLockboxesRequest): Promise<responses.ListLockboxesResponse>;
265
274
  /**
266
275
  * Returns a (paginated) list of errors for the work request with the given ID.
267
276
  *
268
- * This operation does not retry by default if the user has not defined a retry configuration.
277
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
269
278
  * @param ListWorkRequestErrorsRequest
270
279
  * @return ListWorkRequestErrorsResponse
271
280
  * @throws OciError when an error occurs
272
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
281
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
273
282
  */
274
283
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
275
284
  /**
276
285
  * Returns a (paginated) list of logs for the work request with the given ID.
277
286
  *
278
- * This operation does not retry by default if the user has not defined a retry configuration.
287
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
279
288
  * @param ListWorkRequestLogsRequest
280
289
  * @return ListWorkRequestLogsResponse
281
290
  * @throws OciError when an error occurs
282
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
291
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
283
292
  */
284
293
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
285
294
  /**
286
295
  * Lists the work requests in a compartment.
287
296
  *
288
- * This operation does not retry by default if the user has not defined a retry configuration.
297
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
289
298
  * @param ListWorkRequestsRequest
290
299
  * @return ListWorkRequestsResponse
291
300
  * @throws OciError when an error occurs
292
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
301
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
293
302
  */
294
303
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
295
304
  /**
296
305
  * Updates the ApprovalTemplate
297
- * This operation does not retry by default if the user has not defined a retry configuration.
306
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
298
307
  * @param UpdateApprovalTemplateRequest
299
308
  * @return UpdateApprovalTemplateResponse
300
309
  * @throws OciError when an error occurs
301
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/UpdateApprovalTemplate.ts.html |here} to see how to use UpdateApprovalTemplate API.
310
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/UpdateApprovalTemplate.ts.html |here} to see how to use UpdateApprovalTemplate API.
302
311
  */
303
312
  updateApprovalTemplate(updateApprovalTemplateRequest: requests.UpdateApprovalTemplateRequest): Promise<responses.UpdateApprovalTemplateResponse>;
304
313
  /**
305
314
  * Updates the Lockbox
306
- * This operation does not retry by default if the user has not defined a retry configuration.
315
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
307
316
  * @param UpdateLockboxRequest
308
317
  * @return UpdateLockboxResponse
309
318
  * @throws OciError when an error occurs
310
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/lockbox/UpdateLockbox.ts.html |here} to see how to use UpdateLockbox API.
319
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/lockbox/UpdateLockbox.ts.html |here} to see how to use UpdateLockbox API.
311
320
  */
312
321
  updateLockbox(updateLockboxRequest: requests.UpdateLockboxRequest): Promise<responses.UpdateLockboxResponse>;
313
322
  }