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

57 lines (56 loc) 1.44 kB
export declare const AllowCrashDumpCollection: { /** * Crash dump collection enabled */ readonly Enabled: "Enabled"; /** * Crash dump collection disabled */ readonly Disabled: "Disabled"; }; /** * Flag to define if the user allows for crash dump collection. */ export type AllowCrashDumpCollection = (typeof AllowCrashDumpCollection)[keyof typeof AllowCrashDumpCollection]; export declare const OSFeedType: { /** * Retail OS feed type. */ readonly Retail: "Retail"; /** * Retail evaluation OS feed type. */ readonly RetailEval: "RetailEval"; }; /** * Operating system feed type of the device group. */ export type OSFeedType = (typeof OSFeedType)[keyof typeof OSFeedType]; export declare const RegionalDataBoundary: { /** * No data boundary */ readonly None: "None"; /** * EU data boundary */ readonly EU: "EU"; }; /** * Regional data boundary for an image */ export type RegionalDataBoundary = (typeof RegionalDataBoundary)[keyof typeof RegionalDataBoundary]; export declare const UpdatePolicy: { /** * Update all policy. */ readonly UpdateAll: "UpdateAll"; /** * No update for 3rd party app policy. */ readonly No3rdPartyAppUpdates: "No3rdPartyAppUpdates"; }; /** * Update policy of the device group. */ export type UpdatePolicy = (typeof UpdatePolicy)[keyof typeof UpdatePolicy];