oci-streaming 2.76.1 → 2.77.1

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 (55) hide show
  1. package/lib/client.d.ts +38 -28
  2. package/lib/client.js +43 -26
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/connect-harness-summary.d.ts +4 -4
  5. package/lib/model/connect-harness.d.ts +4 -4
  6. package/lib/model/create-connect-harness-details.d.ts +3 -3
  7. package/lib/model/create-cursor-details.d.ts +7 -7
  8. package/lib/model/create-stream-details.d.ts +3 -3
  9. package/lib/model/create-stream-pool-details.d.ts +3 -3
  10. package/lib/model/cursor.d.ts +1 -1
  11. package/lib/model/put-messages-result-entry.d.ts +2 -2
  12. package/lib/model/put-messages-result.d.ts +3 -3
  13. package/lib/model/stream-pool-summary.d.ts +3 -3
  14. package/lib/model/stream-pool.d.ts +3 -3
  15. package/lib/model/stream-summary.d.ts +4 -4
  16. package/lib/model/stream.d.ts +4 -4
  17. package/lib/model/update-connect-harness-details.d.ts +2 -2
  18. package/lib/model/update-stream-details.d.ts +2 -2
  19. package/lib/model/update-stream-pool-details.d.ts +2 -2
  20. package/lib/request/change-connect-harness-compartment-request.d.ts +1 -1
  21. package/lib/request/change-stream-compartment-request.d.ts +1 -1
  22. package/lib/request/change-stream-pool-compartment-request.d.ts +1 -1
  23. package/lib/request/consumer-commit-request.d.ts +1 -1
  24. package/lib/request/consumer-heartbeat-request.d.ts +1 -1
  25. package/lib/request/create-connect-harness-request.d.ts +1 -1
  26. package/lib/request/create-cursor-request.d.ts +1 -1
  27. package/lib/request/create-group-cursor-request.d.ts +1 -1
  28. package/lib/request/create-stream-pool-request.d.ts +1 -1
  29. package/lib/request/create-stream-request.d.ts +1 -1
  30. package/lib/request/delete-connect-harness-request.d.ts +1 -1
  31. package/lib/request/delete-stream-pool-request.d.ts +1 -1
  32. package/lib/request/delete-stream-request.d.ts +1 -1
  33. package/lib/request/get-connect-harness-request.d.ts +1 -1
  34. package/lib/request/get-group-request.d.ts +1 -1
  35. package/lib/request/get-messages-request.d.ts +1 -1
  36. package/lib/request/get-stream-pool-request.d.ts +1 -1
  37. package/lib/request/get-stream-request.d.ts +1 -1
  38. package/lib/request/list-connect-harnesses-request.d.ts +2 -2
  39. package/lib/request/list-stream-pools-request.d.ts +2 -2
  40. package/lib/request/list-streams-request.d.ts +4 -4
  41. package/lib/request/put-messages-request.d.ts +1 -1
  42. package/lib/request/update-connect-harness-request.d.ts +1 -1
  43. package/lib/request/update-group-request.d.ts +1 -1
  44. package/lib/request/update-stream-pool-request.d.ts +1 -1
  45. package/lib/request/update-stream-request.d.ts +1 -1
  46. package/lib/response/create-connect-harness-response.d.ts +1 -1
  47. package/lib/response/create-stream-pool-response.d.ts +1 -1
  48. package/lib/response/create-stream-response.d.ts +1 -1
  49. package/lib/response/get-connect-harness-response.d.ts +1 -1
  50. package/lib/response/get-stream-pool-response.d.ts +1 -1
  51. package/lib/response/get-stream-response.d.ts +1 -1
  52. package/lib/response/update-connect-harness-response.d.ts +1 -1
  53. package/lib/response/update-stream-pool-response.d.ts +1 -1
  54. package/lib/response/update-stream-response.d.ts +1 -1
  55. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -15,6 +15,7 @@ import * as requests from "./request";
15
15
  import * as model from "./model";
16
16
  import * as responses from "./response";
17
17
  import { StreamAdminWaiter } from "./streamadmin-waiter";
18
+ declare const Breaker: any;
18
19
  export declare enum StreamApiKeys {
19
20
  }
20
21
  /**
@@ -27,7 +28,7 @@ export declare class StreamClient {
27
28
  protected "_endpoint": string;
28
29
  protected "_defaultHeaders": any;
29
30
  protected "_clientConfiguration": common.ClientConfiguration;
30
- protected _circuitBreaker: null;
31
+ protected _circuitBreaker: typeof Breaker | null;
31
32
  protected _httpOptions: any;
32
33
  protected _bodyDuplexMode: any;
33
34
  targetService: string;
@@ -49,6 +50,10 @@ export declare class StreamClient {
49
50
  * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
50
51
  */
51
52
  set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
53
+ /**
54
+ * Shutdown the circuit breaker used by the client when it is no longer needed
55
+ */
56
+ shutdownCircuitBreaker(): void;
52
57
  /**
53
58
  * Provides a mechanism to manually commit offsets, if not using commit-on-get consumer semantics.
54
59
  * This commits offsets assicated with the provided cursor, extends the timeout on each of the affected partitions, and returns an updated cursor.
@@ -57,7 +62,7 @@ export declare class StreamClient {
57
62
  * @param ConsumerCommitRequest
58
63
  * @return ConsumerCommitResponse
59
64
  * @throws OciError when an error occurs
60
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
65
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
61
66
  */
62
67
  consumerCommit(consumerCommitRequest: requests.ConsumerCommitRequest): Promise<responses.ConsumerCommitResponse>;
63
68
  /**
@@ -67,7 +72,7 @@ export declare class StreamClient {
67
72
  * @param ConsumerHeartbeatRequest
68
73
  * @return ConsumerHeartbeatResponse
69
74
  * @throws OciError when an error occurs
70
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
75
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
71
76
  */
72
77
  consumerHeartbeat(consumerHeartbeatRequest: requests.ConsumerHeartbeatRequest): Promise<responses.ConsumerHeartbeatResponse>;
73
78
  /**
@@ -81,7 +86,7 @@ export declare class StreamClient {
81
86
  * @param CreateCursorRequest
82
87
  * @return CreateCursorResponse
83
88
  * @throws OciError when an error occurs
84
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
89
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
85
90
  */
86
91
  createCursor(createCursorRequest: requests.CreateCursorRequest): Promise<responses.CreateCursorResponse>;
87
92
  /**
@@ -91,7 +96,7 @@ export declare class StreamClient {
91
96
  * @param CreateGroupCursorRequest
92
97
  * @return CreateGroupCursorResponse
93
98
  * @throws OciError when an error occurs
94
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
99
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
95
100
  */
96
101
  createGroupCursor(createGroupCursorRequest: requests.CreateGroupCursorRequest): Promise<responses.CreateGroupCursorResponse>;
97
102
  /**
@@ -101,7 +106,7 @@ export declare class StreamClient {
101
106
  * @param GetGroupRequest
102
107
  * @return GetGroupResponse
103
108
  * @throws OciError when an error occurs
104
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
109
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
105
110
  */
106
111
  getGroup(getGroupRequest: requests.GetGroupRequest): Promise<responses.GetGroupResponse>;
107
112
  /**
@@ -113,7 +118,7 @@ export declare class StreamClient {
113
118
  * @param GetMessagesRequest
114
119
  * @return GetMessagesResponse
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.76.1/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
117
122
  */
118
123
  getMessages(getMessagesRequest: requests.GetMessagesRequest): Promise<responses.GetMessagesResponse>;
119
124
  /**
@@ -126,7 +131,7 @@ export declare class StreamClient {
126
131
  * @param PutMessagesRequest
127
132
  * @return PutMessagesResponse
128
133
  * @throws OciError when an error occurs
129
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
130
135
  */
131
136
  putMessages(putMessagesRequest: requests.PutMessagesRequest): Promise<responses.PutMessagesResponse>;
132
137
  /**
@@ -136,7 +141,7 @@ export declare class StreamClient {
136
141
  * @param UpdateGroupRequest
137
142
  * @return UpdateGroupResponse
138
143
  * @throws OciError when an error occurs
139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
144
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
140
145
  */
141
146
  updateGroup(updateGroupRequest: requests.UpdateGroupRequest): Promise<responses.UpdateGroupResponse>;
142
147
  }
@@ -153,7 +158,7 @@ export declare class StreamAdminClient {
153
158
  protected "_defaultHeaders": any;
154
159
  protected "_waiters": StreamAdminWaiter;
155
160
  protected "_clientConfiguration": common.ClientConfiguration;
156
- protected _circuitBreaker: null;
161
+ protected _circuitBreaker: typeof Breaker | null;
157
162
  protected _httpOptions: any;
158
163
  protected _bodyDuplexMode: any;
159
164
  targetService: string;
@@ -206,13 +211,17 @@ export declare class StreamAdminClient {
206
211
  * @return The service waiters.
207
212
  */
208
213
  getWaiters(): StreamAdminWaiter;
214
+ /**
215
+ * Shutdown the circuit breaker used by the client when it is no longer needed
216
+ */
217
+ shutdownCircuitBreaker(): void;
209
218
  /**
210
219
  * Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
211
220
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
212
221
  * @param ChangeConnectHarnessCompartmentRequest
213
222
  * @return ChangeConnectHarnessCompartmentResponse
214
223
  * @throws OciError when an error occurs
215
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
224
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
216
225
  */
217
226
  changeConnectHarnessCompartment(changeConnectHarnessCompartmentRequest: requests.ChangeConnectHarnessCompartmentRequest): Promise<responses.ChangeConnectHarnessCompartmentResponse>;
218
227
  /**
@@ -224,7 +233,7 @@ export declare class StreamAdminClient {
224
233
  * @param ChangeStreamCompartmentRequest
225
234
  * @return ChangeStreamCompartmentResponse
226
235
  * @throws OciError when an error occurs
227
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
236
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
228
237
  */
229
238
  changeStreamCompartment(changeStreamCompartmentRequest: requests.ChangeStreamCompartmentRequest): Promise<responses.ChangeStreamCompartmentResponse>;
230
239
  /**
@@ -233,7 +242,7 @@ export declare class StreamAdminClient {
233
242
  * @param ChangeStreamPoolCompartmentRequest
234
243
  * @return ChangeStreamPoolCompartmentResponse
235
244
  * @throws OciError when an error occurs
236
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
245
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
237
246
  */
238
247
  changeStreamPoolCompartment(changeStreamPoolCompartmentRequest: requests.ChangeStreamPoolCompartmentRequest): Promise<responses.ChangeStreamPoolCompartmentResponse>;
239
248
  /**
@@ -244,7 +253,7 @@ export declare class StreamAdminClient {
244
253
  * @param CreateConnectHarnessRequest
245
254
  * @return CreateConnectHarnessResponse
246
255
  * @throws OciError when an error occurs
247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
256
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
248
257
  */
249
258
  createConnectHarness(createConnectHarnessRequest: requests.CreateConnectHarnessRequest): Promise<responses.CreateConnectHarnessResponse>;
250
259
  /**
@@ -258,7 +267,7 @@ export declare class StreamAdminClient {
258
267
  * @param CreateStreamRequest
259
268
  * @return CreateStreamResponse
260
269
  * @throws OciError when an error occurs
261
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
270
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
262
271
  */
263
272
  createStream(createStreamRequest: requests.CreateStreamRequest): Promise<responses.CreateStreamResponse>;
264
273
  /**
@@ -270,7 +279,7 @@ export declare class StreamAdminClient {
270
279
  * @param CreateStreamPoolRequest
271
280
  * @return CreateStreamPoolResponse
272
281
  * @throws OciError when an error occurs
273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
274
283
  */
275
284
  createStreamPool(createStreamPoolRequest: requests.CreateStreamPoolRequest): Promise<responses.CreateStreamPoolResponse>;
276
285
  /**
@@ -284,7 +293,7 @@ export declare class StreamAdminClient {
284
293
  * @param DeleteConnectHarnessRequest
285
294
  * @return DeleteConnectHarnessResponse
286
295
  * @throws OciError when an error occurs
287
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
296
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
288
297
  */
289
298
  deleteConnectHarness(deleteConnectHarnessRequest: requests.DeleteConnectHarnessRequest): Promise<responses.DeleteConnectHarnessResponse>;
290
299
  /**
@@ -298,7 +307,7 @@ export declare class StreamAdminClient {
298
307
  * @param DeleteStreamRequest
299
308
  * @return DeleteStreamResponse
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.76.1/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
310
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
302
311
  */
303
312
  deleteStream(deleteStreamRequest: requests.DeleteStreamRequest): Promise<responses.DeleteStreamResponse>;
304
313
  /**
@@ -309,7 +318,7 @@ export declare class StreamAdminClient {
309
318
  * @param DeleteStreamPoolRequest
310
319
  * @return DeleteStreamPoolResponse
311
320
  * @throws OciError when an error occurs
312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
321
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
313
322
  */
314
323
  deleteStreamPool(deleteStreamPoolRequest: requests.DeleteStreamPoolRequest): Promise<responses.DeleteStreamPoolResponse>;
315
324
  /**
@@ -318,7 +327,7 @@ export declare class StreamAdminClient {
318
327
  * @param GetConnectHarnessRequest
319
328
  * @return GetConnectHarnessResponse
320
329
  * @throws OciError when an error occurs
321
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
322
331
  */
323
332
  getConnectHarness(getConnectHarnessRequest: requests.GetConnectHarnessRequest): Promise<responses.GetConnectHarnessResponse>;
324
333
  /**
@@ -327,7 +336,7 @@ export declare class StreamAdminClient {
327
336
  * @param GetStreamRequest
328
337
  * @return GetStreamResponse
329
338
  * @throws OciError when an error occurs
330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetStream.ts.html |here} to see how to use GetStream API.
339
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetStream.ts.html |here} to see how to use GetStream API.
331
340
  */
332
341
  getStream(getStreamRequest: requests.GetStreamRequest): Promise<responses.GetStreamResponse>;
333
342
  /**
@@ -336,7 +345,7 @@ export declare class StreamAdminClient {
336
345
  * @param GetStreamPoolRequest
337
346
  * @return GetStreamPoolResponse
338
347
  * @throws OciError when an error occurs
339
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
348
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
340
349
  */
341
350
  getStreamPool(getStreamPoolRequest: requests.GetStreamPoolRequest): Promise<responses.GetStreamPoolResponse>;
342
351
  /**
@@ -345,7 +354,7 @@ export declare class StreamAdminClient {
345
354
  * @param ListConnectHarnessesRequest
346
355
  * @return ListConnectHarnessesResponse
347
356
  * @throws OciError when an error occurs
348
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
357
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
349
358
  */
350
359
  listConnectHarnesses(listConnectHarnessesRequest: requests.ListConnectHarnessesRequest): Promise<responses.ListConnectHarnessesResponse>;
351
360
  /**
@@ -386,7 +395,7 @@ export declare class StreamAdminClient {
386
395
  * @param ListStreamPoolsRequest
387
396
  * @return ListStreamPoolsResponse
388
397
  * @throws OciError when an error occurs
389
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
398
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
390
399
  */
391
400
  listStreamPools(listStreamPoolsRequest: requests.ListStreamPoolsRequest): Promise<responses.ListStreamPoolsResponse>;
392
401
  /**
@@ -431,7 +440,7 @@ export declare class StreamAdminClient {
431
440
  * @param ListStreamsRequest
432
441
  * @return ListStreamsResponse
433
442
  * @throws OciError when an error occurs
434
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
443
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
435
444
  */
436
445
  listStreams(listStreamsRequest: requests.ListStreamsRequest): Promise<responses.ListStreamsResponse>;
437
446
  /**
@@ -473,7 +482,7 @@ export declare class StreamAdminClient {
473
482
  * @param UpdateConnectHarnessRequest
474
483
  * @return UpdateConnectHarnessResponse
475
484
  * @throws OciError when an error occurs
476
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
485
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
477
486
  */
478
487
  updateConnectHarness(updateConnectHarnessRequest: requests.UpdateConnectHarnessRequest): Promise<responses.UpdateConnectHarnessResponse>;
479
488
  /**
@@ -483,7 +492,7 @@ export declare class StreamAdminClient {
483
492
  * @param UpdateStreamRequest
484
493
  * @return UpdateStreamResponse
485
494
  * @throws OciError when an error occurs
486
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
495
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
487
496
  */
488
497
  updateStream(updateStreamRequest: requests.UpdateStreamRequest): Promise<responses.UpdateStreamResponse>;
489
498
  /**
@@ -493,7 +502,8 @@ export declare class StreamAdminClient {
493
502
  * @param UpdateStreamPoolRequest
494
503
  * @return UpdateStreamPoolResponse
495
504
  * @throws OciError when an error occurs
496
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
505
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
497
506
  */
498
507
  updateStreamPool(updateStreamPoolRequest: requests.UpdateStreamPoolRequest): Promise<responses.UpdateStreamPoolResponse>;
499
508
  }
509
+ export {};
package/lib/client.js CHANGED
@@ -46,6 +46,7 @@ const model = __importStar(require("./model"));
46
46
  const oci_common_1 = require("oci-common");
47
47
  const streamadmin_waiter_1 = require("./streamadmin-waiter");
48
48
  const oci_common_2 = require("oci-common");
49
+ const Breaker = require("opossum");
49
50
  // ===============================================
50
51
  // This file is autogenerated - Please do not edit
51
52
  // ===============================================
@@ -123,6 +124,14 @@ class StreamClient {
123
124
  if (this.logger)
124
125
  this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
125
126
  }
127
+ /**
128
+ * Shutdown the circuit breaker used by the client when it is no longer needed
129
+ */
130
+ shutdownCircuitBreaker() {
131
+ if (this._circuitBreaker) {
132
+ this._circuitBreaker.shutdown();
133
+ }
134
+ }
126
135
  /**
127
136
  * Provides a mechanism to manually commit offsets, if not using commit-on-get consumer semantics.
128
137
  * This commits offsets assicated with the provided cursor, extends the timeout on each of the affected partitions, and returns an updated cursor.
@@ -131,7 +140,7 @@ class StreamClient {
131
140
  * @param ConsumerCommitRequest
132
141
  * @return ConsumerCommitResponse
133
142
  * @throws OciError when an error occurs
134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
143
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
135
144
  */
136
145
  consumerCommit(consumerCommitRequest) {
137
146
  return __awaiter(this, void 0, void 0, function* () {
@@ -192,7 +201,7 @@ class StreamClient {
192
201
  * @param ConsumerHeartbeatRequest
193
202
  * @return ConsumerHeartbeatResponse
194
203
  * @throws OciError when an error occurs
195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
204
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
196
205
  */
197
206
  consumerHeartbeat(consumerHeartbeatRequest) {
198
207
  return __awaiter(this, void 0, void 0, function* () {
@@ -257,7 +266,7 @@ class StreamClient {
257
266
  * @param CreateCursorRequest
258
267
  * @return CreateCursorResponse
259
268
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
261
270
  */
262
271
  createCursor(createCursorRequest) {
263
272
  return __awaiter(this, void 0, void 0, function* () {
@@ -317,7 +326,7 @@ class StreamClient {
317
326
  * @param CreateGroupCursorRequest
318
327
  * @return CreateGroupCursorResponse
319
328
  * @throws OciError when an error occurs
320
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
329
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
321
330
  */
322
331
  createGroupCursor(createGroupCursorRequest) {
323
332
  return __awaiter(this, void 0, void 0, function* () {
@@ -377,7 +386,7 @@ class StreamClient {
377
386
  * @param GetGroupRequest
378
387
  * @return GetGroupResponse
379
388
  * @throws OciError when an error occurs
380
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
381
390
  */
382
391
  getGroup(getGroupRequest) {
383
392
  return __awaiter(this, void 0, void 0, function* () {
@@ -439,7 +448,7 @@ class StreamClient {
439
448
  * @param GetMessagesRequest
440
449
  * @return GetMessagesResponse
441
450
  * @throws OciError when an error occurs
442
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
451
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
443
452
  */
444
453
  getMessages(getMessagesRequest) {
445
454
  return __awaiter(this, void 0, void 0, function* () {
@@ -509,7 +518,7 @@ class StreamClient {
509
518
  * @param PutMessagesRequest
510
519
  * @return PutMessagesResponse
511
520
  * @throws OciError when an error occurs
512
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
521
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
513
522
  */
514
523
  putMessages(putMessagesRequest) {
515
524
  return __awaiter(this, void 0, void 0, function* () {
@@ -569,7 +578,7 @@ class StreamClient {
569
578
  * @param UpdateGroupRequest
570
579
  * @return UpdateGroupResponse
571
580
  * @throws OciError when an error occurs
572
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
581
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
573
582
  */
574
583
  updateGroup(updateGroupRequest) {
575
584
  return __awaiter(this, void 0, void 0, function* () {
@@ -756,13 +765,21 @@ class StreamAdminClient {
756
765
  }
757
766
  throw Error("Waiters do not exist. Please create waiters.");
758
767
  }
768
+ /**
769
+ * Shutdown the circuit breaker used by the client when it is no longer needed
770
+ */
771
+ shutdownCircuitBreaker() {
772
+ if (this._circuitBreaker) {
773
+ this._circuitBreaker.shutdown();
774
+ }
775
+ }
759
776
  /**
760
777
  * Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource.
761
778
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
762
779
  * @param ChangeConnectHarnessCompartmentRequest
763
780
  * @return ChangeConnectHarnessCompartmentResponse
764
781
  * @throws OciError when an error occurs
765
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
782
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
766
783
  */
767
784
  changeConnectHarnessCompartment(changeConnectHarnessCompartmentRequest) {
768
785
  return __awaiter(this, void 0, void 0, function* () {
@@ -821,7 +838,7 @@ class StreamAdminClient {
821
838
  * @param ChangeStreamCompartmentRequest
822
839
  * @return ChangeStreamCompartmentResponse
823
840
  * @throws OciError when an error occurs
824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
841
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
825
842
  */
826
843
  changeStreamCompartment(changeStreamCompartmentRequest) {
827
844
  return __awaiter(this, void 0, void 0, function* () {
@@ -877,7 +894,7 @@ class StreamAdminClient {
877
894
  * @param ChangeStreamPoolCompartmentRequest
878
895
  * @return ChangeStreamPoolCompartmentResponse
879
896
  * @throws OciError when an error occurs
880
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
897
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
881
898
  */
882
899
  changeStreamPoolCompartment(changeStreamPoolCompartmentRequest) {
883
900
  return __awaiter(this, void 0, void 0, function* () {
@@ -935,7 +952,7 @@ class StreamAdminClient {
935
952
  * @param CreateConnectHarnessRequest
936
953
  * @return CreateConnectHarnessResponse
937
954
  * @throws OciError when an error occurs
938
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
955
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
939
956
  */
940
957
  createConnectHarness(createConnectHarnessRequest) {
941
958
  return __awaiter(this, void 0, void 0, function* () {
@@ -1003,7 +1020,7 @@ class StreamAdminClient {
1003
1020
  * @param CreateStreamRequest
1004
1021
  * @return CreateStreamResponse
1005
1022
  * @throws OciError when an error occurs
1006
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
1023
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
1007
1024
  */
1008
1025
  createStream(createStreamRequest) {
1009
1026
  return __awaiter(this, void 0, void 0, function* () {
@@ -1068,7 +1085,7 @@ class StreamAdminClient {
1068
1085
  * @param CreateStreamPoolRequest
1069
1086
  * @return CreateStreamPoolResponse
1070
1087
  * @throws OciError when an error occurs
1071
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
1088
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
1072
1089
  */
1073
1090
  createStreamPool(createStreamPoolRequest) {
1074
1091
  return __awaiter(this, void 0, void 0, function* () {
@@ -1136,7 +1153,7 @@ class StreamAdminClient {
1136
1153
  * @param DeleteConnectHarnessRequest
1137
1154
  * @return DeleteConnectHarnessResponse
1138
1155
  * @throws OciError when an error occurs
1139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
1156
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
1140
1157
  */
1141
1158
  deleteConnectHarness(deleteConnectHarnessRequest) {
1142
1159
  return __awaiter(this, void 0, void 0, function* () {
@@ -1196,7 +1213,7 @@ class StreamAdminClient {
1196
1213
  * @param DeleteStreamRequest
1197
1214
  * @return DeleteStreamResponse
1198
1215
  * @throws OciError when an error occurs
1199
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
1216
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
1200
1217
  */
1201
1218
  deleteStream(deleteStreamRequest) {
1202
1219
  return __awaiter(this, void 0, void 0, function* () {
@@ -1253,7 +1270,7 @@ class StreamAdminClient {
1253
1270
  * @param DeleteStreamPoolRequest
1254
1271
  * @return DeleteStreamPoolResponse
1255
1272
  * @throws OciError when an error occurs
1256
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
1273
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
1257
1274
  */
1258
1275
  deleteStreamPool(deleteStreamPoolRequest) {
1259
1276
  return __awaiter(this, void 0, void 0, function* () {
@@ -1308,7 +1325,7 @@ class StreamAdminClient {
1308
1325
  * @param GetConnectHarnessRequest
1309
1326
  * @return GetConnectHarnessResponse
1310
1327
  * @throws OciError when an error occurs
1311
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
1328
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
1312
1329
  */
1313
1330
  getConnectHarness(getConnectHarnessRequest) {
1314
1331
  return __awaiter(this, void 0, void 0, function* () {
@@ -1371,7 +1388,7 @@ class StreamAdminClient {
1371
1388
  * @param GetStreamRequest
1372
1389
  * @return GetStreamResponse
1373
1390
  * @throws OciError when an error occurs
1374
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetStream.ts.html |here} to see how to use GetStream API.
1391
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetStream.ts.html |here} to see how to use GetStream API.
1375
1392
  */
1376
1393
  getStream(getStreamRequest) {
1377
1394
  return __awaiter(this, void 0, void 0, function* () {
@@ -1434,7 +1451,7 @@ class StreamAdminClient {
1434
1451
  * @param GetStreamPoolRequest
1435
1452
  * @return GetStreamPoolResponse
1436
1453
  * @throws OciError when an error occurs
1437
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
1454
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
1438
1455
  */
1439
1456
  getStreamPool(getStreamPoolRequest) {
1440
1457
  return __awaiter(this, void 0, void 0, function* () {
@@ -1497,7 +1514,7 @@ class StreamAdminClient {
1497
1514
  * @param ListConnectHarnessesRequest
1498
1515
  * @return ListConnectHarnessesResponse
1499
1516
  * @throws OciError when an error occurs
1500
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
1517
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
1501
1518
  */
1502
1519
  listConnectHarnesses(listConnectHarnessesRequest) {
1503
1520
  return __awaiter(this, void 0, void 0, function* () {
@@ -1612,7 +1629,7 @@ class StreamAdminClient {
1612
1629
  * @param ListStreamPoolsRequest
1613
1630
  * @return ListStreamPoolsResponse
1614
1631
  * @throws OciError when an error occurs
1615
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
1632
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
1616
1633
  */
1617
1634
  listStreamPools(listStreamPoolsRequest) {
1618
1635
  return __awaiter(this, void 0, void 0, function* () {
@@ -1731,7 +1748,7 @@ class StreamAdminClient {
1731
1748
  * @param ListStreamsRequest
1732
1749
  * @return ListStreamsResponse
1733
1750
  * @throws OciError when an error occurs
1734
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
1751
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
1735
1752
  */
1736
1753
  listStreams(listStreamsRequest) {
1737
1754
  return __awaiter(this, void 0, void 0, function* () {
@@ -1848,7 +1865,7 @@ class StreamAdminClient {
1848
1865
  * @param UpdateConnectHarnessRequest
1849
1866
  * @return UpdateConnectHarnessResponse
1850
1867
  * @throws OciError when an error occurs
1851
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
1868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
1852
1869
  */
1853
1870
  updateConnectHarness(updateConnectHarnessRequest) {
1854
1871
  return __awaiter(this, void 0, void 0, function* () {
@@ -1914,7 +1931,7 @@ class StreamAdminClient {
1914
1931
  * @param UpdateStreamRequest
1915
1932
  * @return UpdateStreamResponse
1916
1933
  * @throws OciError when an error occurs
1917
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
1934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
1918
1935
  */
1919
1936
  updateStream(updateStreamRequest) {
1920
1937
  return __awaiter(this, void 0, void 0, function* () {
@@ -1980,7 +1997,7 @@ class StreamAdminClient {
1980
1997
  * @param UpdateStreamPoolRequest
1981
1998
  * @return UpdateStreamPoolResponse
1982
1999
  * @throws OciError when an error occurs
1983
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.1/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
2000
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
1984
2001
  */
1985
2002
  updateStreamPool(updateStreamPoolRequest) {
1986
2003
  return __awaiter(this, void 0, void 0, function* () {