import * as pulumi from "@pulumi/pulumi";
/**
 * iOS Policy entity for Intune MAM.
 *
 * Uses Azure REST API version 2015-01-14-preview. In version 2.x of the Azure Native provider, it used API version 2015-01-14-preview.
 */
export declare class IoMAMPolicyByName extends pulumi.CustomResource {
    /**
     * Get an existing IoMAMPolicyByName resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): IoMAMPolicyByName;
    /**
     * Returns true if the given object is an instance of IoMAMPolicyByName.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is IoMAMPolicyByName;
    readonly accessRecheckOfflineTimeout: pulumi.Output<string | undefined>;
    readonly accessRecheckOnlineTimeout: pulumi.Output<string | undefined>;
    readonly appSharingFromLevel: pulumi.Output<string | undefined>;
    readonly appSharingToLevel: pulumi.Output<string | undefined>;
    readonly authentication: pulumi.Output<string | undefined>;
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: pulumi.Output<string>;
    readonly clipboardSharingLevel: pulumi.Output<string | undefined>;
    readonly dataBackup: pulumi.Output<string | undefined>;
    readonly description: pulumi.Output<string | undefined>;
    readonly deviceCompliance: pulumi.Output<string | undefined>;
    readonly fileEncryptionLevel: pulumi.Output<string | undefined>;
    readonly fileSharingSaveAs: pulumi.Output<string | undefined>;
    readonly friendlyName: pulumi.Output<string>;
    readonly groupStatus: pulumi.Output<string>;
    readonly lastModifiedTime: pulumi.Output<string>;
    /**
     * Resource Location
     */
    readonly location: pulumi.Output<string | undefined>;
    readonly managedBrowser: pulumi.Output<string | undefined>;
    /**
     * Resource name
     */
    readonly name: pulumi.Output<string>;
    readonly numOfApps: pulumi.Output<number>;
    readonly offlineWipeTimeout: pulumi.Output<string | undefined>;
    readonly pin: pulumi.Output<string | undefined>;
    readonly pinNumRetry: pulumi.Output<number | undefined>;
    /**
     * Resource Tags
     */
    readonly tags: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    readonly touchId: pulumi.Output<string | undefined>;
    /**
     * Resource type
     */
    readonly type: pulumi.Output<string>;
    /**
     * Create a IoMAMPolicyByName resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: IoMAMPolicyByNameArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a IoMAMPolicyByName resource.
 */
export interface IoMAMPolicyByNameArgs {
    accessRecheckOfflineTimeout?: pulumi.Input<string>;
    accessRecheckOnlineTimeout?: pulumi.Input<string>;
    appSharingFromLevel?: pulumi.Input<string>;
    appSharingToLevel?: pulumi.Input<string>;
    authentication?: pulumi.Input<string>;
    clipboardSharingLevel?: pulumi.Input<string>;
    dataBackup?: pulumi.Input<string>;
    description?: pulumi.Input<string>;
    deviceCompliance?: pulumi.Input<string>;
    fileEncryptionLevel?: pulumi.Input<string>;
    fileSharingSaveAs?: pulumi.Input<string>;
    friendlyName: pulumi.Input<string>;
    /**
     * Location hostName for the tenant
     */
    hostName: pulumi.Input<string>;
    /**
     * Resource Location
     */
    location?: pulumi.Input<string>;
    managedBrowser?: pulumi.Input<string>;
    offlineWipeTimeout?: pulumi.Input<string>;
    pin?: pulumi.Input<string>;
    pinNumRetry?: pulumi.Input<number>;
    /**
     * Unique name for the policy
     */
    policyName?: pulumi.Input<string>;
    /**
     * Resource Tags
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    touchId?: pulumi.Input<string>;
}
