// 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 listContainersRequest: jms.requests.ListContainersRequest = {
fleetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-fleetId-Value",
managedInstanceId: "ocid1.test.oc1..<unique_ID>EXAMPLE-managedInstanceId-Value",
displayName: "EXAMPLE-displayName-Value",
applicationName: "EXAMPLE-applicationName-Value",
jreVersion: "EXAMPLE-jreVersion-Value",
jreSecurityStatus: jms.models.JreSecurityStatus.EarlyAccess,
timeStartedGreaterThanOrEqualTo: new Date("Tue Apr 07 03:46:11 UTC 2037"),
timeStartedLessThanOrEqualTo: new Date("Tue Feb 24 20:24:58 UTC 2043"),
limit: 500,
page: "EXAMPLE-page-Value",
sortOrder: jms.models.SortOrder.Asc,
sortBy: jms.models.ContainerSortBy.JreVersion,
opcRequestId: "HQAY79DIGYCE9O9QV41J<unique_ID>",
};
// Send request to the Client.
const listContainersResponse = await client.listContainers(listContainersRequest);
}
catch (error) {
console.log("listContainers Failed with error " + error);
}
})();