import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Get a DiscoveryRule
 *
 * Uses Azure REST API version 2025-05-01-preview.
 */
export declare function getDiscoveryRule(args: GetDiscoveryRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetDiscoveryRuleResult>;
export interface GetDiscoveryRuleArgs {
    /**
     * Name of the discovery rule. Must be unique within a health model.
     */
    discoveryRuleName: string;
    /**
     * Name of health model resource
     */
    healthModelName: string;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
}
/**
 * A discovery rule which automatically finds entities and relationships in a health model based on an Azure Resource Graph query
 */
export interface GetDiscoveryRuleResult {
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: string;
    /**
     * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
     */
    readonly id: string;
    /**
     * The name of the resource
     */
    readonly name: string;
    /**
     * The resource-specific properties for this resource.
     */
    readonly properties: outputs.cloudhealth.DiscoveryRulePropertiesResponse;
    /**
     * Azure Resource Manager metadata containing createdBy and modifiedBy information.
     */
    readonly systemData: outputs.cloudhealth.SystemDataResponse;
    /**
     * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     */
    readonly type: string;
}
/**
 * Get a DiscoveryRule
 *
 * Uses Azure REST API version 2025-05-01-preview.
 */
export declare function getDiscoveryRuleOutput(args: GetDiscoveryRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDiscoveryRuleResult>;
export interface GetDiscoveryRuleOutputArgs {
    /**
     * Name of the discovery rule. Must be unique within a health model.
     */
    discoveryRuleName: pulumi.Input<string>;
    /**
     * Name of health model resource
     */
    healthModelName: pulumi.Input<string>;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
}
