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
@@ -22,7 +22,7 @@ export interface UpdateStreamPoolDetails {
22
22
  * Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only.
23
23
  * For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
24
24
  * <p>
25
- Example: `{\"Department\": \"Finance\"}`
25
+ Example: {@code {\"Department\": \"Finance\"}}
26
26
  *
27
27
  */
28
28
  "freeformTags"?: {
@@ -31,7 +31,7 @@ export interface UpdateStreamPoolDetails {
31
31
  /**
32
32
  * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
33
33
  * <p>
34
- Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
34
+ Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
35
35
  *
36
36
  */
37
37
  "definedTags"?: {
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 ChangeConnectHarnessCompartmentRequest.
16
+ * @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 ChangeConnectHarnessCompartmentRequest.
17
17
  */
18
18
  export interface ChangeConnectHarnessCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 ChangeStreamCompartmentRequest.
16
+ * @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 ChangeStreamCompartmentRequest.
17
17
  */
18
18
  export interface ChangeStreamCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 ChangeStreamPoolCompartmentRequest.
16
+ * @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 ChangeStreamPoolCompartmentRequest.
17
17
  */
18
18
  export interface ChangeStreamPoolCompartmentRequest extends common.BaseRequest {
19
19
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 ConsumerCommitRequest.
15
+ * @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 ConsumerCommitRequest.
16
16
  */
17
17
  export interface ConsumerCommitRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 ConsumerHeartbeatRequest.
15
+ * @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 ConsumerHeartbeatRequest.
16
16
  */
17
17
  export interface ConsumerHeartbeatRequest extends common.BaseRequest {
18
18
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 CreateConnectHarnessRequest.
16
+ * @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 CreateConnectHarnessRequest.
17
17
  */
18
18
  export interface CreateConnectHarnessRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 CreateCursorRequest.
16
+ * @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 CreateCursorRequest.
17
17
  */
18
18
  export interface CreateCursorRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 CreateGroupCursorRequest.
16
+ * @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 CreateGroupCursorRequest.
17
17
  */
18
18
  export interface CreateGroupCursorRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 CreateStreamPoolRequest.
16
+ * @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 CreateStreamPoolRequest.
17
17
  */
18
18
  export interface CreateStreamPoolRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 CreateStreamRequest.
16
+ * @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 CreateStreamRequest.
17
17
  */
18
18
  export interface CreateStreamRequest extends common.BaseRequest {
19
19
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 DeleteConnectHarnessRequest.
15
+ * @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 DeleteConnectHarnessRequest.
16
16
  */
17
17
  export interface DeleteConnectHarnessRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 DeleteStreamPoolRequest.
15
+ * @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 DeleteStreamPoolRequest.
16
16
  */
17
17
  export interface DeleteStreamPoolRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 DeleteStreamRequest.
15
+ * @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 DeleteStreamRequest.
16
16
  */
17
17
  export interface DeleteStreamRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 GetConnectHarnessRequest.
15
+ * @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 GetConnectHarnessRequest.
16
16
  */
17
17
  export interface GetConnectHarnessRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 GetGroupRequest.
15
+ * @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 GetGroupRequest.
16
16
  */
17
17
  export interface GetGroupRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 GetMessagesRequest.
15
+ * @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 GetMessagesRequest.
16
16
  */
17
17
  export interface GetMessagesRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 GetStreamPoolRequest.
15
+ * @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 GetStreamPoolRequest.
16
16
  */
17
17
  export interface GetStreamPoolRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 GetStreamRequest.
15
+ * @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 GetStreamRequest.
16
16
  */
17
17
  export interface GetStreamRequest extends common.BaseRequest {
18
18
  /**
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 ListConnectHarnessesRequest.
15
+ * @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 ListConnectHarnessesRequest.
16
16
  */
17
17
  export interface ListConnectHarnessesRequest extends common.BaseRequest {
18
18
  /**
@@ -38,7 +38,7 @@ export interface ListConnectHarnessesRequest extends common.BaseRequest {
38
38
  */
39
39
  "page"?: string;
40
40
  /**
41
- * The field to sort by. You can provide no more than one sort order. By default, `TIMECREATED` sorts results in descending order and `NAME` sorts results in ascending order.
41
+ * The field to sort by. You can provide no more than one sort order. By default, {@code TIMECREATED} sorts results in descending order and {@code NAME} sorts results in ascending order.
42
42
  *
43
43
  */
44
44
  "sortBy"?: ListConnectHarnessesRequest.SortBy;
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 ListStreamPoolsRequest.
15
+ * @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 ListStreamPoolsRequest.
16
16
  */
17
17
  export interface ListStreamPoolsRequest extends common.BaseRequest {
18
18
  /**
@@ -38,7 +38,7 @@ export interface ListStreamPoolsRequest extends common.BaseRequest {
38
38
  */
39
39
  "page"?: string;
40
40
  /**
41
- * The field to sort by. You can provide no more than one sort order. By default, `TIMECREATED` sorts results in descending order and `NAME` sorts results in ascending order.
41
+ * The field to sort by. You can provide no more than one sort order. By default, {@code TIMECREATED} sorts results in descending order and {@code NAME} sorts results in ascending order.
42
42
  *
43
43
  */
44
44
  "sortBy"?: ListStreamPoolsRequest.SortBy;
@@ -12,15 +12,15 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @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 ListStreamsRequest.
15
+ * @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 ListStreamsRequest.
16
16
  */
17
17
  export interface ListStreamsRequest extends common.BaseRequest {
18
18
  /**
19
- * The OCID of the compartment. Is exclusive with the `streamPoolId` parameter. One of them is required.
19
+ * The OCID of the compartment. Is exclusive with the {@code streamPoolId} parameter. One of them is required.
20
20
  */
21
21
  "compartmentId"?: string;
22
22
  /**
23
- * The OCID of the stream pool. Is exclusive with the `compartmentId` parameter. One of them is required.
23
+ * The OCID of the stream pool. Is exclusive with the {@code compartmentId} parameter. One of them is required.
24
24
  */
25
25
  "streamPoolId"?: string;
26
26
  /**
@@ -42,7 +42,7 @@ export interface ListStreamsRequest extends common.BaseRequest {
42
42
  */
43
43
  "page"?: string;
44
44
  /**
45
- * The field to sort by. You can provide no more than one sort order. By default, `TIMECREATED` sorts results in descending order and `NAME` sorts results in ascending order.
45
+ * The field to sort by. You can provide no more than one sort order. By default, {@code TIMECREATED} sorts results in descending order and {@code NAME} sorts results in ascending order.
46
46
  *
47
47
  */
48
48
  "sortBy"?: ListStreamsRequest.SortBy;
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 PutMessagesRequest.
16
+ * @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 PutMessagesRequest.
17
17
  */
18
18
  export interface PutMessagesRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 UpdateConnectHarnessRequest.
16
+ * @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 UpdateConnectHarnessRequest.
17
17
  */
18
18
  export interface UpdateConnectHarnessRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 UpdateGroupRequest.
16
+ * @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 UpdateGroupRequest.
17
17
  */
18
18
  export interface UpdateGroupRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 UpdateStreamPoolRequest.
16
+ * @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 UpdateStreamPoolRequest.
17
17
  */
18
18
  export interface UpdateStreamPoolRequest extends common.BaseRequest {
19
19
  /**
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @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 UpdateStreamRequest.
16
+ * @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 UpdateStreamRequest.
17
17
  */
18
18
  export interface UpdateStreamRequest extends common.BaseRequest {
19
19
  /**
@@ -19,7 +19,7 @@ export interface CreateConnectHarnessResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface CreateStreamPoolResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface CreateStreamResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface GetConnectHarnessResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface GetStreamPoolResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface GetStreamResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface UpdateConnectHarnessResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface UpdateStreamPoolResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
@@ -19,7 +19,7 @@ export interface UpdateStreamResponse {
19
19
  */
20
20
  "opcRequestId": string;
21
21
  /**
22
- * For optimistic concurrency control. See `if-match`.
22
+ * For optimistic concurrency control. See {@code if-match}.
23
23
  */
24
24
  "etag": string;
25
25
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-streaming",
3
- "version": "2.76.1",
3
+ "version": "2.77.1",
4
4
  "description": "OCI NodeJS client for Streaming",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "license": "(UPL-1.0 OR Apache-2.0)",
17
17
  "dependencies": {
18
- "oci-common": "2.76.1",
19
- "oci-workrequests": "2.76.1"
18
+ "oci-common": "2.77.1",
19
+ "oci-workrequests": "2.77.1"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"