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

91 lines (90 loc) 2.23 kB
export declare const AzureDiskSkuName: { /** * Premium_LRS SKU */ readonly Premium_LRS: "Premium_LRS"; /** * Standard_LRS SKU */ readonly Standard_LRS: "Standard_LRS"; /** * StandardSSD_LRS SKU */ readonly StandardSSD_LRS: "StandardSSD_LRS"; /** * UltraSSD_LRS SKU */ readonly UltraSSD_LRS: "UltraSSD_LRS"; /** * Premium_ZRS SKU */ readonly Premium_ZRS: "Premium_ZRS"; /** * PremiumV2_LRS SKU */ readonly PremiumV2_LRS: "PremiumV2_LRS"; /** * StandardSSD_ZRS SKU */ readonly StandardSSD_ZRS: "StandardSSD_ZRS"; }; /** * Sku name */ export type AzureDiskSkuName = (typeof AzureDiskSkuName)[keyof typeof AzureDiskSkuName]; export declare const ElasticSanSkuName: { /** * Premium_LRS SKU */ readonly Premium_LRS: "Premium_LRS"; /** * Premium_ZRS SKU */ readonly Premium_ZRS: "Premium_ZRS"; }; /** * Sku name */ export type ElasticSanSkuName = (typeof ElasticSanSkuName)[keyof typeof ElasticSanSkuName]; 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 ReclaimPolicy: { /** * Delete resource */ readonly Delete: "Delete"; /** * Retain resource */ readonly Retain: "Retain"; }; /** * ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted */ export type ReclaimPolicy = (typeof ReclaimPolicy)[keyof typeof ReclaimPolicy]; export declare const Zone: { /** * First availability zone. */ readonly Zone1: "1"; /** * Second availability zone. */ readonly Zone2: "2"; /** * Third availability zone. */ readonly Zone3: "3"; }; /** * Availability Zones */ export type Zone = (typeof Zone)[keyof typeof Zone];