oci-apigateway 2.77.0 → 2.78.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 (54) hide show
  1. package/lib/client.d.ts +82 -56
  2. package/lib/client.js +99 -50
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/cancel-work-request-request.d.ts +1 -1
  5. package/lib/request/change-api-compartment-request.d.ts +1 -1
  6. package/lib/request/change-certificate-compartment-request.d.ts +1 -1
  7. package/lib/request/change-deployment-compartment-request.d.ts +1 -1
  8. package/lib/request/change-gateway-compartment-request.d.ts +1 -1
  9. package/lib/request/change-subscriber-compartment-request.d.ts +1 -1
  10. package/lib/request/change-usage-plan-compartment-request.d.ts +1 -1
  11. package/lib/request/create-api-request.d.ts +1 -1
  12. package/lib/request/create-certificate-request.d.ts +1 -1
  13. package/lib/request/create-deployment-request.d.ts +1 -1
  14. package/lib/request/create-gateway-request.d.ts +1 -1
  15. package/lib/request/create-sdk-request.d.ts +1 -1
  16. package/lib/request/create-subscriber-request.d.ts +1 -1
  17. package/lib/request/create-usage-plan-request.d.ts +1 -1
  18. package/lib/request/delete-api-request.d.ts +1 -1
  19. package/lib/request/delete-certificate-request.d.ts +1 -1
  20. package/lib/request/delete-deployment-request.d.ts +1 -1
  21. package/lib/request/delete-gateway-request.d.ts +1 -1
  22. package/lib/request/delete-sdk-request.d.ts +1 -1
  23. package/lib/request/delete-subscriber-request.d.ts +1 -1
  24. package/lib/request/delete-usage-plan-request.d.ts +1 -1
  25. package/lib/request/get-api-content-request.d.ts +1 -1
  26. package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
  27. package/lib/request/get-api-request.d.ts +1 -1
  28. package/lib/request/get-api-validations-request.d.ts +1 -1
  29. package/lib/request/get-certificate-request.d.ts +1 -1
  30. package/lib/request/get-deployment-request.d.ts +1 -1
  31. package/lib/request/get-gateway-request.d.ts +1 -1
  32. package/lib/request/get-sdk-request.d.ts +1 -1
  33. package/lib/request/get-subscriber-request.d.ts +1 -1
  34. package/lib/request/get-usage-plan-request.d.ts +1 -1
  35. package/lib/request/get-work-request-request.d.ts +1 -1
  36. package/lib/request/list-apis-request.d.ts +1 -1
  37. package/lib/request/list-certificates-request.d.ts +1 -1
  38. package/lib/request/list-deployments-request.d.ts +1 -1
  39. package/lib/request/list-gateways-request.d.ts +1 -1
  40. package/lib/request/list-sdk-language-types-request.d.ts +1 -1
  41. package/lib/request/list-sdks-request.d.ts +1 -1
  42. package/lib/request/list-subscribers-request.d.ts +1 -1
  43. package/lib/request/list-usage-plans-request.d.ts +1 -1
  44. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  45. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  46. package/lib/request/list-work-requests-request.d.ts +1 -1
  47. package/lib/request/update-api-request.d.ts +1 -1
  48. package/lib/request/update-certificate-request.d.ts +1 -1
  49. package/lib/request/update-deployment-request.d.ts +1 -1
  50. package/lib/request/update-gateway-request.d.ts +1 -1
  51. package/lib/request/update-sdk-request.d.ts +1 -1
  52. package/lib/request/update-subscriber-request.d.ts +1 -1
  53. package/lib/request/update-usage-plan-request.d.ts +1 -1
  54. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -22,6 +22,7 @@ import { GatewayWaiter } from "./gateway-waiter";
22
22
  import { SubscribersWaiter } from "./subscribers-waiter";
23
23
  import { UsagePlansWaiter } from "./usageplans-waiter";
24
24
  import { WorkRequestsWaiter } from "./workrequests-waiter";
25
+ declare const Breaker: any;
25
26
  export declare enum ApiGatewayApiKeys {
26
27
  }
27
28
  /**
@@ -35,7 +36,7 @@ export declare class ApiGatewayClient {
35
36
  protected "_defaultHeaders": any;
36
37
  protected "_waiters": ApiGatewayWaiter;
37
38
  protected "_clientConfiguration": common.ClientConfiguration;
38
- protected _circuitBreaker: null;
39
+ protected _circuitBreaker: typeof Breaker | null;
39
40
  protected _httpOptions: any;
40
41
  protected _bodyDuplexMode: any;
41
42
  targetService: string;
@@ -88,13 +89,17 @@ export declare class ApiGatewayClient {
88
89
  * @return The service waiters.
89
90
  */
90
91
  getWaiters(): ApiGatewayWaiter;
92
+ /**
93
+ * Shutdown the circuit breaker used by the client when it is no longer needed
94
+ */
95
+ shutdownCircuitBreaker(): void;
91
96
  /**
92
97
  * Changes the API compartment.
93
98
  * This operation does not retry by default if the user has not defined a retry configuration.
94
99
  * @param ChangeApiCompartmentRequest
95
100
  * @return ChangeApiCompartmentResponse
96
101
  * @throws OciError when an error occurs
97
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
98
103
  */
99
104
  changeApiCompartment(changeApiCompartmentRequest: requests.ChangeApiCompartmentRequest): Promise<responses.ChangeApiCompartmentResponse>;
100
105
  /**
@@ -103,7 +108,7 @@ export declare class ApiGatewayClient {
103
108
  * @param ChangeCertificateCompartmentRequest
104
109
  * @return ChangeCertificateCompartmentResponse
105
110
  * @throws OciError when an error occurs
106
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
107
112
  */
108
113
  changeCertificateCompartment(changeCertificateCompartmentRequest: requests.ChangeCertificateCompartmentRequest): Promise<responses.ChangeCertificateCompartmentResponse>;
109
114
  /**
@@ -113,7 +118,7 @@ export declare class ApiGatewayClient {
113
118
  * @param CreateApiRequest
114
119
  * @return CreateApiResponse
115
120
  * @throws OciError when an error occurs
116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
117
122
  */
118
123
  createApi(createApiRequest: requests.CreateApiRequest): Promise<responses.CreateApiResponse>;
119
124
  /**
@@ -123,7 +128,7 @@ export declare class ApiGatewayClient {
123
128
  * @param CreateCertificateRequest
124
129
  * @return CreateCertificateResponse
125
130
  * @throws OciError when an error occurs
126
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
131
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
127
132
  */
128
133
  createCertificate(createCertificateRequest: requests.CreateCertificateRequest): Promise<responses.CreateCertificateResponse>;
129
134
  /**
@@ -132,7 +137,7 @@ export declare class ApiGatewayClient {
132
137
  * @param CreateSdkRequest
133
138
  * @return CreateSdkResponse
134
139
  * @throws OciError when an error occurs
135
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
140
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
136
141
  */
137
142
  createSdk(createSdkRequest: requests.CreateSdkRequest): Promise<responses.CreateSdkResponse>;
138
143
  /**
@@ -141,7 +146,7 @@ export declare class ApiGatewayClient {
141
146
  * @param DeleteApiRequest
142
147
  * @return DeleteApiResponse
143
148
  * @throws OciError when an error occurs
144
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
149
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
145
150
  */
146
151
  deleteApi(deleteApiRequest: requests.DeleteApiRequest): Promise<responses.DeleteApiResponse>;
147
152
  /**
@@ -150,7 +155,7 @@ export declare class ApiGatewayClient {
150
155
  * @param DeleteCertificateRequest
151
156
  * @return DeleteCertificateResponse
152
157
  * @throws OciError when an error occurs
153
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
158
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
154
159
  */
155
160
  deleteCertificate(deleteCertificateRequest: requests.DeleteCertificateRequest): Promise<responses.DeleteCertificateResponse>;
156
161
  /**
@@ -159,7 +164,7 @@ export declare class ApiGatewayClient {
159
164
  * @param DeleteSdkRequest
160
165
  * @return DeleteSdkResponse
161
166
  * @throws OciError when an error occurs
162
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
163
168
  */
164
169
  deleteSdk(deleteSdkRequest: requests.DeleteSdkRequest): Promise<responses.DeleteSdkResponse>;
165
170
  /**
@@ -168,7 +173,7 @@ export declare class ApiGatewayClient {
168
173
  * @param GetApiRequest
169
174
  * @return GetApiResponse
170
175
  * @throws OciError when an error occurs
171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
176
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
172
177
  */
173
178
  getApi(getApiRequest: requests.GetApiRequest): Promise<responses.GetApiResponse>;
174
179
  /**
@@ -177,7 +182,7 @@ export declare class ApiGatewayClient {
177
182
  * @param GetApiContentRequest
178
183
  * @return GetApiContentResponse
179
184
  * @throws OciError when an error occurs
180
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
185
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
181
186
  */
182
187
  getApiContent(getApiContentRequest: requests.GetApiContentRequest): Promise<responses.GetApiContentResponse>;
183
188
  /**
@@ -186,7 +191,7 @@ export declare class ApiGatewayClient {
186
191
  * @param GetApiDeploymentSpecificationRequest
187
192
  * @return GetApiDeploymentSpecificationResponse
188
193
  * @throws OciError when an error occurs
189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
194
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
190
195
  */
191
196
  getApiDeploymentSpecification(getApiDeploymentSpecificationRequest: requests.GetApiDeploymentSpecificationRequest): Promise<responses.GetApiDeploymentSpecificationResponse>;
192
197
  /**
@@ -195,7 +200,7 @@ export declare class ApiGatewayClient {
195
200
  * @param GetApiValidationsRequest
196
201
  * @return GetApiValidationsResponse
197
202
  * @throws OciError when an error occurs
198
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
203
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
199
204
  */
200
205
  getApiValidations(getApiValidationsRequest: requests.GetApiValidationsRequest): Promise<responses.GetApiValidationsResponse>;
201
206
  /**
@@ -204,7 +209,7 @@ export declare class ApiGatewayClient {
204
209
  * @param GetCertificateRequest
205
210
  * @return GetCertificateResponse
206
211
  * @throws OciError when an error occurs
207
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
212
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
208
213
  */
209
214
  getCertificate(getCertificateRequest: requests.GetCertificateRequest): Promise<responses.GetCertificateResponse>;
210
215
  /**
@@ -213,7 +218,7 @@ export declare class ApiGatewayClient {
213
218
  * @param GetSdkRequest
214
219
  * @return GetSdkResponse
215
220
  * @throws OciError when an error occurs
216
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
221
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
217
222
  */
218
223
  getSdk(getSdkRequest: requests.GetSdkRequest): Promise<responses.GetSdkResponse>;
219
224
  /**
@@ -223,7 +228,7 @@ export declare class ApiGatewayClient {
223
228
  * @param ListApisRequest
224
229
  * @return ListApisResponse
225
230
  * @throws OciError when an error occurs
226
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
231
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
227
232
  */
228
233
  listApis(listApisRequest: requests.ListApisRequest): Promise<responses.ListApisResponse>;
229
234
  /**
@@ -233,7 +238,7 @@ export declare class ApiGatewayClient {
233
238
  * @param ListCertificatesRequest
234
239
  * @return ListCertificatesResponse
235
240
  * @throws OciError when an error occurs
236
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
241
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
237
242
  */
238
243
  listCertificates(listCertificatesRequest: requests.ListCertificatesRequest): Promise<responses.ListCertificatesResponse>;
239
244
  /**
@@ -242,7 +247,7 @@ export declare class ApiGatewayClient {
242
247
  * @param ListSdkLanguageTypesRequest
243
248
  * @return ListSdkLanguageTypesResponse
244
249
  * @throws OciError when an error occurs
245
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
250
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
246
251
  */
247
252
  listSdkLanguageTypes(listSdkLanguageTypesRequest: requests.ListSdkLanguageTypesRequest): Promise<responses.ListSdkLanguageTypesResponse>;
248
253
  /**
@@ -251,7 +256,7 @@ export declare class ApiGatewayClient {
251
256
  * @param ListSdksRequest
252
257
  * @return ListSdksResponse
253
258
  * @throws OciError when an error occurs
254
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
255
260
  */
256
261
  listSdks(listSdksRequest: requests.ListSdksRequest): Promise<responses.ListSdksResponse>;
257
262
  /**
@@ -260,7 +265,7 @@ export declare class ApiGatewayClient {
260
265
  * @param UpdateApiRequest
261
266
  * @return UpdateApiResponse
262
267
  * @throws OciError when an error occurs
263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
264
269
  */
265
270
  updateApi(updateApiRequest: requests.UpdateApiRequest): Promise<responses.UpdateApiResponse>;
266
271
  /**
@@ -269,7 +274,7 @@ export declare class ApiGatewayClient {
269
274
  * @param UpdateCertificateRequest
270
275
  * @return UpdateCertificateResponse
271
276
  * @throws OciError when an error occurs
272
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
277
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
273
278
  */
274
279
  updateCertificate(updateCertificateRequest: requests.UpdateCertificateRequest): Promise<responses.UpdateCertificateResponse>;
275
280
  /**
@@ -278,7 +283,7 @@ export declare class ApiGatewayClient {
278
283
  * @param UpdateSdkRequest
279
284
  * @return UpdateSdkResponse
280
285
  * @throws OciError when an error occurs
281
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
286
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
282
287
  */
283
288
  updateSdk(updateSdkRequest: requests.UpdateSdkRequest): Promise<responses.UpdateSdkResponse>;
284
289
  }
@@ -295,7 +300,7 @@ export declare class DeploymentClient {
295
300
  protected "_defaultHeaders": any;
296
301
  protected "_waiters": DeploymentWaiter;
297
302
  protected "_clientConfiguration": common.ClientConfiguration;
298
- protected _circuitBreaker: null;
303
+ protected _circuitBreaker: typeof Breaker | null;
299
304
  protected _httpOptions: any;
300
305
  protected _bodyDuplexMode: any;
301
306
  targetService: string;
@@ -348,13 +353,17 @@ export declare class DeploymentClient {
348
353
  * @return The service waiters.
349
354
  */
350
355
  getWaiters(): DeploymentWaiter;
356
+ /**
357
+ * Shutdown the circuit breaker used by the client when it is no longer needed
358
+ */
359
+ shutdownCircuitBreaker(): void;
351
360
  /**
352
361
  * Changes the deployment compartment.
353
362
  * This operation does not retry by default if the user has not defined a retry configuration.
354
363
  * @param ChangeDeploymentCompartmentRequest
355
364
  * @return ChangeDeploymentCompartmentResponse
356
365
  * @throws OciError when an error occurs
357
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
366
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
358
367
  */
359
368
  changeDeploymentCompartment(changeDeploymentCompartmentRequest: requests.ChangeDeploymentCompartmentRequest): Promise<responses.ChangeDeploymentCompartmentResponse>;
360
369
  /**
@@ -364,7 +373,7 @@ export declare class DeploymentClient {
364
373
  * @param CreateDeploymentRequest
365
374
  * @return CreateDeploymentResponse
366
375
  * @throws OciError when an error occurs
367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
376
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
368
377
  */
369
378
  createDeployment(createDeploymentRequest: requests.CreateDeploymentRequest): Promise<responses.CreateDeploymentResponse>;
370
379
  /**
@@ -373,7 +382,7 @@ export declare class DeploymentClient {
373
382
  * @param DeleteDeploymentRequest
374
383
  * @return DeleteDeploymentResponse
375
384
  * @throws OciError when an error occurs
376
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
385
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
377
386
  */
378
387
  deleteDeployment(deleteDeploymentRequest: requests.DeleteDeploymentRequest): Promise<responses.DeleteDeploymentResponse>;
379
388
  /**
@@ -382,7 +391,7 @@ export declare class DeploymentClient {
382
391
  * @param GetDeploymentRequest
383
392
  * @return GetDeploymentResponse
384
393
  * @throws OciError when an error occurs
385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
394
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
386
395
  */
387
396
  getDeployment(getDeploymentRequest: requests.GetDeploymentRequest): Promise<responses.GetDeploymentResponse>;
388
397
  /**
@@ -392,7 +401,7 @@ export declare class DeploymentClient {
392
401
  * @param ListDeploymentsRequest
393
402
  * @return ListDeploymentsResponse
394
403
  * @throws OciError when an error occurs
395
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
404
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
396
405
  */
397
406
  listDeployments(listDeploymentsRequest: requests.ListDeploymentsRequest): Promise<responses.ListDeploymentsResponse>;
398
407
  /**
@@ -401,7 +410,7 @@ export declare class DeploymentClient {
401
410
  * @param UpdateDeploymentRequest
402
411
  * @return UpdateDeploymentResponse
403
412
  * @throws OciError when an error occurs
404
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
413
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
405
414
  */
406
415
  updateDeployment(updateDeploymentRequest: requests.UpdateDeploymentRequest): Promise<responses.UpdateDeploymentResponse>;
407
416
  }
@@ -418,7 +427,7 @@ export declare class GatewayClient {
418
427
  protected "_defaultHeaders": any;
419
428
  protected "_waiters": GatewayWaiter;
420
429
  protected "_clientConfiguration": common.ClientConfiguration;
421
- protected _circuitBreaker: null;
430
+ protected _circuitBreaker: typeof Breaker | null;
422
431
  protected _httpOptions: any;
423
432
  protected _bodyDuplexMode: any;
424
433
  targetService: string;
@@ -471,13 +480,17 @@ export declare class GatewayClient {
471
480
  * @return The service waiters.
472
481
  */
473
482
  getWaiters(): GatewayWaiter;
483
+ /**
484
+ * Shutdown the circuit breaker used by the client when it is no longer needed
485
+ */
486
+ shutdownCircuitBreaker(): void;
474
487
  /**
475
488
  * Changes the gateway compartment.
476
489
  * This operation does not retry by default if the user has not defined a retry configuration.
477
490
  * @param ChangeGatewayCompartmentRequest
478
491
  * @return ChangeGatewayCompartmentResponse
479
492
  * @throws OciError when an error occurs
480
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
493
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
481
494
  */
482
495
  changeGatewayCompartment(changeGatewayCompartmentRequest: requests.ChangeGatewayCompartmentRequest): Promise<responses.ChangeGatewayCompartmentResponse>;
483
496
  /**
@@ -487,7 +500,7 @@ export declare class GatewayClient {
487
500
  * @param CreateGatewayRequest
488
501
  * @return CreateGatewayResponse
489
502
  * @throws OciError when an error occurs
490
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
491
504
  */
492
505
  createGateway(createGatewayRequest: requests.CreateGatewayRequest): Promise<responses.CreateGatewayResponse>;
493
506
  /**
@@ -496,7 +509,7 @@ export declare class GatewayClient {
496
509
  * @param DeleteGatewayRequest
497
510
  * @return DeleteGatewayResponse
498
511
  * @throws OciError when an error occurs
499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
512
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
500
513
  */
501
514
  deleteGateway(deleteGatewayRequest: requests.DeleteGatewayRequest): Promise<responses.DeleteGatewayResponse>;
502
515
  /**
@@ -505,7 +518,7 @@ export declare class GatewayClient {
505
518
  * @param GetGatewayRequest
506
519
  * @return GetGatewayResponse
507
520
  * @throws OciError when an error occurs
508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
521
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
509
522
  */
510
523
  getGateway(getGatewayRequest: requests.GetGatewayRequest): Promise<responses.GetGatewayResponse>;
511
524
  /**
@@ -515,7 +528,7 @@ export declare class GatewayClient {
515
528
  * @param ListGatewaysRequest
516
529
  * @return ListGatewaysResponse
517
530
  * @throws OciError when an error occurs
518
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
531
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
519
532
  */
520
533
  listGateways(listGatewaysRequest: requests.ListGatewaysRequest): Promise<responses.ListGatewaysResponse>;
521
534
  /**
@@ -524,7 +537,7 @@ export declare class GatewayClient {
524
537
  * @param UpdateGatewayRequest
525
538
  * @return UpdateGatewayResponse
526
539
  * @throws OciError when an error occurs
527
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
540
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
528
541
  */
529
542
  updateGateway(updateGatewayRequest: requests.UpdateGatewayRequest): Promise<responses.UpdateGatewayResponse>;
530
543
  }
@@ -541,7 +554,7 @@ export declare class SubscribersClient {
541
554
  protected "_defaultHeaders": any;
542
555
  protected "_waiters": SubscribersWaiter;
543
556
  protected "_clientConfiguration": common.ClientConfiguration;
544
- protected _circuitBreaker: null;
557
+ protected _circuitBreaker: typeof Breaker | null;
545
558
  protected _httpOptions: any;
546
559
  protected _bodyDuplexMode: any;
547
560
  targetService: string;
@@ -594,13 +607,17 @@ export declare class SubscribersClient {
594
607
  * @return The service waiters.
595
608
  */
596
609
  getWaiters(): SubscribersWaiter;
610
+ /**
611
+ * Shutdown the circuit breaker used by the client when it is no longer needed
612
+ */
613
+ shutdownCircuitBreaker(): void;
597
614
  /**
598
615
  * Changes the subscriber compartment.
599
616
  * This operation does not retry by default if the user has not defined a retry configuration.
600
617
  * @param ChangeSubscriberCompartmentRequest
601
618
  * @return ChangeSubscriberCompartmentResponse
602
619
  * @throws OciError when an error occurs
603
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
620
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
604
621
  */
605
622
  changeSubscriberCompartment(changeSubscriberCompartmentRequest: requests.ChangeSubscriberCompartmentRequest): Promise<responses.ChangeSubscriberCompartmentResponse>;
606
623
  /**
@@ -609,7 +626,7 @@ export declare class SubscribersClient {
609
626
  * @param CreateSubscriberRequest
610
627
  * @return CreateSubscriberResponse
611
628
  * @throws OciError when an error occurs
612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
629
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
613
630
  */
614
631
  createSubscriber(createSubscriberRequest: requests.CreateSubscriberRequest): Promise<responses.CreateSubscriberResponse>;
615
632
  /**
@@ -618,7 +635,7 @@ export declare class SubscribersClient {
618
635
  * @param DeleteSubscriberRequest
619
636
  * @return DeleteSubscriberResponse
620
637
  * @throws OciError when an error occurs
621
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
638
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
622
639
  */
623
640
  deleteSubscriber(deleteSubscriberRequest: requests.DeleteSubscriberRequest): Promise<responses.DeleteSubscriberResponse>;
624
641
  /**
@@ -627,7 +644,7 @@ export declare class SubscribersClient {
627
644
  * @param GetSubscriberRequest
628
645
  * @return GetSubscriberResponse
629
646
  * @throws OciError when an error occurs
630
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
647
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
631
648
  */
632
649
  getSubscriber(getSubscriberRequest: requests.GetSubscriberRequest): Promise<responses.GetSubscriberResponse>;
633
650
  /**
@@ -636,7 +653,7 @@ export declare class SubscribersClient {
636
653
  * @param ListSubscribersRequest
637
654
  * @return ListSubscribersResponse
638
655
  * @throws OciError when an error occurs
639
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
656
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
640
657
  */
641
658
  listSubscribers(listSubscribersRequest: requests.ListSubscribersRequest): Promise<responses.ListSubscribersResponse>;
642
659
  /**
@@ -645,7 +662,7 @@ export declare class SubscribersClient {
645
662
  * @param UpdateSubscriberRequest
646
663
  * @return UpdateSubscriberResponse
647
664
  * @throws OciError when an error occurs
648
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
665
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
649
666
  */
650
667
  updateSubscriber(updateSubscriberRequest: requests.UpdateSubscriberRequest): Promise<responses.UpdateSubscriberResponse>;
651
668
  }
@@ -662,7 +679,7 @@ export declare class UsagePlansClient {
662
679
  protected "_defaultHeaders": any;
663
680
  protected "_waiters": UsagePlansWaiter;
664
681
  protected "_clientConfiguration": common.ClientConfiguration;
665
- protected _circuitBreaker: null;
682
+ protected _circuitBreaker: typeof Breaker | null;
666
683
  protected _httpOptions: any;
667
684
  protected _bodyDuplexMode: any;
668
685
  targetService: string;
@@ -715,13 +732,17 @@ export declare class UsagePlansClient {
715
732
  * @return The service waiters.
716
733
  */
717
734
  getWaiters(): UsagePlansWaiter;
735
+ /**
736
+ * Shutdown the circuit breaker used by the client when it is no longer needed
737
+ */
738
+ shutdownCircuitBreaker(): void;
718
739
  /**
719
740
  * Changes the usage plan compartment.
720
741
  * This operation does not retry by default if the user has not defined a retry configuration.
721
742
  * @param ChangeUsagePlanCompartmentRequest
722
743
  * @return ChangeUsagePlanCompartmentResponse
723
744
  * @throws OciError when an error occurs
724
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
745
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
725
746
  */
726
747
  changeUsagePlanCompartment(changeUsagePlanCompartmentRequest: requests.ChangeUsagePlanCompartmentRequest): Promise<responses.ChangeUsagePlanCompartmentResponse>;
727
748
  /**
@@ -730,7 +751,7 @@ export declare class UsagePlansClient {
730
751
  * @param CreateUsagePlanRequest
731
752
  * @return CreateUsagePlanResponse
732
753
  * @throws OciError when an error occurs
733
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
754
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
734
755
  */
735
756
  createUsagePlan(createUsagePlanRequest: requests.CreateUsagePlanRequest): Promise<responses.CreateUsagePlanResponse>;
736
757
  /**
@@ -739,7 +760,7 @@ export declare class UsagePlansClient {
739
760
  * @param DeleteUsagePlanRequest
740
761
  * @return DeleteUsagePlanResponse
741
762
  * @throws OciError when an error occurs
742
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
763
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
743
764
  */
744
765
  deleteUsagePlan(deleteUsagePlanRequest: requests.DeleteUsagePlanRequest): Promise<responses.DeleteUsagePlanResponse>;
745
766
  /**
@@ -748,7 +769,7 @@ export declare class UsagePlansClient {
748
769
  * @param GetUsagePlanRequest
749
770
  * @return GetUsagePlanResponse
750
771
  * @throws OciError when an error occurs
751
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
772
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
752
773
  */
753
774
  getUsagePlan(getUsagePlanRequest: requests.GetUsagePlanRequest): Promise<responses.GetUsagePlanResponse>;
754
775
  /**
@@ -757,7 +778,7 @@ export declare class UsagePlansClient {
757
778
  * @param ListUsagePlansRequest
758
779
  * @return ListUsagePlansResponse
759
780
  * @throws OciError when an error occurs
760
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
781
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
761
782
  */
762
783
  listUsagePlans(listUsagePlansRequest: requests.ListUsagePlansRequest): Promise<responses.ListUsagePlansResponse>;
763
784
  /**
@@ -766,7 +787,7 @@ export declare class UsagePlansClient {
766
787
  * @param UpdateUsagePlanRequest
767
788
  * @return UpdateUsagePlanResponse
768
789
  * @throws OciError when an error occurs
769
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
790
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
770
791
  */
771
792
  updateUsagePlan(updateUsagePlanRequest: requests.UpdateUsagePlanRequest): Promise<responses.UpdateUsagePlanResponse>;
772
793
  }
@@ -783,7 +804,7 @@ export declare class WorkRequestsClient {
783
804
  protected "_defaultHeaders": any;
784
805
  protected "_waiters": WorkRequestsWaiter;
785
806
  protected "_clientConfiguration": common.ClientConfiguration;
786
- protected _circuitBreaker: null;
807
+ protected _circuitBreaker: typeof Breaker | null;
787
808
  protected _httpOptions: any;
788
809
  protected _bodyDuplexMode: any;
789
810
  targetService: string;
@@ -836,13 +857,17 @@ export declare class WorkRequestsClient {
836
857
  * @return The service waiters.
837
858
  */
838
859
  getWaiters(): WorkRequestsWaiter;
860
+ /**
861
+ * Shutdown the circuit breaker used by the client when it is no longer needed
862
+ */
863
+ shutdownCircuitBreaker(): void;
839
864
  /**
840
865
  * Cancels the work request.
841
866
  * This operation does not retry by default if the user has not defined a retry configuration.
842
867
  * @param CancelWorkRequestRequest
843
868
  * @return CancelWorkRequestResponse
844
869
  * @throws OciError when an error occurs
845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
870
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
846
871
  */
847
872
  cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
848
873
  /**
@@ -851,7 +876,7 @@ export declare class WorkRequestsClient {
851
876
  * @param GetWorkRequestRequest
852
877
  * @return GetWorkRequestResponse
853
878
  * @throws OciError when an error occurs
854
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
879
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
855
880
  */
856
881
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
857
882
  /**
@@ -861,7 +886,7 @@ export declare class WorkRequestsClient {
861
886
  * @param ListWorkRequestErrorsRequest
862
887
  * @return ListWorkRequestErrorsResponse
863
888
  * @throws OciError when an error occurs
864
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
889
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
865
890
  */
866
891
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
867
892
  /**
@@ -871,7 +896,7 @@ export declare class WorkRequestsClient {
871
896
  * @param ListWorkRequestLogsRequest
872
897
  * @return ListWorkRequestLogsResponse
873
898
  * @throws OciError when an error occurs
874
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
899
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
875
900
  */
876
901
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
877
902
  /**
@@ -881,7 +906,8 @@ export declare class WorkRequestsClient {
881
906
  * @param ListWorkRequestsRequest
882
907
  * @return ListWorkRequestsResponse
883
908
  * @throws OciError when an error occurs
884
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
909
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
885
910
  */
886
911
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
887
912
  }
913
+ export {};