import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Log Analytics Preference resource in Oracle Cloud Infrastructure Log Analytics service. * * Lists the tenant preferences such as DEFAULT_HOMEPAGE and collection properties. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsPreference = oci.loganalytics.getLogAnalyticsPreference({ * namespace: logAnalyticsPreferenceNamespace, * }); * ``` */ export declare function getLogAnalyticsPreference(args: GetLogAnalyticsPreferenceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsPreference. */ export interface GetLogAnalyticsPreferenceArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; } /** * A collection of values returned by getLogAnalyticsPreference. */ export interface GetLogAnalyticsPreferenceResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An array of tenant preferences. */ readonly items: outputs.LogAnalytics.GetLogAnalyticsPreferenceItem[]; readonly namespace: string; } /** * This data source provides details about a specific Log Analytics Preference resource in Oracle Cloud Infrastructure Log Analytics service. * * Lists the tenant preferences such as DEFAULT_HOMEPAGE and collection properties. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsPreference = oci.loganalytics.getLogAnalyticsPreference({ * namespace: logAnalyticsPreferenceNamespace, * }); * ``` */ export declare function getLogAnalyticsPreferenceOutput(args: GetLogAnalyticsPreferenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsPreference. */ export interface GetLogAnalyticsPreferenceOutputArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getLogAnalyticsPreference.d.ts.map