oci-streaming 2.79.0 → 2.79.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 (30) hide show
  1. package/lib/client.d.ts +26 -28
  2. package/lib/client.js +56 -144
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-connect-harness-compartment-request.d.ts +1 -1
  5. package/lib/request/change-stream-compartment-request.d.ts +1 -1
  6. package/lib/request/change-stream-pool-compartment-request.d.ts +1 -1
  7. package/lib/request/consumer-commit-request.d.ts +1 -1
  8. package/lib/request/consumer-heartbeat-request.d.ts +1 -1
  9. package/lib/request/create-connect-harness-request.d.ts +1 -1
  10. package/lib/request/create-cursor-request.d.ts +1 -1
  11. package/lib/request/create-group-cursor-request.d.ts +1 -1
  12. package/lib/request/create-stream-pool-request.d.ts +1 -1
  13. package/lib/request/create-stream-request.d.ts +1 -1
  14. package/lib/request/delete-connect-harness-request.d.ts +1 -1
  15. package/lib/request/delete-stream-pool-request.d.ts +1 -1
  16. package/lib/request/delete-stream-request.d.ts +1 -1
  17. package/lib/request/get-connect-harness-request.d.ts +1 -1
  18. package/lib/request/get-group-request.d.ts +1 -1
  19. package/lib/request/get-messages-request.d.ts +1 -1
  20. package/lib/request/get-stream-pool-request.d.ts +1 -1
  21. package/lib/request/get-stream-request.d.ts +1 -1
  22. package/lib/request/list-connect-harnesses-request.d.ts +1 -1
  23. package/lib/request/list-stream-pools-request.d.ts +1 -1
  24. package/lib/request/list-streams-request.d.ts +1 -1
  25. package/lib/request/put-messages-request.d.ts +1 -1
  26. package/lib/request/update-connect-harness-request.d.ts +1 -1
  27. package/lib/request/update-group-request.d.ts +1 -1
  28. package/lib/request/update-stream-pool-request.d.ts +1 -1
  29. package/lib/request/update-stream-request.d.ts +1 -1
  30. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -43,7 +43,6 @@ export declare class StreamClient {
43
43
  * @param endpoint The endpoint of the service.
44
44
  */
45
45
  set endpoint(endpoint: string);
46
- get logger(): import("oci-common/lib/log").Logger;
47
46
  /**
48
47
  * Determines whether realm specific endpoint should be used or not.
49
48
  * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
@@ -62,7 +61,7 @@ export declare class StreamClient {
62
61
  * @param ConsumerCommitRequest
63
62
  * @return ConsumerCommitResponse
64
63
  * @throws OciError when an error occurs
65
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
64
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
66
65
  */
67
66
  consumerCommit(consumerCommitRequest: requests.ConsumerCommitRequest): Promise<responses.ConsumerCommitResponse>;
68
67
  /**
@@ -72,7 +71,7 @@ export declare class StreamClient {
72
71
  * @param ConsumerHeartbeatRequest
73
72
  * @return ConsumerHeartbeatResponse
74
73
  * @throws OciError when an error occurs
75
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
74
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
76
75
  */
77
76
  consumerHeartbeat(consumerHeartbeatRequest: requests.ConsumerHeartbeatRequest): Promise<responses.ConsumerHeartbeatResponse>;
78
77
  /**
@@ -86,7 +85,7 @@ export declare class StreamClient {
86
85
  * @param CreateCursorRequest
87
86
  * @return CreateCursorResponse
88
87
  * @throws OciError when an error occurs
89
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
88
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
90
89
  */
91
90
  createCursor(createCursorRequest: requests.CreateCursorRequest): Promise<responses.CreateCursorResponse>;
92
91
  /**
@@ -96,7 +95,7 @@ export declare class StreamClient {
96
95
  * @param CreateGroupCursorRequest
97
96
  * @return CreateGroupCursorResponse
98
97
  * @throws OciError when an error occurs
99
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
98
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
100
99
  */
101
100
  createGroupCursor(createGroupCursorRequest: requests.CreateGroupCursorRequest): Promise<responses.CreateGroupCursorResponse>;
102
101
  /**
@@ -106,7 +105,7 @@ export declare class StreamClient {
106
105
  * @param GetGroupRequest
107
106
  * @return GetGroupResponse
108
107
  * @throws OciError when an error occurs
109
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
108
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
110
109
  */
111
110
  getGroup(getGroupRequest: requests.GetGroupRequest): Promise<responses.GetGroupResponse>;
112
111
  /**
@@ -118,7 +117,7 @@ export declare class StreamClient {
118
117
  * @param GetMessagesRequest
119
118
  * @return GetMessagesResponse
120
119
  * @throws OciError when an error occurs
121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
122
121
  */
123
122
  getMessages(getMessagesRequest: requests.GetMessagesRequest): Promise<responses.GetMessagesResponse>;
124
123
  /**
@@ -131,7 +130,7 @@ export declare class StreamClient {
131
130
  * @param PutMessagesRequest
132
131
  * @return PutMessagesResponse
133
132
  * @throws OciError when an error occurs
134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
133
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
135
134
  */
136
135
  putMessages(putMessagesRequest: requests.PutMessagesRequest): Promise<responses.PutMessagesResponse>;
137
136
  /**
@@ -141,7 +140,7 @@ export declare class StreamClient {
141
140
  * @param UpdateGroupRequest
142
141
  * @return UpdateGroupResponse
143
142
  * @throws OciError when an error occurs
144
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
143
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
145
144
  */
146
145
  updateGroup(updateGroupRequest: requests.UpdateGroupRequest): Promise<responses.UpdateGroupResponse>;
147
146
  }
@@ -176,7 +175,6 @@ export declare class StreamAdminClient {
176
175
  * @param endpoint The endpoint of the service.
177
176
  */
178
177
  set endpoint(endpoint: string);
179
- get logger(): import("oci-common/lib/log").Logger;
180
178
  /**
181
179
  * Determines whether realm specific endpoint should be used or not.
182
180
  * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
@@ -221,7 +219,7 @@ export declare class StreamAdminClient {
221
219
  * @param ChangeConnectHarnessCompartmentRequest
222
220
  * @return ChangeConnectHarnessCompartmentResponse
223
221
  * @throws OciError when an error occurs
224
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
222
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
225
223
  */
226
224
  changeConnectHarnessCompartment(changeConnectHarnessCompartmentRequest: requests.ChangeConnectHarnessCompartmentRequest): Promise<responses.ChangeConnectHarnessCompartmentResponse>;
227
225
  /**
@@ -233,7 +231,7 @@ export declare class StreamAdminClient {
233
231
  * @param ChangeStreamCompartmentRequest
234
232
  * @return ChangeStreamCompartmentResponse
235
233
  * @throws OciError when an error occurs
236
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
234
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
237
235
  */
238
236
  changeStreamCompartment(changeStreamCompartmentRequest: requests.ChangeStreamCompartmentRequest): Promise<responses.ChangeStreamCompartmentResponse>;
239
237
  /**
@@ -242,7 +240,7 @@ export declare class StreamAdminClient {
242
240
  * @param ChangeStreamPoolCompartmentRequest
243
241
  * @return ChangeStreamPoolCompartmentResponse
244
242
  * @throws OciError when an error occurs
245
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
243
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
246
244
  */
247
245
  changeStreamPoolCompartment(changeStreamPoolCompartmentRequest: requests.ChangeStreamPoolCompartmentRequest): Promise<responses.ChangeStreamPoolCompartmentResponse>;
248
246
  /**
@@ -253,7 +251,7 @@ export declare class StreamAdminClient {
253
251
  * @param CreateConnectHarnessRequest
254
252
  * @return CreateConnectHarnessResponse
255
253
  * @throws OciError when an error occurs
256
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
257
255
  */
258
256
  createConnectHarness(createConnectHarnessRequest: requests.CreateConnectHarnessRequest): Promise<responses.CreateConnectHarnessResponse>;
259
257
  /**
@@ -267,7 +265,7 @@ export declare class StreamAdminClient {
267
265
  * @param CreateStreamRequest
268
266
  * @return CreateStreamResponse
269
267
  * @throws OciError when an error occurs
270
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
271
269
  */
272
270
  createStream(createStreamRequest: requests.CreateStreamRequest): Promise<responses.CreateStreamResponse>;
273
271
  /**
@@ -279,7 +277,7 @@ export declare class StreamAdminClient {
279
277
  * @param CreateStreamPoolRequest
280
278
  * @return CreateStreamPoolResponse
281
279
  * @throws OciError when an error occurs
282
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
280
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
283
281
  */
284
282
  createStreamPool(createStreamPoolRequest: requests.CreateStreamPoolRequest): Promise<responses.CreateStreamPoolResponse>;
285
283
  /**
@@ -293,7 +291,7 @@ export declare class StreamAdminClient {
293
291
  * @param DeleteConnectHarnessRequest
294
292
  * @return DeleteConnectHarnessResponse
295
293
  * @throws OciError when an error occurs
296
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
294
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
297
295
  */
298
296
  deleteConnectHarness(deleteConnectHarnessRequest: requests.DeleteConnectHarnessRequest): Promise<responses.DeleteConnectHarnessResponse>;
299
297
  /**
@@ -307,7 +305,7 @@ export declare class StreamAdminClient {
307
305
  * @param DeleteStreamRequest
308
306
  * @return DeleteStreamResponse
309
307
  * @throws OciError when an error occurs
310
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
311
309
  */
312
310
  deleteStream(deleteStreamRequest: requests.DeleteStreamRequest): Promise<responses.DeleteStreamResponse>;
313
311
  /**
@@ -318,7 +316,7 @@ export declare class StreamAdminClient {
318
316
  * @param DeleteStreamPoolRequest
319
317
  * @return DeleteStreamPoolResponse
320
318
  * @throws OciError when an error occurs
321
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
319
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
322
320
  */
323
321
  deleteStreamPool(deleteStreamPoolRequest: requests.DeleteStreamPoolRequest): Promise<responses.DeleteStreamPoolResponse>;
324
322
  /**
@@ -327,7 +325,7 @@ export declare class StreamAdminClient {
327
325
  * @param GetConnectHarnessRequest
328
326
  * @return GetConnectHarnessResponse
329
327
  * @throws OciError when an error occurs
330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
328
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
331
329
  */
332
330
  getConnectHarness(getConnectHarnessRequest: requests.GetConnectHarnessRequest): Promise<responses.GetConnectHarnessResponse>;
333
331
  /**
@@ -336,7 +334,7 @@ export declare class StreamAdminClient {
336
334
  * @param GetStreamRequest
337
335
  * @return GetStreamResponse
338
336
  * @throws OciError when an error occurs
339
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/GetStream.ts.html |here} to see how to use GetStream API.
337
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/GetStream.ts.html |here} to see how to use GetStream API.
340
338
  */
341
339
  getStream(getStreamRequest: requests.GetStreamRequest): Promise<responses.GetStreamResponse>;
342
340
  /**
@@ -345,7 +343,7 @@ export declare class StreamAdminClient {
345
343
  * @param GetStreamPoolRequest
346
344
  * @return GetStreamPoolResponse
347
345
  * @throws OciError when an error occurs
348
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
346
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
349
347
  */
350
348
  getStreamPool(getStreamPoolRequest: requests.GetStreamPoolRequest): Promise<responses.GetStreamPoolResponse>;
351
349
  /**
@@ -354,7 +352,7 @@ export declare class StreamAdminClient {
354
352
  * @param ListConnectHarnessesRequest
355
353
  * @return ListConnectHarnessesResponse
356
354
  * @throws OciError when an error occurs
357
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
355
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
358
356
  */
359
357
  listConnectHarnesses(listConnectHarnessesRequest: requests.ListConnectHarnessesRequest): Promise<responses.ListConnectHarnessesResponse>;
360
358
  /**
@@ -395,7 +393,7 @@ export declare class StreamAdminClient {
395
393
  * @param ListStreamPoolsRequest
396
394
  * @return ListStreamPoolsResponse
397
395
  * @throws OciError when an error occurs
398
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
396
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
399
397
  */
400
398
  listStreamPools(listStreamPoolsRequest: requests.ListStreamPoolsRequest): Promise<responses.ListStreamPoolsResponse>;
401
399
  /**
@@ -440,7 +438,7 @@ export declare class StreamAdminClient {
440
438
  * @param ListStreamsRequest
441
439
  * @return ListStreamsResponse
442
440
  * @throws OciError when an error occurs
443
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
441
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
444
442
  */
445
443
  listStreams(listStreamsRequest: requests.ListStreamsRequest): Promise<responses.ListStreamsResponse>;
446
444
  /**
@@ -482,7 +480,7 @@ export declare class StreamAdminClient {
482
480
  * @param UpdateConnectHarnessRequest
483
481
  * @return UpdateConnectHarnessResponse
484
482
  * @throws OciError when an error occurs
485
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
483
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
486
484
  */
487
485
  updateConnectHarness(updateConnectHarnessRequest: requests.UpdateConnectHarnessRequest): Promise<responses.UpdateConnectHarnessResponse>;
488
486
  /**
@@ -492,7 +490,7 @@ export declare class StreamAdminClient {
492
490
  * @param UpdateStreamRequest
493
491
  * @return UpdateStreamResponse
494
492
  * @throws OciError when an error occurs
495
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
493
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
496
494
  */
497
495
  updateStream(updateStreamRequest: requests.UpdateStreamRequest): Promise<responses.UpdateStreamResponse>;
498
496
  /**
@@ -502,7 +500,7 @@ export declare class StreamAdminClient {
502
500
  * @param UpdateStreamPoolRequest
503
501
  * @return UpdateStreamPoolResponse
504
502
  * @throws OciError when an error occurs
505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.0/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
506
504
  */
507
505
  updateStreamPool(updateStreamPoolRequest: requests.UpdateStreamPoolRequest): Promise<responses.UpdateStreamPoolResponse>;
508
506
  }