oci-queue 2.123.1 → 2.124.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 +51 -1
- package/lib/client.js +336 -7
- package/lib/client.js.map +1 -1
- package/lib/model/capability-details.d.ts +22 -0
- package/lib/model/capability-details.js +72 -0
- package/lib/model/capability-details.js.map +1 -0
- package/lib/model/consumer-group-collection.d.ts +26 -0
- package/lib/model/consumer-group-collection.js +61 -0
- package/lib/model/consumer-group-collection.js.map +1 -0
- package/lib/model/consumer-group-summary.d.ts +87 -0
- package/lib/model/consumer-group-summary.js +29 -0
- package/lib/model/consumer-group-summary.js.map +1 -0
- package/lib/model/consumer-group.d.ts +110 -0
- package/lib/model/consumer-group.js +44 -0
- package/lib/model/consumer-group.js.map +1 -0
- package/lib/model/consumer-groups-capability-details.d.ts +47 -0
- package/lib/model/consumer-groups-capability-details.js +54 -0
- package/lib/model/consumer-groups-capability-details.js.map +1 -0
- package/lib/model/create-consumer-group-details.d.ts +64 -0
- package/lib/model/create-consumer-group-details.js +29 -0
- package/lib/model/create-consumer-group-details.js.map +1 -0
- package/lib/model/create-queue-details.d.ts +5 -0
- package/lib/model/create-queue-details.js +34 -2
- package/lib/model/create-queue-details.js.map +1 -1
- package/lib/model/index.d.ts +18 -0
- package/lib/model/index.js +19 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/large-messages-capability-details.d.ts +24 -0
- package/lib/model/large-messages-capability-details.js +54 -0
- package/lib/model/large-messages-capability-details.js.map +1 -0
- package/lib/model/operation-type.d.ts +3 -0
- package/lib/model/operation-type.js +3 -0
- package/lib/model/operation-type.js.map +1 -1
- package/lib/model/purge-queue-details.d.ts +7 -0
- package/lib/model/purge-queue-details.js.map +1 -1
- package/lib/model/queue-capability.d.ts +28 -0
- package/lib/model/queue-capability.js +39 -0
- package/lib/model/queue-capability.js.map +1 -0
- package/lib/model/queue-stats.d.ts +4 -0
- package/lib/model/queue-stats.js.map +1 -1
- package/lib/model/queue-summary.d.ts +13 -0
- package/lib/model/queue-summary.js +10 -0
- package/lib/model/queue-summary.js.map +1 -1
- package/lib/model/queue.d.ts +5 -0
- package/lib/model/queue.js +34 -2
- package/lib/model/queue.js.map +1 -1
- package/lib/model/update-consumer-group-details.d.ts +61 -0
- package/lib/model/update-consumer-group-details.js +29 -0
- package/lib/model/update-consumer-group-details.js.map +1 -0
- package/lib/model/update-queue-details.d.ts +5 -0
- package/lib/model/update-queue-details.js +34 -2
- package/lib/model/update-queue-details.js.map +1 -1
- package/lib/queueadmin-waiter.d.ts +8 -0
- package/lib/queueadmin-waiter.js +12 -0
- package/lib/queueadmin-waiter.js.map +1 -1
- package/lib/request/create-consumer-group-request.d.ts +36 -0
- package/lib/request/create-consumer-group-request.js +15 -0
- package/lib/request/create-consumer-group-request.js.map +1 -0
- package/lib/request/delete-consumer-group-request.d.ts +35 -0
- package/lib/request/delete-consumer-group-request.js +15 -0
- package/lib/request/delete-consumer-group-request.js.map +1 -0
- package/lib/request/delete-message-request.d.ts +4 -0
- package/lib/request/delete-messages-request.d.ts +4 -0
- package/lib/request/get-consumer-group-request.d.ts +26 -0
- package/lib/request/get-consumer-group-request.js +15 -0
- package/lib/request/get-consumer-group-request.js.map +1 -0
- package/lib/request/get-messages-request.d.ts +4 -0
- package/lib/request/get-stats-request.d.ts +4 -0
- package/lib/request/index.d.ts +10 -0
- package/lib/request/index.js +3 -1
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-channels-request.d.ts +4 -0
- package/lib/request/list-consumer-groups-request.d.ts +62 -0
- package/lib/request/list-consumer-groups-request.js +24 -0
- package/lib/request/list-consumer-groups-request.js.map +1 -0
- package/lib/request/update-consumer-group-request.d.ts +40 -0
- package/lib/request/update-consumer-group-request.js +15 -0
- package/lib/request/update-consumer-group-request.js.map +1 -0
- package/lib/request/update-message-request.d.ts +4 -0
- package/lib/request/update-messages-request.d.ts +4 -0
- package/lib/response/create-consumer-group-response.d.ts +25 -0
- package/lib/response/create-consumer-group-response.js +15 -0
- package/lib/response/create-consumer-group-response.js.map +1 -0
- package/lib/response/delete-consumer-group-response.d.ts +25 -0
- package/lib/response/delete-consumer-group-response.js +15 -0
- package/lib/response/delete-consumer-group-response.js.map +1 -0
- package/lib/response/get-consumer-group-response.d.ts +30 -0
- package/lib/response/get-consumer-group-response.js +15 -0
- package/lib/response/get-consumer-group-response.js.map +1 -0
- package/lib/response/index.d.ts +10 -0
- package/lib/response/list-consumer-groups-response.d.ts +32 -0
- package/lib/response/list-consumer-groups-response.js +15 -0
- package/lib/response/list-consumer-groups-response.js.map +1 -0
- package/lib/response/update-consumer-group-response.d.ts +25 -0
- package/lib/response/update-consumer-group-response.js +15 -0
- package/lib/response/update-consumer-group-response.js.map +1 -0
- package/package.json +3 -3
package/lib/request/index.d.ts
CHANGED
|
@@ -28,14 +28,22 @@ import * as UpdateMessagesRequest from "./update-messages-request";
|
|
|
28
28
|
export import UpdateMessagesRequest = UpdateMessagesRequest.UpdateMessagesRequest;
|
|
29
29
|
import * as ChangeQueueCompartmentRequest from "./change-queue-compartment-request";
|
|
30
30
|
export import ChangeQueueCompartmentRequest = ChangeQueueCompartmentRequest.ChangeQueueCompartmentRequest;
|
|
31
|
+
import * as CreateConsumerGroupRequest from "./create-consumer-group-request";
|
|
32
|
+
export import CreateConsumerGroupRequest = CreateConsumerGroupRequest.CreateConsumerGroupRequest;
|
|
31
33
|
import * as CreateQueueRequest from "./create-queue-request";
|
|
32
34
|
export import CreateQueueRequest = CreateQueueRequest.CreateQueueRequest;
|
|
35
|
+
import * as DeleteConsumerGroupRequest from "./delete-consumer-group-request";
|
|
36
|
+
export import DeleteConsumerGroupRequest = DeleteConsumerGroupRequest.DeleteConsumerGroupRequest;
|
|
33
37
|
import * as DeleteQueueRequest from "./delete-queue-request";
|
|
34
38
|
export import DeleteQueueRequest = DeleteQueueRequest.DeleteQueueRequest;
|
|
39
|
+
import * as GetConsumerGroupRequest from "./get-consumer-group-request";
|
|
40
|
+
export import GetConsumerGroupRequest = GetConsumerGroupRequest.GetConsumerGroupRequest;
|
|
35
41
|
import * as GetQueueRequest from "./get-queue-request";
|
|
36
42
|
export import GetQueueRequest = GetQueueRequest.GetQueueRequest;
|
|
37
43
|
import * as GetWorkRequestRequest from "./get-work-request-request";
|
|
38
44
|
export import GetWorkRequestRequest = GetWorkRequestRequest.GetWorkRequestRequest;
|
|
45
|
+
import * as ListConsumerGroupsRequest from "./list-consumer-groups-request";
|
|
46
|
+
export import ListConsumerGroupsRequest = ListConsumerGroupsRequest.ListConsumerGroupsRequest;
|
|
39
47
|
import * as ListQueuesRequest from "./list-queues-request";
|
|
40
48
|
export import ListQueuesRequest = ListQueuesRequest.ListQueuesRequest;
|
|
41
49
|
import * as ListWorkRequestErrorsRequest from "./list-work-request-errors-request";
|
|
@@ -46,5 +54,7 @@ import * as ListWorkRequestsRequest from "./list-work-requests-request";
|
|
|
46
54
|
export import ListWorkRequestsRequest = ListWorkRequestsRequest.ListWorkRequestsRequest;
|
|
47
55
|
import * as PurgeQueueRequest from "./purge-queue-request";
|
|
48
56
|
export import PurgeQueueRequest = PurgeQueueRequest.PurgeQueueRequest;
|
|
57
|
+
import * as UpdateConsumerGroupRequest from "./update-consumer-group-request";
|
|
58
|
+
export import UpdateConsumerGroupRequest = UpdateConsumerGroupRequest.UpdateConsumerGroupRequest;
|
|
49
59
|
import * as UpdateQueueRequest from "./update-queue-request";
|
|
50
60
|
export import UpdateQueueRequest = UpdateQueueRequest.UpdateQueueRequest;
|
package/lib/request/index.js
CHANGED
|
@@ -31,7 +31,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.ListQueuesRequest = void 0;
|
|
34
|
+
exports.ListQueuesRequest = exports.ListConsumerGroupsRequest = void 0;
|
|
35
|
+
const ListConsumerGroupsRequest = __importStar(require("./list-consumer-groups-request"));
|
|
36
|
+
exports.ListConsumerGroupsRequest = ListConsumerGroupsRequest.ListConsumerGroupsRequest;
|
|
35
37
|
const ListQueuesRequest = __importStar(require("./list-queues-request"));
|
|
36
38
|
exports.ListQueuesRequest = ListQueuesRequest.ListQueuesRequest;
|
|
37
39
|
//# sourceMappingURL=index.js.map
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAkCH,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC"}
|
|
@@ -19,6 +19,10 @@ export interface ListChannelsRequest extends common.BaseRequest {
|
|
|
19
19
|
* The unique queue identifier.
|
|
20
20
|
*/
|
|
21
21
|
"queueId": string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional parameter to specify a consumer group.
|
|
24
|
+
*/
|
|
25
|
+
"consumerGroupId"?: string;
|
|
22
26
|
/**
|
|
23
27
|
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
24
28
|
*/
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/queue/ListConsumerGroups.ts.html |here} to see how to use ListConsumerGroupsRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListConsumerGroupsRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* A filter to return only resources their lifecycleState matches the given lifecycleState.
|
|
21
|
+
*/
|
|
22
|
+
"lifecycleState"?: string;
|
|
23
|
+
/**
|
|
24
|
+
* A filter to return only resources that match the entire display name given.
|
|
25
|
+
*/
|
|
26
|
+
"displayName"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The unique consumer group identifier.
|
|
29
|
+
*/
|
|
30
|
+
"id"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The unique queue identifier.
|
|
33
|
+
*/
|
|
34
|
+
"queueId"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* For list pagination. The maximum number of results per page, or items to return in a paginated \"List\" call. For important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
37
|
+
*/
|
|
38
|
+
"limit"?: number;
|
|
39
|
+
/**
|
|
40
|
+
* For list pagination. The value of the opc-next-page response header from the previous \"List\" call. For important details about how pagination works, see [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
41
|
+
*/
|
|
42
|
+
"page"?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The sort order to use, either 'asc' or 'desc'.
|
|
45
|
+
*/
|
|
46
|
+
"sortOrder"?: model.SortOrder;
|
|
47
|
+
/**
|
|
48
|
+
* The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending. If no value is specified timeCreated is default.
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
51
|
+
"sortBy"?: ListConsumerGroupsRequest.SortBy;
|
|
52
|
+
/**
|
|
53
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
54
|
+
*/
|
|
55
|
+
"opcRequestId"?: string;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace ListConsumerGroupsRequest {
|
|
58
|
+
enum SortBy {
|
|
59
|
+
TimeCreated = "timeCreated",
|
|
60
|
+
DisplayName = "displayName"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.ListConsumerGroupsRequest = void 0;
|
|
16
|
+
var ListConsumerGroupsRequest;
|
|
17
|
+
(function (ListConsumerGroupsRequest) {
|
|
18
|
+
let SortBy;
|
|
19
|
+
(function (SortBy) {
|
|
20
|
+
SortBy["TimeCreated"] = "timeCreated";
|
|
21
|
+
SortBy["DisplayName"] = "displayName";
|
|
22
|
+
})(SortBy = ListConsumerGroupsRequest.SortBy || (ListConsumerGroupsRequest.SortBy = {}));
|
|
23
|
+
})(ListConsumerGroupsRequest = exports.ListConsumerGroupsRequest || (exports.ListConsumerGroupsRequest = {}));
|
|
24
|
+
//# sourceMappingURL=list-consumer-groups-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-consumer-groups-request.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/request/list-consumer-groups-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAgDH,IAAiB,yBAAyB,CAKzC;AALD,WAAiB,yBAAyB;IACxC,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,gCAAM,KAAN,gCAAM,QAGjB;AACH,CAAC,EALgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAKzC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/queue/UpdateConsumerGroup.ts.html |here} to see how to use UpdateConsumerGroupRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateConsumerGroupRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The unique consumer group identifier.
|
|
21
|
+
*/
|
|
22
|
+
"consumerGroupId": string;
|
|
23
|
+
/**
|
|
24
|
+
* The information to be updated.
|
|
25
|
+
*/
|
|
26
|
+
"updateConsumerGroupDetails": model.UpdateConsumerGroupDetails;
|
|
27
|
+
/**
|
|
28
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
|
+
* etag from a previous GET or POST response for that resource.
|
|
31
|
+
* The resource will be updated or deleted only if the etag you
|
|
32
|
+
* provide matches the resource's current etag value.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"ifMatch"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
38
|
+
*/
|
|
39
|
+
"opcRequestId"?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=update-consumer-group-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-consumer-group-request.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/request/update-consumer-group-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -32,4 +32,8 @@ export interface UpdateMessageRequest extends common.BaseRequest {
|
|
|
32
32
|
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
33
33
|
*/
|
|
34
34
|
"opcRequestId"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Optional parameter to specify a consumer group.
|
|
37
|
+
*/
|
|
38
|
+
"consumerGroupId"?: string;
|
|
35
39
|
}
|
|
@@ -24,6 +24,10 @@ export interface UpdateMessagesRequest extends common.BaseRequest {
|
|
|
24
24
|
* Details for the messages to update.
|
|
25
25
|
*/
|
|
26
26
|
"updateMessagesDetails": model.UpdateMessagesDetails;
|
|
27
|
+
/**
|
|
28
|
+
* Optional parameter to specify a consumer group.
|
|
29
|
+
*/
|
|
30
|
+
"consumerGroupId"?: string;
|
|
27
31
|
/**
|
|
28
32
|
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
29
33
|
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface CreateConsumerGroupResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=create-consumer-group-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-consumer-group-response.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/response/create-consumer-group-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface DeleteConsumerGroupResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=delete-consumer-group-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-consumer-group-response.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/response/delete-consumer-group-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
export interface GetConsumerGroupResponse {
|
|
15
|
+
/**
|
|
16
|
+
* For optimistic concurrency control. See {@code if-match}.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"etag": string;
|
|
20
|
+
/**
|
|
21
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
22
|
+
* Oracle about a particular request, please provide the request ID.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
"opcRequestId": string;
|
|
26
|
+
/**
|
|
27
|
+
* The returned model.ConsumerGroup instance.
|
|
28
|
+
*/
|
|
29
|
+
"consumerGroup": model.ConsumerGroup;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=get-consumer-group-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-consumer-group-response.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/response/get-consumer-group-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -28,14 +28,22 @@ import * as UpdateMessagesResponse from "./update-messages-response";
|
|
|
28
28
|
export import UpdateMessagesResponse = UpdateMessagesResponse.UpdateMessagesResponse;
|
|
29
29
|
import * as ChangeQueueCompartmentResponse from "./change-queue-compartment-response";
|
|
30
30
|
export import ChangeQueueCompartmentResponse = ChangeQueueCompartmentResponse.ChangeQueueCompartmentResponse;
|
|
31
|
+
import * as CreateConsumerGroupResponse from "./create-consumer-group-response";
|
|
32
|
+
export import CreateConsumerGroupResponse = CreateConsumerGroupResponse.CreateConsumerGroupResponse;
|
|
31
33
|
import * as CreateQueueResponse from "./create-queue-response";
|
|
32
34
|
export import CreateQueueResponse = CreateQueueResponse.CreateQueueResponse;
|
|
35
|
+
import * as DeleteConsumerGroupResponse from "./delete-consumer-group-response";
|
|
36
|
+
export import DeleteConsumerGroupResponse = DeleteConsumerGroupResponse.DeleteConsumerGroupResponse;
|
|
33
37
|
import * as DeleteQueueResponse from "./delete-queue-response";
|
|
34
38
|
export import DeleteQueueResponse = DeleteQueueResponse.DeleteQueueResponse;
|
|
39
|
+
import * as GetConsumerGroupResponse from "./get-consumer-group-response";
|
|
40
|
+
export import GetConsumerGroupResponse = GetConsumerGroupResponse.GetConsumerGroupResponse;
|
|
35
41
|
import * as GetQueueResponse from "./get-queue-response";
|
|
36
42
|
export import GetQueueResponse = GetQueueResponse.GetQueueResponse;
|
|
37
43
|
import * as GetWorkRequestResponse from "./get-work-request-response";
|
|
38
44
|
export import GetWorkRequestResponse = GetWorkRequestResponse.GetWorkRequestResponse;
|
|
45
|
+
import * as ListConsumerGroupsResponse from "./list-consumer-groups-response";
|
|
46
|
+
export import ListConsumerGroupsResponse = ListConsumerGroupsResponse.ListConsumerGroupsResponse;
|
|
39
47
|
import * as ListQueuesResponse from "./list-queues-response";
|
|
40
48
|
export import ListQueuesResponse = ListQueuesResponse.ListQueuesResponse;
|
|
41
49
|
import * as ListWorkRequestErrorsResponse from "./list-work-request-errors-response";
|
|
@@ -46,5 +54,7 @@ import * as ListWorkRequestsResponse from "./list-work-requests-response";
|
|
|
46
54
|
export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
|
|
47
55
|
import * as PurgeQueueResponse from "./purge-queue-response";
|
|
48
56
|
export import PurgeQueueResponse = PurgeQueueResponse.PurgeQueueResponse;
|
|
57
|
+
import * as UpdateConsumerGroupResponse from "./update-consumer-group-response";
|
|
58
|
+
export import UpdateConsumerGroupResponse = UpdateConsumerGroupResponse.UpdateConsumerGroupResponse;
|
|
49
59
|
import * as UpdateQueueResponse from "./update-queue-response";
|
|
50
60
|
export import UpdateQueueResponse = UpdateQueueResponse.UpdateQueueResponse;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
export interface ListConsumerGroupsResponse {
|
|
15
|
+
/**
|
|
16
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
17
|
+
* Oracle about a particular request, please provide the request ID.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
"opcRequestId": string;
|
|
21
|
+
/**
|
|
22
|
+
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
|
+
* subsequent GET request to get the next batch of items.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
"opcNextPage": string;
|
|
28
|
+
/**
|
|
29
|
+
* The returned model.ConsumerGroupCollection instance.
|
|
30
|
+
*/
|
|
31
|
+
"consumerGroupCollection": model.ConsumerGroupCollection;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=list-consumer-groups-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-consumer-groups-response.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/response/list-consumer-groups-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210201
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface UpdateConsumerGroupResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210201
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=update-consumer-group-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-consumer-group-response.js","sourceRoot":"","sources":["../../../../../lib/queue/lib/response/update-consumer-group-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-queue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.124.0",
|
|
4
4
|
"description": "OCI NodeJS client for Queue Service",
|
|
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.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.124.0",
|
|
19
|
+
"oci-workrequests": "2.124.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|