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

41 lines (40 loc) 1.16 kB
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 ProviderStatus: { /** * The provider is successfully provisioned. */ readonly Succeeded: "Succeeded"; /** * The provider is starting provisioning. */ readonly Launching: "Launching"; /** * The provider is updating. */ readonly Updating: "Updating"; /** * The provider is deleting. */ readonly Deleting: "Deleting"; /** * The provider is deleted. */ readonly Deleted: "Deleted"; /** * The provider is failed. */ readonly Failed: "Failed"; }; /** * Provisioning status field */ export type ProviderStatus = (typeof ProviderStatus)[keyof typeof ProviderStatus];