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.22 kB
export declare const ActionType: { readonly Allow: "Allow"; readonly Alert: "Alert"; readonly Block: "Block"; }; /** * The type of action to take. */ export type ActionType = (typeof ActionType)[keyof typeof ActionType]; export declare const BlockResponseCode: { readonly SERVFAIL: "SERVFAIL"; }; /** * The response code for block actions. */ export type BlockResponseCode = (typeof BlockResponseCode)[keyof typeof BlockResponseCode]; export declare const DnsSecurityRuleState: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The state of DNS security rule. */ export type DnsSecurityRuleState = (typeof DnsSecurityRuleState)[keyof typeof DnsSecurityRuleState]; export declare const ForwardingRuleState: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * The state of forwarding rule. */ export type ForwardingRuleState = (typeof ForwardingRuleState)[keyof typeof ForwardingRuleState]; export declare const IpAllocationMethod: { readonly Static: "Static"; readonly Dynamic: "Dynamic"; }; /** * Private IP address allocation method. */ export type IpAllocationMethod = (typeof IpAllocationMethod)[keyof typeof IpAllocationMethod];