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

18 lines (17 loc) 843 B
export declare const ConnectionMode: { readonly All: "All"; readonly ReadOnly: "ReadOnly"; }; /** * How the read-write server's participation in the query pool is controlled.<br/>It can have the following values: <ul><li>readOnly - indicates that the read-write server is intended not to participate in query operations</li><li>all - indicates that the read-write server can participate in query operations</li></ul>Specifying readOnly when capacity is 1 results in error. */ export type ConnectionMode = (typeof ConnectionMode)[keyof typeof ConnectionMode]; export declare const SkuTier: { readonly Development: "Development"; readonly Basic: "Basic"; readonly Standard: "Standard"; }; /** * The name of the Azure pricing tier to which the SKU applies. */ export type SkuTier = (typeof SkuTier)[keyof typeof SkuTier];