import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Get the metadata of a privateLinkServicesForM365SecurityCenter resource.
 *
 * Uses Azure REST API version 2021-03-25-preview.
 */
export declare function getPrivateLinkServicesForM365SecurityCenter(args: GetPrivateLinkServicesForM365SecurityCenterArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateLinkServicesForM365SecurityCenterResult>;
export interface GetPrivateLinkServicesForM365SecurityCenterArgs {
    /**
     * The name of the resource group that contains the service instance.
     */
    resourceGroupName: string;
    /**
     * The name of the service instance.
     */
    resourceName: string;
}
/**
 * The description of the service.
 */
export interface GetPrivateLinkServicesForM365SecurityCenterResult {
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: string;
    /**
     * An etag associated with the resource, used for optimistic concurrency when editing it.
     */
    readonly etag?: string;
    /**
     * The resource identifier.
     */
    readonly id: string;
    /**
     * Setting indicating whether the service has a managed identity associated with it.
     */
    readonly identity?: outputs.m365securityandcompliance.ServicesResourceResponseIdentity;
    /**
     * The kind of the service.
     */
    readonly kind: string;
    /**
     * The resource location.
     */
    readonly location: string;
    /**
     * The resource name.
     */
    readonly name: string;
    /**
     * The common properties of a service.
     */
    readonly properties: outputs.m365securityandcompliance.ServicesPropertiesResponse;
    /**
     * Required property for system data
     */
    readonly systemData: outputs.m365securityandcompliance.SystemDataResponse;
    /**
     * The resource tags.
     */
    readonly tags?: {
        [key: string]: string;
    };
    /**
     * The resource type.
     */
    readonly type: string;
}
/**
 * Get the metadata of a privateLinkServicesForM365SecurityCenter resource.
 *
 * Uses Azure REST API version 2021-03-25-preview.
 */
export declare function getPrivateLinkServicesForM365SecurityCenterOutput(args: GetPrivateLinkServicesForM365SecurityCenterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateLinkServicesForM365SecurityCenterResult>;
export interface GetPrivateLinkServicesForM365SecurityCenterOutputArgs {
    /**
     * The name of the resource group that contains the service instance.
     */
    resourceGroupName: pulumi.Input<string>;
    /**
     * The name of the service instance.
     */
    resourceName: pulumi.Input<string>;
}
