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

47 lines (46 loc) 1.36 kB
export declare const LanguageRuntime: { readonly CPP: "CPP"; readonly JS: "JS"; }; /** * Unique name for the Managed CCF. */ export type LanguageRuntime = (typeof LanguageRuntime)[keyof typeof LanguageRuntime]; export declare const LedgerRoleName: { readonly Reader: "Reader"; readonly Contributor: "Contributor"; readonly Administrator: "Administrator"; }; /** * LedgerRole associated with the Security Principal of Ledger */ export type LedgerRoleName = (typeof LedgerRoleName)[keyof typeof LedgerRoleName]; export declare const LedgerSku: { readonly Standard: "Standard"; readonly Basic: "Basic"; readonly Unknown: "Unknown"; }; /** * SKU associated with the ledger */ export type LedgerSku = (typeof LedgerSku)[keyof typeof LedgerSku]; export declare const LedgerType: { readonly Unknown: "Unknown"; readonly Public: "Public"; readonly Private: "Private"; }; /** * Type of Confidential Ledger */ export type LedgerType = (typeof LedgerType)[keyof typeof LedgerType]; export declare const RunningState: { readonly Active: "Active"; readonly Paused: "Paused"; readonly Unknown: "Unknown"; readonly Pausing: "Pausing"; readonly Resuming: "Resuming"; }; /** * Object representing RunningState for Managed CCF. */ export type RunningState = (typeof RunningState)[keyof typeof RunningState];