oci-streaming 2.26.0 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +28 -26
- package/lib/client.js +106 -52
- package/lib/client.js.map +1 -1
- package/lib/request/change-connect-harness-compartment-request.d.ts +1 -1
- package/lib/request/change-stream-compartment-request.d.ts +1 -1
- package/lib/request/change-stream-pool-compartment-request.d.ts +1 -1
- package/lib/request/consumer-commit-request.d.ts +1 -1
- package/lib/request/consumer-heartbeat-request.d.ts +1 -1
- package/lib/request/create-connect-harness-request.d.ts +1 -1
- package/lib/request/create-cursor-request.d.ts +1 -1
- package/lib/request/create-group-cursor-request.d.ts +1 -1
- package/lib/request/create-stream-pool-request.d.ts +1 -1
- package/lib/request/create-stream-request.d.ts +1 -1
- package/lib/request/delete-connect-harness-request.d.ts +1 -1
- package/lib/request/delete-stream-pool-request.d.ts +1 -1
- package/lib/request/delete-stream-request.d.ts +1 -1
- package/lib/request/get-connect-harness-request.d.ts +1 -1
- package/lib/request/get-group-request.d.ts +1 -1
- package/lib/request/get-messages-request.d.ts +1 -1
- package/lib/request/get-stream-pool-request.d.ts +1 -1
- package/lib/request/get-stream-request.d.ts +1 -1
- package/lib/request/list-connect-harnesses-request.d.ts +1 -1
- package/lib/request/list-stream-pools-request.d.ts +1 -1
- package/lib/request/list-streams-request.d.ts +1 -1
- package/lib/request/put-messages-request.d.ts +1 -1
- package/lib/request/update-connect-harness-request.d.ts +1 -1
- package/lib/request/update-group-request.d.ts +1 -1
- package/lib/request/update-stream-pool-request.d.ts +1 -1
- package/lib/request/update-stream-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export declare class StreamClient {
|
|
|
28
28
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
29
29
|
protected _circuitBreaker: null;
|
|
30
30
|
protected _httpOptions: any;
|
|
31
|
+
targetService: string;
|
|
31
32
|
protected _httpClient: common.HttpClient;
|
|
32
33
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
33
34
|
/**
|
|
@@ -48,7 +49,7 @@ export declare class StreamClient {
|
|
|
48
49
|
* @param ConsumerCommitRequest
|
|
49
50
|
* @return ConsumerCommitResponse
|
|
50
51
|
* @throws OciError when an error occurs
|
|
51
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
52
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ConsumerCommit.ts.html |here} to see how to use ConsumerCommit API.
|
|
52
53
|
*/
|
|
53
54
|
consumerCommit(consumerCommitRequest: requests.ConsumerCommitRequest): Promise<responses.ConsumerCommitResponse>;
|
|
54
55
|
/**
|
|
@@ -58,7 +59,7 @@ export declare class StreamClient {
|
|
|
58
59
|
* @param ConsumerHeartbeatRequest
|
|
59
60
|
* @return ConsumerHeartbeatResponse
|
|
60
61
|
* @throws OciError when an error occurs
|
|
61
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
62
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ConsumerHeartbeat.ts.html |here} to see how to use ConsumerHeartbeat API.
|
|
62
63
|
*/
|
|
63
64
|
consumerHeartbeat(consumerHeartbeatRequest: requests.ConsumerHeartbeatRequest): Promise<responses.ConsumerHeartbeatResponse>;
|
|
64
65
|
/**
|
|
@@ -72,7 +73,7 @@ export declare class StreamClient {
|
|
|
72
73
|
* @param CreateCursorRequest
|
|
73
74
|
* @return CreateCursorResponse
|
|
74
75
|
* @throws OciError when an error occurs
|
|
75
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
76
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/CreateCursor.ts.html |here} to see how to use CreateCursor API.
|
|
76
77
|
*/
|
|
77
78
|
createCursor(createCursorRequest: requests.CreateCursorRequest): Promise<responses.CreateCursorResponse>;
|
|
78
79
|
/**
|
|
@@ -82,7 +83,7 @@ export declare class StreamClient {
|
|
|
82
83
|
* @param CreateGroupCursorRequest
|
|
83
84
|
* @return CreateGroupCursorResponse
|
|
84
85
|
* @throws OciError when an error occurs
|
|
85
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
86
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/CreateGroupCursor.ts.html |here} to see how to use CreateGroupCursor API.
|
|
86
87
|
*/
|
|
87
88
|
createGroupCursor(createGroupCursorRequest: requests.CreateGroupCursorRequest): Promise<responses.CreateGroupCursorResponse>;
|
|
88
89
|
/**
|
|
@@ -92,7 +93,7 @@ export declare class StreamClient {
|
|
|
92
93
|
* @param GetGroupRequest
|
|
93
94
|
* @return GetGroupResponse
|
|
94
95
|
* @throws OciError when an error occurs
|
|
95
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
96
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/GetGroup.ts.html |here} to see how to use GetGroup API.
|
|
96
97
|
*/
|
|
97
98
|
getGroup(getGroupRequest: requests.GetGroupRequest): Promise<responses.GetGroupResponse>;
|
|
98
99
|
/**
|
|
@@ -104,7 +105,7 @@ export declare class StreamClient {
|
|
|
104
105
|
* @param GetMessagesRequest
|
|
105
106
|
* @return GetMessagesResponse
|
|
106
107
|
* @throws OciError when an error occurs
|
|
107
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/GetMessages.ts.html |here} to see how to use GetMessages API.
|
|
108
109
|
*/
|
|
109
110
|
getMessages(getMessagesRequest: requests.GetMessagesRequest): Promise<responses.GetMessagesResponse>;
|
|
110
111
|
/**
|
|
@@ -117,7 +118,7 @@ export declare class StreamClient {
|
|
|
117
118
|
* @param PutMessagesRequest
|
|
118
119
|
* @return PutMessagesResponse
|
|
119
120
|
* @throws OciError when an error occurs
|
|
120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/PutMessages.ts.html |here} to see how to use PutMessages API.
|
|
121
122
|
*/
|
|
122
123
|
putMessages(putMessagesRequest: requests.PutMessagesRequest): Promise<responses.PutMessagesResponse>;
|
|
123
124
|
/**
|
|
@@ -127,7 +128,7 @@ export declare class StreamClient {
|
|
|
127
128
|
* @param UpdateGroupRequest
|
|
128
129
|
* @return UpdateGroupResponse
|
|
129
130
|
* @throws OciError when an error occurs
|
|
130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/UpdateGroup.ts.html |here} to see how to use UpdateGroup API.
|
|
131
132
|
*/
|
|
132
133
|
updateGroup(updateGroupRequest: requests.UpdateGroupRequest): Promise<responses.UpdateGroupResponse>;
|
|
133
134
|
}
|
|
@@ -145,6 +146,7 @@ export declare class StreamAdminClient {
|
|
|
145
146
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
146
147
|
protected _circuitBreaker: null;
|
|
147
148
|
protected _httpOptions: any;
|
|
149
|
+
targetService: string;
|
|
148
150
|
protected _httpClient: common.HttpClient;
|
|
149
151
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
150
152
|
/**
|
|
@@ -191,7 +193,7 @@ export declare class StreamAdminClient {
|
|
|
191
193
|
* @param ChangeConnectHarnessCompartmentRequest
|
|
192
194
|
* @return ChangeConnectHarnessCompartmentResponse
|
|
193
195
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
196
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ChangeConnectHarnessCompartment.ts.html |here} to see how to use ChangeConnectHarnessCompartment API.
|
|
195
197
|
*/
|
|
196
198
|
changeConnectHarnessCompartment(changeConnectHarnessCompartmentRequest: requests.ChangeConnectHarnessCompartmentRequest): Promise<responses.ChangeConnectHarnessCompartmentResponse>;
|
|
197
199
|
/**
|
|
@@ -203,7 +205,7 @@ export declare class StreamAdminClient {
|
|
|
203
205
|
* @param ChangeStreamCompartmentRequest
|
|
204
206
|
* @return ChangeStreamCompartmentResponse
|
|
205
207
|
* @throws OciError when an error occurs
|
|
206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ChangeStreamCompartment.ts.html |here} to see how to use ChangeStreamCompartment API.
|
|
207
209
|
*/
|
|
208
210
|
changeStreamCompartment(changeStreamCompartmentRequest: requests.ChangeStreamCompartmentRequest): Promise<responses.ChangeStreamCompartmentResponse>;
|
|
209
211
|
/**
|
|
@@ -212,7 +214,7 @@ export declare class StreamAdminClient {
|
|
|
212
214
|
* @param ChangeStreamPoolCompartmentRequest
|
|
213
215
|
* @return ChangeStreamPoolCompartmentResponse
|
|
214
216
|
* @throws OciError when an error occurs
|
|
215
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
217
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ChangeStreamPoolCompartment.ts.html |here} to see how to use ChangeStreamPoolCompartment API.
|
|
216
218
|
*/
|
|
217
219
|
changeStreamPoolCompartment(changeStreamPoolCompartmentRequest: requests.ChangeStreamPoolCompartmentRequest): Promise<responses.ChangeStreamPoolCompartmentResponse>;
|
|
218
220
|
/**
|
|
@@ -223,7 +225,7 @@ export declare class StreamAdminClient {
|
|
|
223
225
|
* @param CreateConnectHarnessRequest
|
|
224
226
|
* @return CreateConnectHarnessResponse
|
|
225
227
|
* @throws OciError when an error occurs
|
|
226
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/CreateConnectHarness.ts.html |here} to see how to use CreateConnectHarness API.
|
|
227
229
|
*/
|
|
228
230
|
createConnectHarness(createConnectHarnessRequest: requests.CreateConnectHarnessRequest): Promise<responses.CreateConnectHarnessResponse>;
|
|
229
231
|
/**
|
|
@@ -237,7 +239,7 @@ export declare class StreamAdminClient {
|
|
|
237
239
|
* @param CreateStreamRequest
|
|
238
240
|
* @return CreateStreamResponse
|
|
239
241
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
242
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/CreateStream.ts.html |here} to see how to use CreateStream API.
|
|
241
243
|
*/
|
|
242
244
|
createStream(createStreamRequest: requests.CreateStreamRequest): Promise<responses.CreateStreamResponse>;
|
|
243
245
|
/**
|
|
@@ -249,7 +251,7 @@ export declare class StreamAdminClient {
|
|
|
249
251
|
* @param CreateStreamPoolRequest
|
|
250
252
|
* @return CreateStreamPoolResponse
|
|
251
253
|
* @throws OciError when an error occurs
|
|
252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
254
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/CreateStreamPool.ts.html |here} to see how to use CreateStreamPool API.
|
|
253
255
|
*/
|
|
254
256
|
createStreamPool(createStreamPoolRequest: requests.CreateStreamPoolRequest): Promise<responses.CreateStreamPoolResponse>;
|
|
255
257
|
/**
|
|
@@ -263,7 +265,7 @@ export declare class StreamAdminClient {
|
|
|
263
265
|
* @param DeleteConnectHarnessRequest
|
|
264
266
|
* @return DeleteConnectHarnessResponse
|
|
265
267
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/DeleteConnectHarness.ts.html |here} to see how to use DeleteConnectHarness API.
|
|
267
269
|
*/
|
|
268
270
|
deleteConnectHarness(deleteConnectHarnessRequest: requests.DeleteConnectHarnessRequest): Promise<responses.DeleteConnectHarnessResponse>;
|
|
269
271
|
/**
|
|
@@ -277,7 +279,7 @@ export declare class StreamAdminClient {
|
|
|
277
279
|
* @param DeleteStreamRequest
|
|
278
280
|
* @return DeleteStreamResponse
|
|
279
281
|
* @throws OciError when an error occurs
|
|
280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/DeleteStream.ts.html |here} to see how to use DeleteStream API.
|
|
281
283
|
*/
|
|
282
284
|
deleteStream(deleteStreamRequest: requests.DeleteStreamRequest): Promise<responses.DeleteStreamResponse>;
|
|
283
285
|
/**
|
|
@@ -288,7 +290,7 @@ export declare class StreamAdminClient {
|
|
|
288
290
|
* @param DeleteStreamPoolRequest
|
|
289
291
|
* @return DeleteStreamPoolResponse
|
|
290
292
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/DeleteStreamPool.ts.html |here} to see how to use DeleteStreamPool API.
|
|
292
294
|
*/
|
|
293
295
|
deleteStreamPool(deleteStreamPoolRequest: requests.DeleteStreamPoolRequest): Promise<responses.DeleteStreamPoolResponse>;
|
|
294
296
|
/**
|
|
@@ -297,7 +299,7 @@ export declare class StreamAdminClient {
|
|
|
297
299
|
* @param GetConnectHarnessRequest
|
|
298
300
|
* @return GetConnectHarnessResponse
|
|
299
301
|
* @throws OciError when an error occurs
|
|
300
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/GetConnectHarness.ts.html |here} to see how to use GetConnectHarness API.
|
|
301
303
|
*/
|
|
302
304
|
getConnectHarness(getConnectHarnessRequest: requests.GetConnectHarnessRequest): Promise<responses.GetConnectHarnessResponse>;
|
|
303
305
|
/**
|
|
@@ -306,7 +308,7 @@ export declare class StreamAdminClient {
|
|
|
306
308
|
* @param GetStreamRequest
|
|
307
309
|
* @return GetStreamResponse
|
|
308
310
|
* @throws OciError when an error occurs
|
|
309
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
311
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/GetStream.ts.html |here} to see how to use GetStream API.
|
|
310
312
|
*/
|
|
311
313
|
getStream(getStreamRequest: requests.GetStreamRequest): Promise<responses.GetStreamResponse>;
|
|
312
314
|
/**
|
|
@@ -315,7 +317,7 @@ export declare class StreamAdminClient {
|
|
|
315
317
|
* @param GetStreamPoolRequest
|
|
316
318
|
* @return GetStreamPoolResponse
|
|
317
319
|
* @throws OciError when an error occurs
|
|
318
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/GetStreamPool.ts.html |here} to see how to use GetStreamPool API.
|
|
319
321
|
*/
|
|
320
322
|
getStreamPool(getStreamPoolRequest: requests.GetStreamPoolRequest): Promise<responses.GetStreamPoolResponse>;
|
|
321
323
|
/**
|
|
@@ -324,7 +326,7 @@ export declare class StreamAdminClient {
|
|
|
324
326
|
* @param ListConnectHarnessesRequest
|
|
325
327
|
* @return ListConnectHarnessesResponse
|
|
326
328
|
* @throws OciError when an error occurs
|
|
327
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ListConnectHarnesses.ts.html |here} to see how to use ListConnectHarnesses API.
|
|
328
330
|
*/
|
|
329
331
|
listConnectHarnesses(listConnectHarnessesRequest: requests.ListConnectHarnessesRequest): Promise<responses.ListConnectHarnessesResponse>;
|
|
330
332
|
/**
|
|
@@ -365,7 +367,7 @@ export declare class StreamAdminClient {
|
|
|
365
367
|
* @param ListStreamPoolsRequest
|
|
366
368
|
* @return ListStreamPoolsResponse
|
|
367
369
|
* @throws OciError when an error occurs
|
|
368
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ListStreamPools.ts.html |here} to see how to use ListStreamPools API.
|
|
369
371
|
*/
|
|
370
372
|
listStreamPools(listStreamPoolsRequest: requests.ListStreamPoolsRequest): Promise<responses.ListStreamPoolsResponse>;
|
|
371
373
|
/**
|
|
@@ -410,7 +412,7 @@ export declare class StreamAdminClient {
|
|
|
410
412
|
* @param ListStreamsRequest
|
|
411
413
|
* @return ListStreamsResponse
|
|
412
414
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/ListStreams.ts.html |here} to see how to use ListStreams API.
|
|
414
416
|
*/
|
|
415
417
|
listStreams(listStreamsRequest: requests.ListStreamsRequest): Promise<responses.ListStreamsResponse>;
|
|
416
418
|
/**
|
|
@@ -452,7 +454,7 @@ export declare class StreamAdminClient {
|
|
|
452
454
|
* @param UpdateConnectHarnessRequest
|
|
453
455
|
* @return UpdateConnectHarnessResponse
|
|
454
456
|
* @throws OciError when an error occurs
|
|
455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/UpdateConnectHarness.ts.html |here} to see how to use UpdateConnectHarness API.
|
|
456
458
|
*/
|
|
457
459
|
updateConnectHarness(updateConnectHarnessRequest: requests.UpdateConnectHarnessRequest): Promise<responses.UpdateConnectHarnessResponse>;
|
|
458
460
|
/**
|
|
@@ -462,7 +464,7 @@ export declare class StreamAdminClient {
|
|
|
462
464
|
* @param UpdateStreamRequest
|
|
463
465
|
* @return UpdateStreamResponse
|
|
464
466
|
* @throws OciError when an error occurs
|
|
465
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
467
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/UpdateStream.ts.html |here} to see how to use UpdateStream API.
|
|
466
468
|
*/
|
|
467
469
|
updateStream(updateStreamRequest: requests.UpdateStreamRequest): Promise<responses.UpdateStreamResponse>;
|
|
468
470
|
/**
|
|
@@ -472,7 +474,7 @@ export declare class StreamAdminClient {
|
|
|
472
474
|
* @param UpdateStreamPoolRequest
|
|
473
475
|
* @return UpdateStreamPoolResponse
|
|
474
476
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
477
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/streaming/UpdateStreamPool.ts.html |here} to see how to use UpdateStreamPool API.
|
|
476
478
|
*/
|
|
477
479
|
updateStreamPool(updateStreamPoolRequest: requests.UpdateStreamPoolRequest): Promise<responses.UpdateStreamPoolResponse>;
|
|
478
480
|
}
|