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

36 lines (35 loc) 1.16 kB
export declare const CmkIdentityType: { readonly SystemAssigned: "SystemAssigned"; readonly UserAssigned: "UserAssigned"; }; /** * Values can be SystemAssigned or UserAssigned */ export type CmkIdentityType = (typeof CmkIdentityType)[keyof typeof CmkIdentityType]; export declare const ProvisioningState: { readonly Succeeded: "Succeeded"; readonly Failed: "Failed"; readonly Canceled: "Canceled"; }; /** * Provision states for FluidRelay RP */ export type ProvisioningState = (typeof ProvisioningState)[keyof typeof ProvisioningState]; export declare const ResourceIdentityType: { readonly SystemAssigned: "SystemAssigned"; readonly UserAssigned: "UserAssigned"; readonly SystemAssigned_UserAssigned: "SystemAssigned, UserAssigned"; readonly None: "None"; }; /** * The identity type. */ export type ResourceIdentityType = (typeof ResourceIdentityType)[keyof typeof ResourceIdentityType]; export declare const StorageSKU: { readonly Standard: "standard"; readonly Basic: "basic"; }; /** * Sku of the storage associated with the resource */ export type StorageSKU = (typeof StorageSKU)[keyof typeof StorageSKU];