UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

113 lines (112 loc) 4.54 kB
import * as pulumi from "@pulumi/pulumi"; /** * Android 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 AndroidMAMPolicyByName extends pulumi.CustomResource { /** * Get an existing AndroidMAMPolicyByName 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): AndroidMAMPolicyByName; /** * Returns true if the given object is an instance of AndroidMAMPolicyByName. 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 AndroidMAMPolicyByName; 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 fileEncryption: 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>; readonly screenCapture: pulumi.Output<string | undefined>; /** * Resource Tags */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Resource type */ readonly type: pulumi.Output<string>; /** * Create a AndroidMAMPolicyByName 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: AndroidMAMPolicyByNameArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AndroidMAMPolicyByName resource. */ export interface AndroidMAMPolicyByNameArgs { 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>; fileEncryption?: 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>; screenCapture?: pulumi.Input<string>; /** * Resource Tags */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }