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

41 lines (40 loc) 1.66 kB
export declare const AADObjectType: { readonly User: "User"; readonly Group: "Group"; readonly ServicePrincipal: "ServicePrincipal"; }; /** * The type of AAD object the object identifier refers to. */ export type AADObjectType = (typeof AADObjectType)[keyof typeof AADObjectType]; export declare const FirewallAllowAzureIpsState: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The current state of allowing or disallowing IPs originating within Azure through the firewall. If the firewall is disabled, this is not enforced. */ export type FirewallAllowAzureIpsState = (typeof FirewallAllowAzureIpsState)[keyof typeof FirewallAllowAzureIpsState]; export declare const FirewallState: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The current state of the IP address firewall for this account. */ export type FirewallState = (typeof FirewallState)[keyof typeof FirewallState]; export declare const TierType: { readonly Consumption: "Consumption"; readonly Commitment_100AUHours: "Commitment_100AUHours"; readonly Commitment_500AUHours: "Commitment_500AUHours"; readonly Commitment_1000AUHours: "Commitment_1000AUHours"; readonly Commitment_5000AUHours: "Commitment_5000AUHours"; readonly Commitment_10000AUHours: "Commitment_10000AUHours"; readonly Commitment_50000AUHours: "Commitment_50000AUHours"; readonly Commitment_100000AUHours: "Commitment_100000AUHours"; readonly Commitment_500000AUHours: "Commitment_500000AUHours"; }; /** * The commitment tier for the next month. */ export type TierType = (typeof TierType)[keyof typeof TierType];