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.41 kB
export declare const EnablementStatus: { /** * The feature is Enabled. */ readonly Enabled: "Enabled"; /** * The feature is Disabled. */ readonly Disabled: "Disabled"; }; /** * This property sets the connection region for client workers to cloud-hosted browsers. If enabled, workers connect to browsers in the closest Azure region, ensuring lower latency. If disabled, workers connect to browsers in the Azure region in which the workspace was initially 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];