import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Log Sets Count resource in Oracle Cloud Infrastructure Log Analytics service. * * This API returns the count of distinct log sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogSetsCount = oci.loganalytics.getLogSetsCount({ * namespace: logSetsCountNamespace, * }); * ``` */ export declare function getLogSetsCount(args: GetLogSetsCountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogSetsCount. */ export interface GetLogSetsCountArgs { /** * 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 getLogSetsCount. */ export interface GetLogSetsCountResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * This is the total number of log sets the tenancy has configured. */ readonly logSetsCount: string; readonly namespace: string; } /** * This data source provides details about a specific Log Sets Count resource in Oracle Cloud Infrastructure Log Analytics service. * * This API returns the count of distinct log sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogSetsCount = oci.loganalytics.getLogSetsCount({ * namespace: logSetsCountNamespace, * }); * ``` */ export declare function getLogSetsCountOutput(args: GetLogSetsCountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogSetsCount. */ export interface GetLogSetsCountOutputArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getLogSetsCount.d.ts.map