import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides the list of Top Utilized Product Licenses in Oracle Cloud Infrastructure License Manager service. * * Retrieves the top utilized product licenses for a given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTopUtilizedProductLicenses = oci.licensemanager.getTopUtilizedProductLicenses({ * compartmentId: compartmentId, * isCompartmentIdInSubtree: topUtilizedProductLicenseIsCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getTopUtilizedProductLicenses(args: GetTopUtilizedProductLicensesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTopUtilizedProductLicenses. */ export interface GetTopUtilizedProductLicensesArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) used for the license record, product license, and configuration. */ compartmentId: string; /** * Indicates if the given compartment is the root compartment. */ isCompartmentIdInSubtree?: boolean; } /** * A collection of values returned by getTopUtilizedProductLicenses. */ export interface GetTopUtilizedProductLicensesResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isCompartmentIdInSubtree?: boolean; /** * Collection of top utilized product licenses. */ readonly items: outputs.LicenseManager.GetTopUtilizedProductLicensesItem[]; } /** * This data source provides the list of Top Utilized Product Licenses in Oracle Cloud Infrastructure License Manager service. * * Retrieves the top utilized product licenses for a given compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTopUtilizedProductLicenses = oci.licensemanager.getTopUtilizedProductLicenses({ * compartmentId: compartmentId, * isCompartmentIdInSubtree: topUtilizedProductLicenseIsCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getTopUtilizedProductLicensesOutput(args: GetTopUtilizedProductLicensesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTopUtilizedProductLicenses. */ export interface GetTopUtilizedProductLicensesOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) used for the license record, product license, and configuration. */ compartmentId: pulumi.Input; /** * Indicates if the given compartment is the root compartment. */ isCompartmentIdInSubtree?: pulumi.Input; } //# sourceMappingURL=getTopUtilizedProductLicenses.d.ts.map