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

39 lines (38 loc) 1.38 kB
export declare const EnablementStatus: { /** * The feature is enabled. */ readonly Enabled: "Enabled"; /** * The feature is disabled. */ readonly Disabled: "Disabled"; }; /** * Controls the connection region for client workers to cloud-hosted browsers. When enabled, workers connect to browsers in the closest Azure region for lower latency. When disabled, workers connect to browsers in the Azure region where the workspace was created. */ export type EnablementStatus = (typeof EnablementStatus)[keyof typeof EnablementStatus]; export declare const ManagedServiceIdentityType: { readonly None: "None"; readonly SystemAssigned: "SystemAssigned"; readonly UserAssigned: "UserAssigned"; readonly SystemAssigned_UserAssigned: "SystemAssigned,UserAssigned"; }; /** * Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). */ export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType]; export declare const Type: { /** * System assigned identity. */ readonly SystemAssigned: "SystemAssigned"; /** * User assigned identity. */ readonly UserAssigned: "UserAssigned"; }; /** * Managed identity type to use for accessing encryption key Url. */ export type Type = (typeof Type)[keyof typeof Type];