oci-jms 2.7.0 → 2.10.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 +39 -19
- package/lib/client.js +152 -21
- 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,70 @@
|
|
|
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
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/ListJreUsage.ts.html |here} to see how to use ListJreUsageRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListJreUsageRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
"compartmentId"?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The host [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the managed instance.
|
|
26
|
+
*/
|
|
27
|
+
"hostId"?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The Fleet-unique identifier of the application.
|
|
30
|
+
*/
|
|
31
|
+
"applicationId"?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the application.
|
|
34
|
+
*/
|
|
35
|
+
"applicationName"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
|
38
|
+
*/
|
|
39
|
+
"timeStart"?: Date;
|
|
40
|
+
/**
|
|
41
|
+
* The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
|
42
|
+
*/
|
|
43
|
+
"timeEnd"?: Date;
|
|
44
|
+
/**
|
|
45
|
+
* The maximum number of items to return.
|
|
46
|
+
*/
|
|
47
|
+
"limit"?: number;
|
|
48
|
+
/**
|
|
49
|
+
* The page token representing the page at which to start retrieving results. The token is usually retrieved from a previous list call.
|
|
50
|
+
*/
|
|
51
|
+
"page"?: string;
|
|
52
|
+
/**
|
|
53
|
+
* The sort order, either 'asc' or 'desc'.
|
|
54
|
+
*/
|
|
55
|
+
"sortOrder"?: model.SortOrder;
|
|
56
|
+
/**
|
|
57
|
+
* The field to sort JRE usages. Only one sort order may be provided.
|
|
58
|
+
* Default order for _timeFirstSeen_, _timeLastSeen_, and _version_ is **descending**.
|
|
59
|
+
* Default order for _timeFirstSeen_, _timeLastSeen_, _version_, _approximateInstallationCount_,
|
|
60
|
+
* _approximateApplicationCount_ and _approximateManagedInstanceCount_ is **descending**.
|
|
61
|
+
* Default order for _distribution_, _vendor_, and _osName_ is **ascending**.
|
|
62
|
+
* If no value is specified _timeLastSeen_ is default.
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
"sortBy"?: model.JreSortBy;
|
|
66
|
+
/**
|
|
67
|
+
* The client request ID for tracing.
|
|
68
|
+
*/
|
|
69
|
+
"opcRequestId"?: string;
|
|
70
|
+
}
|
|
@@ -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-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-jre-usage-request.js","sourceRoot":"","sources":["../../../../../lib/jms/lib/request/list-jre-usage-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestErrorsRequest 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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,11 +12,12 @@
|
|
|
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.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
19
|
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
20
|
+
*
|
|
20
21
|
*/
|
|
21
22
|
"compartmentId"?: string;
|
|
22
23
|
/**
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/SummarizeApplicationUsage.ts.html |here} to see how to use SummarizeApplicationUsageRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SummarizeApplicationUsageRequest 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/SummarizeInstallationUsage.ts.html |here} to see how to use SummarizeInstallationUsageRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SummarizeInstallationUsageRequest 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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/SummarizeJreUsage.ts.html |here} to see how to use SummarizeJreUsageRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SummarizeJreUsageRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -85,4 +85,8 @@ export interface SummarizeJreUsageRequest extends common.BaseRequest {
|
|
|
85
85
|
* The operating system type.
|
|
86
86
|
*/
|
|
87
87
|
"osFamily"?: Array<model.OsFamily>;
|
|
88
|
+
/**
|
|
89
|
+
* The security status of the Java Runtime.
|
|
90
|
+
*/
|
|
91
|
+
"jreSecurityStatus"?: model.JreSecurityStatus;
|
|
88
92
|
}
|
|
@@ -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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/jms/SummarizeManagedInstanceUsage.ts.html |here} to see how to use SummarizeManagedInstanceUsageRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SummarizeManagedInstanceUsageRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.10.0/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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/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.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/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.
|
|
3
|
+
"version": "2.10.0",
|
|
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.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.10.0",
|
|
19
|
+
"oci-workrequests": "2.10.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|