// 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 dns from "oci-dns";
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 dns.DnsClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const listZonesRequest: dns.requests.ListZonesRequest = {
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
opcRequestId: "8R8W2Y3V3SMTJOCRHYVW<unique_ID>",
limit: 60,
page: "EXAMPLE-page-Value",
name: "EXAMPLE-name-Value",
nameContains: "EXAMPLE-nameContains-Value",
zoneType: dns.requests.ListZonesRequest.ZoneType.Secondary,
timeCreatedGreaterThanOrEqualTo: new Date("Tue Feb 19 02:35:01 UTC 2030"),
timeCreatedLessThan: new Date("Sun Dec 17 22:12:02 UTC 2017"),
lifecycleState: dns.requests.ListZonesRequest.LifecycleState.Creating,
sortBy: dns.requests.ListZonesRequest.SortBy.TimeCreated,
sortOrder: dns.models.SortOrder.Desc,
scope: dns.models.Scope.Global,
viewId: "ocid1.test.oc1..<unique_ID>EXAMPLE-viewId-Value",
tsigKeyId: "ocid1.test.oc1..<unique_ID>EXAMPLE-tsigKeyId-Value",
dnssecState: dns.models.ZoneDnssecState.Disabled,
};
// Send request to the Client.
const listZonesResponse = await client.listZones(listZonesRequest);
}
catch (error) {
console.log("listZones Failed with error " + error);
}
})();