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