import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Service Catalog service. * * Get the detail of whether the tenancy is in service catalog mode or not. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.servicecatalog.getConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationArgs { /** * The unique identifier for the compartment. */ compartmentId: string; } /** * A collection of values returned by getConfiguration. */ export interface GetConfigurationResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * mode of tenancy */ readonly isServiceCatalogMode: string; } /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Service Catalog service. * * Get the detail of whether the tenancy is in service catalog mode or not. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.servicecatalog.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 unique identifier for the compartment. */ compartmentId: pulumi.Input; } //# sourceMappingURL=getConfiguration.d.ts.map