import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure License Manager service. * * Retrieves configuration for a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.licensemanager.getConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationArgs { /** * 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; } /** * A collection of values returned by getConfiguration. */ export interface GetConfigurationResult { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to which the configuration is specified. */ readonly compartmentId: string; /** * The list of associated configuration email IDs. */ readonly emailIds: string[]; readonly id: string; /** * The time the configuration was created. An [RFC 3339](https://tools.ietf.org/html/rfc3339)-formatted datetime string. */ readonly timeCreated: string; /** * The time the configuration was updated. An [RFC 3339](https://tools.ietf.org/html/rfc3339)-formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure License Manager service. * * Retrieves configuration for a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.licensemanager.getConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationOutputArgs { /** * 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; } //# sourceMappingURL=getConfiguration.d.ts.map