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

101 lines (100 loc) 3 kB
export declare const BackupType: { readonly LocalSnapshot: "LocalSnapshot"; readonly CloudSnapshot: "CloudSnapshot"; }; /** * The type of backup which needs to be taken. */ export type BackupType = (typeof BackupType)[keyof typeof BackupType]; export declare const DayOfWeek: { readonly Sunday: "Sunday"; readonly Monday: "Monday"; readonly Tuesday: "Tuesday"; readonly Wednesday: "Wednesday"; readonly Thursday: "Thursday"; readonly Friday: "Friday"; readonly Saturday: "Saturday"; }; export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]; export declare const EncryptionAlgorithm: { readonly None: "None"; readonly AES256: "AES256"; readonly RSAES_PKCS1_v_1_5: "RSAES_PKCS1_v_1_5"; }; /** * The algorithm used to encrypt "Value". */ export type EncryptionAlgorithm = (typeof EncryptionAlgorithm)[keyof typeof EncryptionAlgorithm]; export declare const Kind: { readonly Series8000: "Series8000"; }; /** * The Kind of the object. Currently only Series8000 is supported */ export type Kind = (typeof Kind)[keyof typeof Kind]; export declare const ManagerSkuType: { readonly Standard: "Standard"; }; /** * Refers to the sku name which should be "Standard" */ export type ManagerSkuType = (typeof ManagerSkuType)[keyof typeof ManagerSkuType]; export declare const ManagerType: { readonly GardaV1: "GardaV1"; readonly HelsinkiV1: "HelsinkiV1"; }; /** * The type of StorSimple Manager. */ export type ManagerType = (typeof ManagerType)[keyof typeof ManagerType]; export declare const MonitoringStatus: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The monitoring status of the volume. */ export type MonitoringStatus = (typeof MonitoringStatus)[keyof typeof MonitoringStatus]; export declare const RecurrenceType: { readonly Minutes: "Minutes"; readonly Hourly: "Hourly"; readonly Daily: "Daily"; readonly Weekly: "Weekly"; }; /** * The recurrence type. */ export type RecurrenceType = (typeof RecurrenceType)[keyof typeof RecurrenceType]; export declare const ScheduleStatus: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The schedule status. */ export type ScheduleStatus = (typeof ScheduleStatus)[keyof typeof ScheduleStatus]; export declare const SslStatus: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * Signifies whether SSL needs to be enabled or not. */ export type SslStatus = (typeof SslStatus)[keyof typeof SslStatus]; export declare const VolumeStatus: { readonly Online: "Online"; readonly Offline: "Offline"; }; /** * The volume status. */ export type VolumeStatus = (typeof VolumeStatus)[keyof typeof VolumeStatus]; export declare const VolumeType: { readonly Tiered: "Tiered"; readonly Archival: "Archival"; readonly LocallyPinned: "LocallyPinned"; }; /** * The type of the volume. */ export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];