import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Namespace Rules Summary resource in Oracle Cloud Infrastructure Log Analytics service. * * Returns the count of detection rules in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceRulesSummary = oci.loganalytics.getNamespaceRulesSummary({ * compartmentId: compartmentId, * namespace: namespaceRulesSummaryNamespace, * }); * ``` */ export declare function getNamespaceRulesSummary(args: GetNamespaceRulesSummaryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespaceRulesSummary. */ export interface GetNamespaceRulesSummaryArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * 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 getNamespaceRulesSummary. */ export interface GetNamespaceRulesSummaryResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The count of ingest time rules. */ readonly ingestTimeRulesCount: number; readonly namespace: string; /** * The count of saved search rules. */ readonly savedSearchRulesCount: number; /** * The total count of detection rules. */ readonly totalCount: number; } /** * This data source provides details about a specific Namespace Rules Summary resource in Oracle Cloud Infrastructure Log Analytics service. * * Returns the count of detection rules in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceRulesSummary = oci.loganalytics.getNamespaceRulesSummary({ * compartmentId: compartmentId, * namespace: namespaceRulesSummaryNamespace, * }); * ``` */ export declare function getNamespaceRulesSummaryOutput(args: GetNamespaceRulesSummaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespaceRulesSummary. */ export interface GetNamespaceRulesSummaryOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getNamespaceRulesSummary.d.ts.map