// This is an automatically generated code sample. 
// To make this code sample work in your Oracle Cloud tenancy, 
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and 
// boolean, number, and enum parameters with values not fitting your use case).

import * as jms from "oci-jms";
import common = require("oci-common");

// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.

const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
    try {
     // Create a service client
     const client = new jms.JavaManagementServiceClient({ authenticationDetailsProvider: provider });

     // Create a request and dependent object(s).
	const summarizeJreUsageRequest: jms.requests.SummarizeJreUsageRequest = { 
	fleetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-fleetId-Value",
	jreId: "ocid1.test.oc1..<unique_ID>EXAMPLE-jreId-Value",
	jreVendor: "EXAMPLE-jreVendor-Value",
	jreDistribution: "EXAMPLE-jreDistribution-Value",
	jreVersion: "EXAMPLE-jreVersion-Value",
	applicationId: "ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value",
	managedInstanceId: "ocid1.test.oc1..<unique_ID>EXAMPLE-managedInstanceId-Value",
	fields: [jms.models.SummarizeJreUsageFields.ApproximateApplicationCount			],
	timeStart: new Date("Sun Feb 09 01:18:25 UTC 2020"),
	timeEnd: new Date("Mon Aug 01 16:41:38 UTC 2044"),
	limit: 169,
	page: "EXAMPLE-page-Value",
	sortOrder: jms.models.SortOrder.Desc,
	sortBy: jms.models.JreSortBy.ApproximateApplicationCount,
	opcRequestId: "AKHGQBMLOZD1RGELUDGD<unique_ID>",
	osFamily: [jms.models.OsFamily.Macos			],
	jreSecurityStatus: jms.models.JreSecurityStatus.UpgradeRequired,

		}; 


     // Send request to the Client.
     const summarizeJreUsageResponse = await client.summarizeJreUsage(summarizeJreUsageRequest);
     }
     catch (error) {
         console.log("summarizeJreUsage Failed with error  " + error);
     }
})();