import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Get a DeidService
 *
 * Uses Azure REST API version 2024-09-20.
 */
export declare function getDeidService(args: GetDeidServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetDeidServiceResult>;
export interface GetDeidServiceArgs {
    /**
     * The name of the deid service
     */
    deidServiceName: string;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
}
/**
 * A HealthDataAIServicesProviderHub resource
 */
export interface GetDeidServiceResult {
    /**
     * 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 managed service identities assigned to this resource.
     */
    readonly identity?: outputs.healthdataaiservices.ManagedServiceIdentityResponse;
    /**
     * The geo-location where the resource lives
     */
    readonly location: string;
    /**
     * The name of the resource
     */
    readonly name: string;
    /**
     * The resource-specific properties for this resource.
     */
    readonly properties: outputs.healthdataaiservices.DeidServicePropertiesResponse;
    /**
     * Azure Resource Manager metadata containing createdBy and modifiedBy information.
     */
    readonly systemData: outputs.healthdataaiservices.SystemDataResponse;
    /**
     * Resource tags.
     */
    readonly tags?: {
        [key: string]: string;
    };
    /**
     * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     */
    readonly type: string;
}
/**
 * Get a DeidService
 *
 * Uses Azure REST API version 2024-09-20.
 */
export declare function getDeidServiceOutput(args: GetDeidServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDeidServiceResult>;
export interface GetDeidServiceOutputArgs {
    /**
     * The name of the deid service
     */
    deidServiceName: pulumi.Input<string>;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
}
