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

205 lines (204 loc) 8.39 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Azure Firewall resource. * * Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01. * * Other available API versions: 2018-06-01, 2018-07-01, 2018-08-01, 2018-10-01, 2018-11-01, 2018-12-01, 2019-02-01, 2019-04-01, 2019-06-01, 2019-07-01, 2019-08-01, 2019-09-01, 2019-11-01, 2019-12-01, 2020-03-01, 2020-04-01, 2020-05-01, 2020-06-01, 2020-07-01, 2020-08-01, 2020-11-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-08-01, 2022-01-01, 2022-05-01, 2022-07-01, 2022-09-01, 2022-11-01, 2023-02-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-07-01, 2024-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class AzureFirewall extends pulumi.CustomResource { /** * Get an existing AzureFirewall resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): AzureFirewall; /** * Returns true if the given object is an instance of AzureFirewall. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AzureFirewall; /** * The additional properties used to further config this azure firewall. */ readonly additionalProperties: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Collection of application rule collections used by Azure Firewall. */ readonly applicationRuleCollections: pulumi.Output<outputs.network.AzureFirewallApplicationRuleCollectionResponse[] | undefined>; /** * Properties to provide a custom autoscale configuration to this azure firewall. */ readonly autoscaleConfiguration: pulumi.Output<outputs.network.AzureFirewallAutoscaleConfigurationResponse | undefined>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * A unique read-only string that changes whenever the resource is updated. */ readonly etag: pulumi.Output<string>; /** * The firewallPolicy associated with this azure firewall. */ readonly firewallPolicy: pulumi.Output<outputs.network.SubResourceResponse | undefined>; /** * IP addresses associated with AzureFirewall. */ readonly hubIPAddresses: pulumi.Output<outputs.network.HubIPAddressesResponse | undefined>; /** * IP configuration of the Azure Firewall resource. */ readonly ipConfigurations: pulumi.Output<outputs.network.AzureFirewallIPConfigurationResponse[] | undefined>; /** * IpGroups associated with AzureFirewall. */ readonly ipGroups: pulumi.Output<outputs.network.AzureFirewallIpGroupsResponse[]>; /** * Resource location. */ readonly location: pulumi.Output<string | undefined>; /** * IP configuration of the Azure Firewall used for management traffic. */ readonly managementIpConfiguration: pulumi.Output<outputs.network.AzureFirewallIPConfigurationResponse | undefined>; /** * Resource name. */ readonly name: pulumi.Output<string>; /** * Collection of NAT rule collections used by Azure Firewall. */ readonly natRuleCollections: pulumi.Output<outputs.network.AzureFirewallNatRuleCollectionResponse[] | undefined>; /** * Collection of network rule collections used by Azure Firewall. */ readonly networkRuleCollections: pulumi.Output<outputs.network.AzureFirewallNetworkRuleCollectionResponse[] | undefined>; /** * The provisioning state of the Azure firewall resource. */ readonly provisioningState: pulumi.Output<string>; /** * The Azure Firewall Resource SKU. */ readonly sku: pulumi.Output<outputs.network.AzureFirewallSkuResponse | undefined>; /** * Resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The operation mode for Threat Intelligence. */ readonly threatIntelMode: pulumi.Output<string | undefined>; /** * Resource type. */ readonly type: pulumi.Output<string>; /** * The virtualHub to which the firewall belongs. */ readonly virtualHub: pulumi.Output<outputs.network.SubResourceResponse | undefined>; /** * A list of availability zones denoting where the resource needs to come from. */ readonly zones: pulumi.Output<string[] | undefined>; /** * Create a AzureFirewall resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AzureFirewallArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AzureFirewall resource. */ export interface AzureFirewallArgs { /** * The additional properties used to further config this azure firewall. */ additionalProperties?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * Collection of application rule collections used by Azure Firewall. */ applicationRuleCollections?: pulumi.Input<pulumi.Input<inputs.network.AzureFirewallApplicationRuleCollectionArgs>[]>; /** * Properties to provide a custom autoscale configuration to this azure firewall. */ autoscaleConfiguration?: pulumi.Input<inputs.network.AzureFirewallAutoscaleConfigurationArgs>; /** * The name of the Azure Firewall. */ azureFirewallName?: pulumi.Input<string>; /** * The firewallPolicy associated with this azure firewall. */ firewallPolicy?: pulumi.Input<inputs.network.SubResourceArgs>; /** * IP addresses associated with AzureFirewall. */ hubIPAddresses?: pulumi.Input<inputs.network.HubIPAddressesArgs>; /** * Resource ID. */ id?: pulumi.Input<string>; /** * IP configuration of the Azure Firewall resource. */ ipConfigurations?: pulumi.Input<pulumi.Input<inputs.network.AzureFirewallIPConfigurationArgs>[]>; /** * Resource location. */ location?: pulumi.Input<string>; /** * IP configuration of the Azure Firewall used for management traffic. */ managementIpConfiguration?: pulumi.Input<inputs.network.AzureFirewallIPConfigurationArgs>; /** * Collection of NAT rule collections used by Azure Firewall. */ natRuleCollections?: pulumi.Input<pulumi.Input<inputs.network.AzureFirewallNatRuleCollectionArgs>[]>; /** * Collection of network rule collections used by Azure Firewall. */ networkRuleCollections?: pulumi.Input<pulumi.Input<inputs.network.AzureFirewallNetworkRuleCollectionArgs>[]>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The Azure Firewall Resource SKU. */ sku?: pulumi.Input<inputs.network.AzureFirewallSkuArgs>; /** * Resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * The operation mode for Threat Intelligence. */ threatIntelMode?: pulumi.Input<string | enums.network.AzureFirewallThreatIntelMode>; /** * The virtualHub to which the firewall belongs. */ virtualHub?: pulumi.Input<inputs.network.SubResourceArgs>; /** * A list of availability zones denoting where the resource needs to come from. */ zones?: pulumi.Input<pulumi.Input<string>[]>; }