@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.85 kB
TypeScript
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];