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

62 lines (61 loc) 1.85 kB
export declare const DashboardPartMetadataType: { /** * The markdown part type. */ readonly Markdown: "Extension/HubsExtension/PartType/MarkdownPart"; }; /** * The dashboard part metadata type. */ export type DashboardPartMetadataType = (typeof DashboardPartMetadataType)[keyof typeof DashboardPartMetadataType]; export declare const FontSize: { readonly NotSpecified: "NotSpecified"; readonly Small: "Small"; readonly Medium: "Medium"; readonly Large: "Large"; }; /** * Size of terminal font. */ export type FontSize = (typeof FontSize)[keyof typeof FontSize]; export declare const FontStyle: { readonly NotSpecified: "NotSpecified"; readonly Monospace: "Monospace"; readonly Courier: "Courier"; }; /** * Style of terminal font. */ export type FontStyle = (typeof FontStyle)[keyof typeof FontStyle]; export declare const OsType: { readonly Windows: "Windows"; readonly Linux: "Linux"; }; /** * The operating system type of the cloud shell. Deprecated, use preferredShellType. */ export type OsType = (typeof OsType)[keyof typeof OsType]; export declare const ProvisioningState: { readonly NotSpecified: "NotSpecified"; readonly Accepted: "Accepted"; readonly Pending: "Pending"; readonly Updating: "Updating"; readonly Creating: "Creating"; readonly Repairing: "Repairing"; readonly Failed: "Failed"; readonly Canceled: "Canceled"; readonly Succeeded: "Succeeded"; }; /** * Provisioning state of the console. */ export type ProvisioningState = (typeof ProvisioningState)[keyof typeof ProvisioningState]; export declare const ShellType: { readonly Bash: "bash"; readonly Pwsh: "pwsh"; readonly Powershell: "powershell"; }; /** * The shell type of the cloud shell. */ export type ShellType = (typeof ShellType)[keyof typeof ShellType];