oci-jms 2.9.0 → 2.9.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.
- package/lib/client.d.ts +38 -18
- package/lib/client.js +150 -19
- package/lib/client.js.map +1 -1
- package/lib/model/index.d.ts +4 -0
- package/lib/model/index.js +5 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/installation-usage.d.ts +1 -1
- package/lib/model/jre-security-status.d.ts +30 -0
- package/lib/model/jre-security-status.js +41 -0
- package/lib/model/jre-security-status.js.map +1 -0
- package/lib/model/jre-sort-by.d.ts +2 -1
- package/lib/model/jre-sort-by.js +1 -0
- package/lib/model/jre-sort-by.js.map +1 -1
- package/lib/model/jre-usage.d.ts +24 -0
- package/lib/model/jre-usage.js.map +1 -1
- package/lib/model/managed-instance-usage.d.ts +5 -0
- package/lib/model/managed-instance-usage.js.map +1 -1
- package/lib/model/operating-system.d.ts +1 -0
- package/lib/model/operating-system.js.map +1 -1
- package/lib/model/resource-inventory.d.ts +41 -0
- package/lib/model/resource-inventory.js +29 -0
- package/lib/model/resource-inventory.js.map +1 -0
- package/lib/request/change-fleet-compartment-request.d.ts +1 -1
- package/lib/request/create-fleet-request.d.ts +1 -1
- package/lib/request/delete-fleet-request.d.ts +1 -1
- package/lib/request/get-fleet-agent-configuration-request.d.ts +1 -1
- package/lib/request/get-fleet-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/index.d.ts +4 -0
- package/lib/request/list-fleets-request.d.ts +2 -1
- package/lib/request/list-jre-usage-request.d.ts +70 -0
- package/lib/request/list-jre-usage-request.js +15 -0
- package/lib/request/list-jre-usage-request.js.map +1 -0
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +2 -1
- package/lib/request/summarize-application-usage-request.d.ts +1 -1
- package/lib/request/summarize-installation-usage-request.d.ts +1 -1
- package/lib/request/summarize-jre-usage-request.d.ts +5 -1
- package/lib/request/summarize-managed-instance-usage-request.d.ts +1 -1
- package/lib/request/summarize-resource-inventory-request.d.ts +35 -0
- package/lib/request/summarize-resource-inventory-request.js +15 -0
- package/lib/request/summarize-resource-inventory-request.js.map +1 -0
- package/lib/request/update-fleet-agent-configuration-request.d.ts +1 -1
- package/lib/request/update-fleet-request.d.ts +1 -1
- package/lib/response/index.d.ts +4 -0
- package/lib/response/list-jre-usage-response.d.ts +32 -0
- package/lib/response/list-jre-usage-response.js +15 -0
- package/lib/response/list-jre-usage-response.js.map +1 -0
- package/lib/response/summarize-resource-inventory-response.d.ts +25 -0
- package/lib/response/summarize-resource-inventory-response.js +15 -0
- package/lib/response/summarize-resource-inventory-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210610
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, 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 common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.1/jms/SummarizeResourceInventory.ts.html |here} to see how to use SummarizeResourceInventoryRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface SummarizeResourceInventoryRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
22
|
+
"compartmentId"?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
|
25
|
+
*/
|
|
26
|
+
"timeStart"?: Date;
|
|
27
|
+
/**
|
|
28
|
+
* The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
|
29
|
+
*/
|
|
30
|
+
"timeEnd"?: Date;
|
|
31
|
+
/**
|
|
32
|
+
* The client request ID for tracing.
|
|
33
|
+
*/
|
|
34
|
+
"opcRequestId"?: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210610
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, 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=summarize-resource-inventory-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"summarize-resource-inventory-request.js","sourceRoot":"","sources":["../../../../../lib/jms/lib/request/summarize-resource-inventory-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -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.9.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.1/jms/UpdateFleetAgentConfiguration.ts.html |here} to see how to use UpdateFleetAgentConfigurationRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateFleetAgentConfigurationRequest 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.9.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.9.1/jms/UpdateFleet.ts.html |here} to see how to use UpdateFleetRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateFleetRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
package/lib/response/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import * as GetWorkRequestResponse from "./get-work-request-response";
|
|
|
24
24
|
export import GetWorkRequestResponse = GetWorkRequestResponse.GetWorkRequestResponse;
|
|
25
25
|
import * as ListFleetsResponse from "./list-fleets-response";
|
|
26
26
|
export import ListFleetsResponse = ListFleetsResponse.ListFleetsResponse;
|
|
27
|
+
import * as ListJreUsageResponse from "./list-jre-usage-response";
|
|
28
|
+
export import ListJreUsageResponse = ListJreUsageResponse.ListJreUsageResponse;
|
|
27
29
|
import * as ListWorkRequestErrorsResponse from "./list-work-request-errors-response";
|
|
28
30
|
export import ListWorkRequestErrorsResponse = ListWorkRequestErrorsResponse.ListWorkRequestErrorsResponse;
|
|
29
31
|
import * as ListWorkRequestLogsResponse from "./list-work-request-logs-response";
|
|
@@ -38,6 +40,8 @@ import * as SummarizeJreUsageResponse from "./summarize-jre-usage-response";
|
|
|
38
40
|
export import SummarizeJreUsageResponse = SummarizeJreUsageResponse.SummarizeJreUsageResponse;
|
|
39
41
|
import * as SummarizeManagedInstanceUsageResponse from "./summarize-managed-instance-usage-response";
|
|
40
42
|
export import SummarizeManagedInstanceUsageResponse = SummarizeManagedInstanceUsageResponse.SummarizeManagedInstanceUsageResponse;
|
|
43
|
+
import * as SummarizeResourceInventoryResponse from "./summarize-resource-inventory-response";
|
|
44
|
+
export import SummarizeResourceInventoryResponse = SummarizeResourceInventoryResponse.SummarizeResourceInventoryResponse;
|
|
41
45
|
import * as UpdateFleetResponse from "./update-fleet-response";
|
|
42
46
|
export import UpdateFleetResponse = UpdateFleetResponse.UpdateFleetResponse;
|
|
43
47
|
import * as UpdateFleetAgentConfigurationResponse from "./update-fleet-agent-configuration-response";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210610
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, 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 ListJreUsageResponse {
|
|
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 list pagination. When this header appears in the response, additional pages of results remain.
|
|
23
|
+
* Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
|
|
24
|
+
* For important details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
"opcNextPage": string;
|
|
28
|
+
/**
|
|
29
|
+
* The returned model.JreUsageCollection instance.
|
|
30
|
+
*/
|
|
31
|
+
"jreUsageCollection": model.JreUsageCollection;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210610
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, 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-jre-usage-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-jre-usage-response.js","sourceRoot":"","sources":["../../../../../lib/jms/lib/response/list-jre-usage-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210610
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, 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 SummarizeResourceInventoryResponse {
|
|
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
|
+
* The returned model.ResourceInventory instance.
|
|
23
|
+
*/
|
|
24
|
+
"resourceInventory": model.ResourceInventory;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210610
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, 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=summarize-resource-inventory-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"summarize-resource-inventory-response.js","sourceRoot":"","sources":["../../../../../lib/jms/lib/response/summarize-resource-inventory-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-jms",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "OCI NodeJS client for Jms 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.9.
|
|
19
|
-
"oci-workrequests": "2.9.
|
|
18
|
+
"oci-common": "2.9.1",
|
|
19
|
+
"oci-workrequests": "2.9.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|