azure-native.network.FirewallPolicyRuleCollectionGroupDraft
Explore with Pulumi AI
Rule Collection Group resource. Azure REST API version: 2023-11-01.
Other available API versions: 2024-01-01, 2024-03-01, 2024-05-01.
Example Usage
create or update rule collection group draft
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var firewallPolicyRuleCollectionGroupDraft = new AzureNative.Network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraft", new()
    {
        FirewallPolicyName = "firewallPolicy",
        Priority = 100,
        ResourceGroupName = "rg1",
        RuleCollectionGroupName = "ruleCollectionGroup1",
        RuleCollections = new[]
        {
            new AzureNative.Network.Inputs.FirewallPolicyFilterRuleCollectionArgs
            {
                Action = new AzureNative.Network.Inputs.FirewallPolicyFilterRuleCollectionActionArgs
                {
                    Type = AzureNative.Network.FirewallPolicyFilterRuleCollectionActionType.Deny,
                },
                Name = "Example-Filter-Rule-Collection",
                Priority = 100,
                RuleCollectionType = "FirewallPolicyFilterRuleCollection",
                Rules = new[]
                {
                    new AzureNative.Network.Inputs.NetworkRuleArgs
                    {
                        DestinationAddresses = new[]
                        {
                            "*",
                        },
                        DestinationPorts = new[]
                        {
                            "*",
                        },
                        IpProtocols = new[]
                        {
                            AzureNative.Network.FirewallPolicyRuleNetworkProtocol.TCP,
                        },
                        Name = "network-rule1",
                        RuleType = "NetworkRule",
                        SourceAddresses = new[]
                        {
                            "10.1.25.0/24",
                        },
                    },
                },
            },
        },
    });
});
package main
import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewFirewallPolicyRuleCollectionGroupDraft(ctx, "firewallPolicyRuleCollectionGroupDraft", &network.FirewallPolicyRuleCollectionGroupDraftArgs{
			FirewallPolicyName:      pulumi.String("firewallPolicy"),
			Priority:                pulumi.Int(100),
			ResourceGroupName:       pulumi.String("rg1"),
			RuleCollectionGroupName: pulumi.String("ruleCollectionGroup1"),
			RuleCollections: pulumi.Array{
				network.FirewallPolicyFilterRuleCollection{
					Action: network.FirewallPolicyFilterRuleCollectionAction{
						Type: network.FirewallPolicyFilterRuleCollectionActionTypeDeny,
					},
					Name:               "Example-Filter-Rule-Collection",
					Priority:           100,
					RuleCollectionType: "FirewallPolicyFilterRuleCollection",
					Rules: []interface{}{
						network.NetworkRule{
							DestinationAddresses: []string{
								"*",
							},
							DestinationPorts: []string{
								"*",
							},
							IpProtocols: []network.FirewallPolicyRuleNetworkProtocol{
								network.FirewallPolicyRuleNetworkProtocolTCP,
							},
							Name:     "network-rule1",
							RuleType: "NetworkRule",
							SourceAddresses: []string{
								"10.1.25.0/24",
							},
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraft;
import com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraftArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var firewallPolicyRuleCollectionGroupDraft = new FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraft", FirewallPolicyRuleCollectionGroupDraftArgs.builder()
            .firewallPolicyName("firewallPolicy")
            .priority(100)
            .resourceGroupName("rg1")
            .ruleCollectionGroupName("ruleCollectionGroup1")
            .ruleCollections(FirewallPolicyFilterRuleCollectionArgs.builder()
                .action(FirewallPolicyFilterRuleCollectionActionArgs.builder()
                    .type("Deny")
                    .build())
                .name("Example-Filter-Rule-Collection")
                .priority(100)
                .ruleCollectionType("FirewallPolicyFilterRuleCollection")
                .rules(NetworkRuleArgs.builder()
                    .destinationAddresses("*")
                    .destinationPorts("*")
                    .ipProtocols("TCP")
                    .name("network-rule1")
                    .ruleType("NetworkRule")
                    .sourceAddresses("10.1.25.0/24")
                    .build())
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const firewallPolicyRuleCollectionGroupDraft = new azure_native.network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraft", {
    firewallPolicyName: "firewallPolicy",
    priority: 100,
    resourceGroupName: "rg1",
    ruleCollectionGroupName: "ruleCollectionGroup1",
    ruleCollections: [{
        action: {
            type: azure_native.network.FirewallPolicyFilterRuleCollectionActionType.Deny,
        },
        name: "Example-Filter-Rule-Collection",
        priority: 100,
        ruleCollectionType: "FirewallPolicyFilterRuleCollection",
        rules: [{
            destinationAddresses: ["*"],
            destinationPorts: ["*"],
            ipProtocols: [azure_native.network.FirewallPolicyRuleNetworkProtocol.TCP],
            name: "network-rule1",
            ruleType: "NetworkRule",
            sourceAddresses: ["10.1.25.0/24"],
        }],
    }],
});
import pulumi
import pulumi_azure_native as azure_native
firewall_policy_rule_collection_group_draft = azure_native.network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraft",
    firewall_policy_name="firewallPolicy",
    priority=100,
    resource_group_name="rg1",
    rule_collection_group_name="ruleCollectionGroup1",
    rule_collections=[{
        "action": {
            "type": azure_native.network.FirewallPolicyFilterRuleCollectionActionType.DENY,
        },
        "name": "Example-Filter-Rule-Collection",
        "priority": 100,
        "rule_collection_type": "FirewallPolicyFilterRuleCollection",
        "rules": [{
            "destination_addresses": ["*"],
            "destination_ports": ["*"],
            "ip_protocols": [azure_native.network.FirewallPolicyRuleNetworkProtocol.TCP],
            "name": "network-rule1",
            "rule_type": "NetworkRule",
            "source_addresses": ["10.1.25.0/24"],
        }],
    }])
resources:
  firewallPolicyRuleCollectionGroupDraft:
    type: azure-native:network:FirewallPolicyRuleCollectionGroupDraft
    properties:
      firewallPolicyName: firewallPolicy
      priority: 100
      resourceGroupName: rg1
      ruleCollectionGroupName: ruleCollectionGroup1
      ruleCollections:
        - action:
            type: Deny
          name: Example-Filter-Rule-Collection
          priority: 100
          ruleCollectionType: FirewallPolicyFilterRuleCollection
          rules:
            - destinationAddresses:
                - '*'
              destinationPorts:
                - '*'
              ipProtocols:
                - TCP
              name: network-rule1
              ruleType: NetworkRule
              sourceAddresses:
                - 10.1.25.0/24
Create FirewallPolicyRuleCollectionGroupDraft Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FirewallPolicyRuleCollectionGroupDraft(name: string, args: FirewallPolicyRuleCollectionGroupDraftArgs, opts?: CustomResourceOptions);@overload
def FirewallPolicyRuleCollectionGroupDraft(resource_name: str,
                                           args: FirewallPolicyRuleCollectionGroupDraftArgs,
                                           opts: Optional[ResourceOptions] = None)
@overload
def FirewallPolicyRuleCollectionGroupDraft(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           firewall_policy_name: Optional[str] = None,
                                           resource_group_name: Optional[str] = None,
                                           rule_collection_group_name: Optional[str] = None,
                                           id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           priority: Optional[int] = None,
                                           rule_collections: Optional[Sequence[Union[FirewallPolicyFilterRuleCollectionArgs, FirewallPolicyNatRuleCollectionArgs]]] = None)func NewFirewallPolicyRuleCollectionGroupDraft(ctx *Context, name string, args FirewallPolicyRuleCollectionGroupDraftArgs, opts ...ResourceOption) (*FirewallPolicyRuleCollectionGroupDraft, error)public FirewallPolicyRuleCollectionGroupDraft(string name, FirewallPolicyRuleCollectionGroupDraftArgs args, CustomResourceOptions? opts = null)
public FirewallPolicyRuleCollectionGroupDraft(String name, FirewallPolicyRuleCollectionGroupDraftArgs args)
public FirewallPolicyRuleCollectionGroupDraft(String name, FirewallPolicyRuleCollectionGroupDraftArgs args, CustomResourceOptions options)
type: azure-native:network:FirewallPolicyRuleCollectionGroupDraft
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FirewallPolicyRuleCollectionGroupDraftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FirewallPolicyRuleCollectionGroupDraftArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FirewallPolicyRuleCollectionGroupDraftArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FirewallPolicyRuleCollectionGroupDraftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FirewallPolicyRuleCollectionGroupDraftArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var firewallPolicyRuleCollectionGroupDraftResource = new AzureNative.Network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraftResource", new()
{
    FirewallPolicyName = "string",
    ResourceGroupName = "string",
    RuleCollectionGroupName = "string",
    Id = "string",
    Name = "string",
    Priority = 0,
    RuleCollections = new[]
    {
        new AzureNative.Network.Inputs.FirewallPolicyFilterRuleCollectionArgs
        {
            RuleCollectionType = "FirewallPolicyFilterRuleCollection",
            Action = new AzureNative.Network.Inputs.FirewallPolicyFilterRuleCollectionActionArgs
            {
                Type = "string",
            },
            Name = "string",
            Priority = 0,
            Rules = new[]
            {
                new AzureNative.Network.Inputs.ApplicationRuleArgs
                {
                    RuleType = "ApplicationRule",
                    HttpHeadersToInsert = new[]
                    {
                        new AzureNative.Network.Inputs.FirewallPolicyHttpHeaderToInsertArgs
                        {
                            HeaderName = "string",
                            HeaderValue = "string",
                        },
                    },
                    FqdnTags = new[]
                    {
                        "string",
                    },
                    Description = "string",
                    Name = "string",
                    Protocols = new[]
                    {
                        new AzureNative.Network.Inputs.FirewallPolicyRuleApplicationProtocolArgs
                        {
                            Port = 0,
                            ProtocolType = "string",
                        },
                    },
                    DestinationAddresses = new[]
                    {
                        "string",
                    },
                    SourceAddresses = new[]
                    {
                        "string",
                    },
                    SourceIpGroups = new[]
                    {
                        "string",
                    },
                    TargetFqdns = new[]
                    {
                        "string",
                    },
                    TargetUrls = new[]
                    {
                        "string",
                    },
                    TerminateTLS = false,
                    WebCategories = new[]
                    {
                        "string",
                    },
                },
            },
        },
    },
});
example, err := network.NewFirewallPolicyRuleCollectionGroupDraft(ctx, "firewallPolicyRuleCollectionGroupDraftResource", &network.FirewallPolicyRuleCollectionGroupDraftArgs{
	FirewallPolicyName:      pulumi.String("string"),
	ResourceGroupName:       pulumi.String("string"),
	RuleCollectionGroupName: pulumi.String("string"),
	Id:                      pulumi.String("string"),
	Name:                    pulumi.String("string"),
	Priority:                pulumi.Int(0),
	RuleCollections: pulumi.Array{
		network.FirewallPolicyFilterRuleCollection{
			RuleCollectionType: "FirewallPolicyFilterRuleCollection",
			Action: network.FirewallPolicyFilterRuleCollectionAction{
				Type: "string",
			},
			Name:     "string",
			Priority: 0,
			Rules: []interface{}{
				network.ApplicationRule{
					RuleType: "ApplicationRule",
					HttpHeadersToInsert: []network.FirewallPolicyHttpHeaderToInsert{
						{
							HeaderName:  "string",
							HeaderValue: "string",
						},
					},
					FqdnTags: []string{
						"string",
					},
					Description: "string",
					Name:        "string",
					Protocols: []network.FirewallPolicyRuleApplicationProtocol{
						{
							Port:         0,
							ProtocolType: "string",
						},
					},
					DestinationAddresses: []string{
						"string",
					},
					SourceAddresses: []string{
						"string",
					},
					SourceIpGroups: []string{
						"string",
					},
					TargetFqdns: []string{
						"string",
					},
					TargetUrls: []string{
						"string",
					},
					TerminateTLS: false,
					WebCategories: []string{
						"string",
					},
				},
			},
		},
	},
})
var firewallPolicyRuleCollectionGroupDraftResource = new FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraftResource", FirewallPolicyRuleCollectionGroupDraftArgs.builder()
    .firewallPolicyName("string")
    .resourceGroupName("string")
    .ruleCollectionGroupName("string")
    .id("string")
    .name("string")
    .priority(0)
    .ruleCollections(FirewallPolicyFilterRuleCollectionArgs.builder()
        .ruleCollectionType("FirewallPolicyFilterRuleCollection")
        .action(FirewallPolicyFilterRuleCollectionActionArgs.builder()
            .type("string")
            .build())
        .name("string")
        .priority(0)
        .rules(ApplicationRuleArgs.builder()
            .ruleType("ApplicationRule")
            .httpHeadersToInsert(FirewallPolicyHttpHeaderToInsertArgs.builder()
                .headerName("string")
                .headerValue("string")
                .build())
            .fqdnTags("string")
            .description("string")
            .name("string")
            .protocols(FirewallPolicyRuleApplicationProtocolArgs.builder()
                .port(0)
                .protocolType("string")
                .build())
            .destinationAddresses("string")
            .sourceAddresses("string")
            .sourceIpGroups("string")
            .targetFqdns("string")
            .targetUrls("string")
            .terminateTLS(false)
            .webCategories("string")
            .build())
        .build())
    .build());
firewall_policy_rule_collection_group_draft_resource = azure_native.network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraftResource",
    firewall_policy_name="string",
    resource_group_name="string",
    rule_collection_group_name="string",
    id="string",
    name="string",
    priority=0,
    rule_collections=[{
        "rule_collection_type": "FirewallPolicyFilterRuleCollection",
        "action": {
            "type": "string",
        },
        "name": "string",
        "priority": 0,
        "rules": [{
            "rule_type": "ApplicationRule",
            "http_headers_to_insert": [{
                "header_name": "string",
                "header_value": "string",
            }],
            "fqdn_tags": ["string"],
            "description": "string",
            "name": "string",
            "protocols": [{
                "port": 0,
                "protocol_type": "string",
            }],
            "destination_addresses": ["string"],
            "source_addresses": ["string"],
            "source_ip_groups": ["string"],
            "target_fqdns": ["string"],
            "target_urls": ["string"],
            "terminate_tls": False,
            "web_categories": ["string"],
        }],
    }])
const firewallPolicyRuleCollectionGroupDraftResource = new azure_native.network.FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraftResource", {
    firewallPolicyName: "string",
    resourceGroupName: "string",
    ruleCollectionGroupName: "string",
    id: "string",
    name: "string",
    priority: 0,
    ruleCollections: [{
        ruleCollectionType: "FirewallPolicyFilterRuleCollection",
        action: {
            type: "string",
        },
        name: "string",
        priority: 0,
        rules: [{
            ruleType: "ApplicationRule",
            httpHeadersToInsert: [{
                headerName: "string",
                headerValue: "string",
            }],
            fqdnTags: ["string"],
            description: "string",
            name: "string",
            protocols: [{
                port: 0,
                protocolType: "string",
            }],
            destinationAddresses: ["string"],
            sourceAddresses: ["string"],
            sourceIpGroups: ["string"],
            targetFqdns: ["string"],
            targetUrls: ["string"],
            terminateTLS: false,
            webCategories: ["string"],
        }],
    }],
});
type: azure-native:network:FirewallPolicyRuleCollectionGroupDraft
properties:
    firewallPolicyName: string
    id: string
    name: string
    priority: 0
    resourceGroupName: string
    ruleCollectionGroupName: string
    ruleCollections:
        - action:
            type: string
          name: string
          priority: 0
          ruleCollectionType: FirewallPolicyFilterRuleCollection
          rules:
            - description: string
              destinationAddresses:
                - string
              fqdnTags:
                - string
              httpHeadersToInsert:
                - headerName: string
                  headerValue: string
              name: string
              protocols:
                - port: 0
                  protocolType: string
              ruleType: ApplicationRule
              sourceAddresses:
                - string
              sourceIpGroups:
                - string
              targetFqdns:
                - string
              targetUrls:
                - string
              terminateTLS: false
              webCategories:
                - string
FirewallPolicyRuleCollectionGroupDraft Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FirewallPolicyRuleCollectionGroupDraft resource accepts the following input properties:
- FirewallPolicy stringName 
- The name of the Firewall Policy.
- ResourceGroup stringName 
- The name of the resource group.
- RuleCollection stringGroup Name 
- The name of the FirewallPolicyRuleCollectionGroup.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Priority int
- Priority of the Firewall Policy Rule Collection Group resource.
- RuleCollections List<Union<Pulumi.Azure Native. Network. Inputs. Firewall Policy Filter Rule Collection, Pulumi. Azure Native. Network. Inputs. Firewall Policy Nat Rule Collection Args>> 
- Group of Firewall Policy rule collections.
- FirewallPolicy stringName 
- The name of the Firewall Policy.
- ResourceGroup stringName 
- The name of the resource group.
- RuleCollection stringGroup Name 
- The name of the FirewallPolicyRuleCollectionGroup.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Priority int
- Priority of the Firewall Policy Rule Collection Group resource.
- RuleCollections []interface{}
- Group of Firewall Policy rule collections.
- firewallPolicy StringName 
- The name of the Firewall Policy.
- resourceGroup StringName 
- The name of the resource group.
- ruleCollection StringGroup Name 
- The name of the FirewallPolicyRuleCollectionGroup.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- priority Integer
- Priority of the Firewall Policy Rule Collection Group resource.
- ruleCollections List<Either<FirewallPolicy Filter Rule Collection,Firewall Policy Nat Rule Collection Args>> 
- Group of Firewall Policy rule collections.
- firewallPolicy stringName 
- The name of the Firewall Policy.
- resourceGroup stringName 
- The name of the resource group.
- ruleCollection stringGroup Name 
- The name of the FirewallPolicyRuleCollectionGroup.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- priority number
- Priority of the Firewall Policy Rule Collection Group resource.
- ruleCollections (FirewallPolicy Filter Rule Collection | Firewall Policy Nat Rule Collection Args)[] 
- Group of Firewall Policy rule collections.
- firewall_policy_ strname 
- The name of the Firewall Policy.
- resource_group_ strname 
- The name of the resource group.
- rule_collection_ strgroup_ name 
- The name of the FirewallPolicyRuleCollectionGroup.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- priority int
- Priority of the Firewall Policy Rule Collection Group resource.
- rule_collections Sequence[Union[FirewallPolicy Filter Rule Collection Args, Firewall Policy Nat Rule Collection Args]] 
- Group of Firewall Policy rule collections.
- firewallPolicy StringName 
- The name of the Firewall Policy.
- resourceGroup StringName 
- The name of the resource group.
- ruleCollection StringGroup Name 
- The name of the FirewallPolicyRuleCollectionGroup.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- priority Number
- Priority of the Firewall Policy Rule Collection Group resource.
- ruleCollections List<Property Map | Property Map>
- Group of Firewall Policy rule collections.
Outputs
All input properties are implicitly available as output properties. Additionally, the FirewallPolicyRuleCollectionGroupDraft resource produces the following output properties:
Supporting Types
ApplicationRule, ApplicationRuleArgs    
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- List<string>
- List of FQDN Tags for this rule.
- HttpHeaders List<Pulumi.To Insert Azure Native. Network. Inputs. Firewall Policy Http Header To Insert> 
- List of HTTP/S headers to insert.
- Name string
- Name of the rule.
- Protocols
List<Pulumi.Azure Native. Network. Inputs. Firewall Policy Rule Application Protocol> 
- Array of Application Protocols.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- TargetFqdns List<string>
- List of FQDNs for this rule.
- TargetUrls List<string>
- List of Urls for this rule condition.
- TerminateTLS bool
- Terminate TLS connections for this rule.
- WebCategories List<string>
- List of destination azure web categories.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- []string
- List of FQDN Tags for this rule.
- HttpHeaders []FirewallTo Insert Policy Http Header To Insert 
- List of HTTP/S headers to insert.
- Name string
- Name of the rule.
- Protocols
[]FirewallPolicy Rule Application Protocol 
- Array of Application Protocols.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- TargetFqdns []string
- List of FQDNs for this rule.
- TargetUrls []string
- List of Urls for this rule condition.
- TerminateTLS bool
- Terminate TLS connections for this rule.
- WebCategories []string
- List of destination azure web categories.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- List<String>
- List of FQDN Tags for this rule.
- httpHeaders List<FirewallTo Insert Policy Http Header To Insert> 
- List of HTTP/S headers to insert.
- name String
- Name of the rule.
- protocols
List<FirewallPolicy Rule Application Protocol> 
- Array of Application Protocols.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- targetFqdns List<String>
- List of FQDNs for this rule.
- targetUrls List<String>
- List of Urls for this rule condition.
- terminateTLS Boolean
- Terminate TLS connections for this rule.
- webCategories List<String>
- List of destination azure web categories.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- string[]
- List of FQDN Tags for this rule.
- httpHeaders FirewallTo Insert Policy Http Header To Insert[] 
- List of HTTP/S headers to insert.
- name string
- Name of the rule.
- protocols
FirewallPolicy Rule Application Protocol[] 
- Array of Application Protocols.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- targetFqdns string[]
- List of FQDNs for this rule.
- targetUrls string[]
- List of Urls for this rule condition.
- terminateTLS boolean
- Terminate TLS connections for this rule.
- webCategories string[]
- List of destination azure web categories.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- Sequence[str]
- List of FQDN Tags for this rule.
- http_headers_ Sequence[Firewallto_ insert Policy Http Header To Insert] 
- List of HTTP/S headers to insert.
- name str
- Name of the rule.
- protocols
Sequence[FirewallPolicy Rule Application Protocol] 
- Array of Application Protocols.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- target_fqdns Sequence[str]
- List of FQDNs for this rule.
- target_urls Sequence[str]
- List of Urls for this rule condition.
- terminate_tls bool
- Terminate TLS connections for this rule.
- web_categories Sequence[str]
- List of destination azure web categories.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- List<String>
- List of FQDN Tags for this rule.
- httpHeaders List<Property Map>To Insert 
- List of HTTP/S headers to insert.
- name String
- Name of the rule.
- protocols List<Property Map>
- Array of Application Protocols.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- targetFqdns List<String>
- List of FQDNs for this rule.
- targetUrls List<String>
- List of Urls for this rule condition.
- terminateTLS Boolean
- Terminate TLS connections for this rule.
- webCategories List<String>
- List of destination azure web categories.
ApplicationRuleResponse, ApplicationRuleResponseArgs      
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- List<string>
- List of FQDN Tags for this rule.
- HttpHeaders List<Pulumi.To Insert Azure Native. Network. Inputs. Firewall Policy Http Header To Insert Response> 
- List of HTTP/S headers to insert.
- Name string
- Name of the rule.
- Protocols
List<Pulumi.Azure Native. Network. Inputs. Firewall Policy Rule Application Protocol Response> 
- Array of Application Protocols.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- TargetFqdns List<string>
- List of FQDNs for this rule.
- TargetUrls List<string>
- List of Urls for this rule condition.
- TerminateTLS bool
- Terminate TLS connections for this rule.
- WebCategories List<string>
- List of destination azure web categories.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- []string
- List of FQDN Tags for this rule.
- HttpHeaders []FirewallTo Insert Policy Http Header To Insert Response 
- List of HTTP/S headers to insert.
- Name string
- Name of the rule.
- Protocols
[]FirewallPolicy Rule Application Protocol Response 
- Array of Application Protocols.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- TargetFqdns []string
- List of FQDNs for this rule.
- TargetUrls []string
- List of Urls for this rule condition.
- TerminateTLS bool
- Terminate TLS connections for this rule.
- WebCategories []string
- List of destination azure web categories.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- List<String>
- List of FQDN Tags for this rule.
- httpHeaders List<FirewallTo Insert Policy Http Header To Insert Response> 
- List of HTTP/S headers to insert.
- name String
- Name of the rule.
- protocols
List<FirewallPolicy Rule Application Protocol Response> 
- Array of Application Protocols.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- targetFqdns List<String>
- List of FQDNs for this rule.
- targetUrls List<String>
- List of Urls for this rule condition.
- terminateTLS Boolean
- Terminate TLS connections for this rule.
- webCategories List<String>
- List of destination azure web categories.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- string[]
- List of FQDN Tags for this rule.
- httpHeaders FirewallTo Insert Policy Http Header To Insert Response[] 
- List of HTTP/S headers to insert.
- name string
- Name of the rule.
- protocols
FirewallPolicy Rule Application Protocol Response[] 
- Array of Application Protocols.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- targetFqdns string[]
- List of FQDNs for this rule.
- targetUrls string[]
- List of Urls for this rule condition.
- terminateTLS boolean
- Terminate TLS connections for this rule.
- webCategories string[]
- List of destination azure web categories.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- Sequence[str]
- List of FQDN Tags for this rule.
- http_headers_ Sequence[Firewallto_ insert Policy Http Header To Insert Response] 
- List of HTTP/S headers to insert.
- name str
- Name of the rule.
- protocols
Sequence[FirewallPolicy Rule Application Protocol Response] 
- Array of Application Protocols.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- target_fqdns Sequence[str]
- List of FQDNs for this rule.
- target_urls Sequence[str]
- List of Urls for this rule condition.
- terminate_tls bool
- Terminate TLS connections for this rule.
- web_categories Sequence[str]
- List of destination azure web categories.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- List<String>
- List of FQDN Tags for this rule.
- httpHeaders List<Property Map>To Insert 
- List of HTTP/S headers to insert.
- name String
- Name of the rule.
- protocols List<Property Map>
- Array of Application Protocols.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- targetFqdns List<String>
- List of FQDNs for this rule.
- targetUrls List<String>
- List of Urls for this rule condition.
- terminateTLS Boolean
- Terminate TLS connections for this rule.
- webCategories List<String>
- List of destination azure web categories.
FirewallPolicyFilterRuleCollection, FirewallPolicyFilterRuleCollectionArgs          
- Action
Pulumi.Azure Native. Network. Inputs. Firewall Policy Filter Rule Collection Action 
- The action type of a Filter rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules List<object>
- List of rules included in a rule collection.
- Action
FirewallPolicy Filter Rule Collection Action 
- The action type of a Filter rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules []interface{}
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action 
- The action type of a Filter rule collection.
- name String
- The name of the rule collection.
- priority Integer
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Object>
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action 
- The action type of a Filter rule collection.
- name string
- The name of the rule collection.
- priority number
- Priority of the Firewall Policy Rule Collection resource.
- rules
(ApplicationRule | Nat Rule | Network Rule)[] 
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action 
- The action type of a Filter rule collection.
- name str
- The name of the rule collection.
- priority int
- Priority of the Firewall Policy Rule Collection resource.
- rules
Sequence[Union[ApplicationRule, Nat Rule, Network Rule]] 
- List of rules included in a rule collection.
- action Property Map
- The action type of a Filter rule collection.
- name String
- The name of the rule collection.
- priority Number
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Property Map | Property Map | Property Map>
- List of rules included in a rule collection.
FirewallPolicyFilterRuleCollectionAction, FirewallPolicyFilterRuleCollectionActionArgs            
- Type
string | Pulumi.Azure Native. Network. Firewall Policy Filter Rule Collection Action Type 
- The type of action.
- Type
string | FirewallPolicy Filter Rule Collection Action Type 
- The type of action.
- type
String | FirewallPolicy Filter Rule Collection Action Type 
- The type of action.
- type
string | FirewallPolicy Filter Rule Collection Action Type 
- The type of action.
- type
str | FirewallPolicy Filter Rule Collection Action Type 
- The type of action.
- type String | "Allow" | "Deny"
- The type of action.
FirewallPolicyFilterRuleCollectionActionResponse, FirewallPolicyFilterRuleCollectionActionResponseArgs              
- Type string
- The type of action.
- Type string
- The type of action.
- type String
- The type of action.
- type string
- The type of action.
- type str
- The type of action.
- type String
- The type of action.
FirewallPolicyFilterRuleCollectionActionType, FirewallPolicyFilterRuleCollectionActionTypeArgs              
- Allow
- Allow
- Deny
- Deny
- FirewallPolicy Filter Rule Collection Action Type Allow 
- Allow
- FirewallPolicy Filter Rule Collection Action Type Deny 
- Deny
- Allow
- Allow
- Deny
- Deny
- Allow
- Allow
- Deny
- Deny
- ALLOW
- Allow
- DENY
- Deny
- "Allow"
- Allow
- "Deny"
- Deny
FirewallPolicyFilterRuleCollectionResponse, FirewallPolicyFilterRuleCollectionResponseArgs            
- Action
Pulumi.Azure Native. Network. Inputs. Firewall Policy Filter Rule Collection Action Response 
- The action type of a Filter rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules List<object>
- List of rules included in a rule collection.
- Action
FirewallPolicy Filter Rule Collection Action Response 
- The action type of a Filter rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules []interface{}
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action Response 
- The action type of a Filter rule collection.
- name String
- The name of the rule collection.
- priority Integer
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Object>
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action Response 
- The action type of a Filter rule collection.
- name string
- The name of the rule collection.
- priority number
- Priority of the Firewall Policy Rule Collection resource.
- rules
(ApplicationRule Response | Nat Rule Response | Network Rule Response)[] 
- List of rules included in a rule collection.
- action
FirewallPolicy Filter Rule Collection Action Response 
- The action type of a Filter rule collection.
- name str
- The name of the rule collection.
- priority int
- Priority of the Firewall Policy Rule Collection resource.
- rules
Sequence[Union[ApplicationRule Response, Nat Rule Response, Network Rule Response]] 
- List of rules included in a rule collection.
- action Property Map
- The action type of a Filter rule collection.
- name String
- The name of the rule collection.
- priority Number
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Property Map | Property Map | Property Map>
- List of rules included in a rule collection.
FirewallPolicyHttpHeaderToInsert, FirewallPolicyHttpHeaderToInsertArgs            
- HeaderName string
- Contains the name of the header
- HeaderValue string
- Contains the value of the header
- HeaderName string
- Contains the name of the header
- HeaderValue string
- Contains the value of the header
- headerName String
- Contains the name of the header
- headerValue String
- Contains the value of the header
- headerName string
- Contains the name of the header
- headerValue string
- Contains the value of the header
- header_name str
- Contains the name of the header
- header_value str
- Contains the value of the header
- headerName String
- Contains the name of the header
- headerValue String
- Contains the value of the header
FirewallPolicyHttpHeaderToInsertResponse, FirewallPolicyHttpHeaderToInsertResponseArgs              
- HeaderName string
- Contains the name of the header
- HeaderValue string
- Contains the value of the header
- HeaderName string
- Contains the name of the header
- HeaderValue string
- Contains the value of the header
- headerName String
- Contains the name of the header
- headerValue String
- Contains the value of the header
- headerName string
- Contains the name of the header
- headerValue string
- Contains the value of the header
- header_name str
- Contains the name of the header
- header_value str
- Contains the value of the header
- headerName String
- Contains the name of the header
- headerValue String
- Contains the value of the header
FirewallPolicyNatRuleCollection, FirewallPolicyNatRuleCollectionArgs          
- Action
Pulumi.Azure Native. Network. Inputs. Firewall Policy Nat Rule Collection Action 
- The action type of a Nat rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules List<object>
- List of rules included in a rule collection.
- Action
FirewallPolicy Nat Rule Collection Action 
- The action type of a Nat rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules []interface{}
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action 
- The action type of a Nat rule collection.
- name String
- The name of the rule collection.
- priority Integer
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Object>
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action 
- The action type of a Nat rule collection.
- name string
- The name of the rule collection.
- priority number
- Priority of the Firewall Policy Rule Collection resource.
- rules
(ApplicationRule | Nat Rule | Network Rule)[] 
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action 
- The action type of a Nat rule collection.
- name str
- The name of the rule collection.
- priority int
- Priority of the Firewall Policy Rule Collection resource.
- rules
Sequence[Union[ApplicationRule, Nat Rule, Network Rule]] 
- List of rules included in a rule collection.
- action Property Map
- The action type of a Nat rule collection.
- name String
- The name of the rule collection.
- priority Number
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Property Map | Property Map | Property Map>
- List of rules included in a rule collection.
FirewallPolicyNatRuleCollectionAction, FirewallPolicyNatRuleCollectionActionArgs            
- Type
string | Pulumi.Azure Native. Network. Firewall Policy Nat Rule Collection Action Type 
- The type of action.
- Type
string | FirewallPolicy Nat Rule Collection Action Type 
- The type of action.
- type
String | FirewallPolicy Nat Rule Collection Action Type 
- The type of action.
- type
string | FirewallPolicy Nat Rule Collection Action Type 
- The type of action.
- type
str | FirewallPolicy Nat Rule Collection Action Type 
- The type of action.
FirewallPolicyNatRuleCollectionActionResponse, FirewallPolicyNatRuleCollectionActionResponseArgs              
- Type string
- The type of action.
- Type string
- The type of action.
- type String
- The type of action.
- type string
- The type of action.
- type str
- The type of action.
- type String
- The type of action.
FirewallPolicyNatRuleCollectionActionType, FirewallPolicyNatRuleCollectionActionTypeArgs              
- DNAT
- DNAT
- FirewallPolicy Nat Rule Collection Action Type DNAT 
- DNAT
- DNAT
- DNAT
- DNAT
- DNAT
- DNAT
- DNAT
- "DNAT"
- DNAT
FirewallPolicyNatRuleCollectionResponse, FirewallPolicyNatRuleCollectionResponseArgs            
- Action
Pulumi.Azure Native. Network. Inputs. Firewall Policy Nat Rule Collection Action Response 
- The action type of a Nat rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules List<object>
- List of rules included in a rule collection.
- Action
FirewallPolicy Nat Rule Collection Action Response 
- The action type of a Nat rule collection.
- Name string
- The name of the rule collection.
- Priority int
- Priority of the Firewall Policy Rule Collection resource.
- Rules []interface{}
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action Response 
- The action type of a Nat rule collection.
- name String
- The name of the rule collection.
- priority Integer
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Object>
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action Response 
- The action type of a Nat rule collection.
- name string
- The name of the rule collection.
- priority number
- Priority of the Firewall Policy Rule Collection resource.
- rules
(ApplicationRule Response | Nat Rule Response | Network Rule Response)[] 
- List of rules included in a rule collection.
- action
FirewallPolicy Nat Rule Collection Action Response 
- The action type of a Nat rule collection.
- name str
- The name of the rule collection.
- priority int
- Priority of the Firewall Policy Rule Collection resource.
- rules
Sequence[Union[ApplicationRule Response, Nat Rule Response, Network Rule Response]] 
- List of rules included in a rule collection.
- action Property Map
- The action type of a Nat rule collection.
- name String
- The name of the rule collection.
- priority Number
- Priority of the Firewall Policy Rule Collection resource.
- rules List<Property Map | Property Map | Property Map>
- List of rules included in a rule collection.
FirewallPolicyRuleApplicationProtocol, FirewallPolicyRuleApplicationProtocolArgs          
- Port int
- Port number for the protocol, cannot be greater than 64000.
- ProtocolType string | Pulumi.Azure Native. Network. Firewall Policy Rule Application Protocol Type 
- Protocol type.
- Port int
- Port number for the protocol, cannot be greater than 64000.
- ProtocolType string | FirewallPolicy Rule Application Protocol Type 
- Protocol type.
- port Integer
- Port number for the protocol, cannot be greater than 64000.
- protocolType String | FirewallPolicy Rule Application Protocol Type 
- Protocol type.
- port number
- Port number for the protocol, cannot be greater than 64000.
- protocolType string | FirewallPolicy Rule Application Protocol Type 
- Protocol type.
- port int
- Port number for the protocol, cannot be greater than 64000.
- protocol_type str | FirewallPolicy Rule Application Protocol Type 
- Protocol type.
- port Number
- Port number for the protocol, cannot be greater than 64000.
- protocolType String | "Http" | "Https"
- Protocol type.
FirewallPolicyRuleApplicationProtocolResponse, FirewallPolicyRuleApplicationProtocolResponseArgs            
- Port int
- Port number for the protocol, cannot be greater than 64000.
- ProtocolType string
- Protocol type.
- Port int
- Port number for the protocol, cannot be greater than 64000.
- ProtocolType string
- Protocol type.
- port Integer
- Port number for the protocol, cannot be greater than 64000.
- protocolType String
- Protocol type.
- port number
- Port number for the protocol, cannot be greater than 64000.
- protocolType string
- Protocol type.
- port int
- Port number for the protocol, cannot be greater than 64000.
- protocol_type str
- Protocol type.
- port Number
- Port number for the protocol, cannot be greater than 64000.
- protocolType String
- Protocol type.
FirewallPolicyRuleApplicationProtocolType, FirewallPolicyRuleApplicationProtocolTypeArgs            
- Http
- Http
- Https
- Https
- FirewallPolicy Rule Application Protocol Type Http 
- Http
- FirewallPolicy Rule Application Protocol Type Https 
- Https
- Http
- Http
- Https
- Https
- Http
- Http
- Https
- Https
- HTTP
- Http
- HTTPS
- Https
- "Http"
- Http
- "Https"
- Https
FirewallPolicyRuleNetworkProtocol, FirewallPolicyRuleNetworkProtocolArgs          
- TCP
- TCP
- UDP
- UDP
- Any
- Any
- ICMP
- ICMP
- FirewallPolicy Rule Network Protocol TCP 
- TCP
- FirewallPolicy Rule Network Protocol UDP 
- UDP
- FirewallPolicy Rule Network Protocol Any 
- Any
- FirewallPolicy Rule Network Protocol ICMP 
- ICMP
- TCP
- TCP
- UDP
- UDP
- Any
- Any
- ICMP
- ICMP
- TCP
- TCP
- UDP
- UDP
- Any
- Any
- ICMP
- ICMP
- TCP
- TCP
- UDP
- UDP
- ANY
- Any
- ICMP
- ICMP
- "TCP"
- TCP
- "UDP"
- UDP
- "Any"
- Any
- "ICMP"
- ICMP
NatRule, NatRuleArgs    
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- DestinationPorts List<string>
- List of destination ports.
- IpProtocols List<Union<string, Pulumi.Azure Native. Network. Firewall Policy Rule Network Protocol>> 
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- TranslatedAddress string
- The translated address for this NAT rule.
- TranslatedFqdn string
- The translated FQDN for this NAT rule.
- TranslatedPort string
- The translated port for this NAT rule.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- DestinationPorts []string
- List of destination ports.
- IpProtocols []string
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- TranslatedAddress string
- The translated address for this NAT rule.
- TranslatedFqdn string
- The translated FQDN for this NAT rule.
- TranslatedPort string
- The translated port for this NAT rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<Either<String,FirewallPolicy Rule Network Protocol>> 
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- translatedAddress String
- The translated address for this NAT rule.
- translatedFqdn String
- The translated FQDN for this NAT rule.
- translatedPort String
- The translated port for this NAT rule.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- destinationPorts string[]
- List of destination ports.
- ipProtocols (string | FirewallPolicy Rule Network Protocol)[] 
- Array of FirewallPolicyRuleNetworkProtocols.
- name string
- Name of the rule.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- translatedAddress string
- The translated address for this NAT rule.
- translatedFqdn string
- The translated FQDN for this NAT rule.
- translatedPort string
- The translated port for this NAT rule.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- destination_ports Sequence[str]
- List of destination ports.
- ip_protocols Sequence[Union[str, FirewallPolicy Rule Network Protocol]] 
- Array of FirewallPolicyRuleNetworkProtocols.
- name str
- Name of the rule.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- translated_address str
- The translated address for this NAT rule.
- translated_fqdn str
- The translated FQDN for this NAT rule.
- translated_port str
- The translated port for this NAT rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String | "TCP" | "UDP" | "Any" | "ICMP">
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- translatedAddress String
- The translated address for this NAT rule.
- translatedFqdn String
- The translated FQDN for this NAT rule.
- translatedPort String
- The translated port for this NAT rule.
NatRuleResponse, NatRuleResponseArgs      
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- DestinationPorts List<string>
- List of destination ports.
- IpProtocols List<string>
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- TranslatedAddress string
- The translated address for this NAT rule.
- TranslatedFqdn string
- The translated FQDN for this NAT rule.
- TranslatedPort string
- The translated port for this NAT rule.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- DestinationPorts []string
- List of destination ports.
- IpProtocols []string
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- TranslatedAddress string
- The translated address for this NAT rule.
- TranslatedFqdn string
- The translated FQDN for this NAT rule.
- TranslatedPort string
- The translated port for this NAT rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String>
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- translatedAddress String
- The translated address for this NAT rule.
- translatedFqdn String
- The translated FQDN for this NAT rule.
- translatedPort String
- The translated port for this NAT rule.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- destinationPorts string[]
- List of destination ports.
- ipProtocols string[]
- Array of FirewallPolicyRuleNetworkProtocols.
- name string
- Name of the rule.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- translatedAddress string
- The translated address for this NAT rule.
- translatedFqdn string
- The translated FQDN for this NAT rule.
- translatedPort string
- The translated port for this NAT rule.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- destination_ports Sequence[str]
- List of destination ports.
- ip_protocols Sequence[str]
- Array of FirewallPolicyRuleNetworkProtocols.
- name str
- Name of the rule.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- translated_address str
- The translated address for this NAT rule.
- translated_fqdn str
- The translated FQDN for this NAT rule.
- translated_port str
- The translated port for this NAT rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String>
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- translatedAddress String
- The translated address for this NAT rule.
- translatedFqdn String
- The translated FQDN for this NAT rule.
- translatedPort String
- The translated port for this NAT rule.
NetworkRule, NetworkRuleArgs    
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- DestinationFqdns List<string>
- List of destination FQDNs.
- DestinationIp List<string>Groups 
- List of destination IpGroups for this rule.
- DestinationPorts List<string>
- List of destination ports.
- IpProtocols List<Union<string, Pulumi.Azure Native. Network. Firewall Policy Rule Network Protocol>> 
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- DestinationFqdns []string
- List of destination FQDNs.
- DestinationIp []stringGroups 
- List of destination IpGroups for this rule.
- DestinationPorts []string
- List of destination ports.
- IpProtocols []string
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationFqdns List<String>
- List of destination FQDNs.
- destinationIp List<String>Groups 
- List of destination IpGroups for this rule.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<Either<String,FirewallPolicy Rule Network Protocol>> 
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- destinationFqdns string[]
- List of destination FQDNs.
- destinationIp string[]Groups 
- List of destination IpGroups for this rule.
- destinationPorts string[]
- List of destination ports.
- ipProtocols (string | FirewallPolicy Rule Network Protocol)[] 
- Array of FirewallPolicyRuleNetworkProtocols.
- name string
- Name of the rule.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- destination_fqdns Sequence[str]
- List of destination FQDNs.
- destination_ip_ Sequence[str]groups 
- List of destination IpGroups for this rule.
- destination_ports Sequence[str]
- List of destination ports.
- ip_protocols Sequence[Union[str, FirewallPolicy Rule Network Protocol]] 
- Array of FirewallPolicyRuleNetworkProtocols.
- name str
- Name of the rule.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationFqdns List<String>
- List of destination FQDNs.
- destinationIp List<String>Groups 
- List of destination IpGroups for this rule.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String | "TCP" | "UDP" | "Any" | "ICMP">
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
NetworkRuleResponse, NetworkRuleResponseArgs      
- Description string
- Description of the rule.
- DestinationAddresses List<string>
- List of destination IP addresses or Service Tags.
- DestinationFqdns List<string>
- List of destination FQDNs.
- DestinationIp List<string>Groups 
- List of destination IpGroups for this rule.
- DestinationPorts List<string>
- List of destination ports.
- IpProtocols List<string>
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses List<string>
- List of source IP addresses for this rule.
- SourceIp List<string>Groups 
- List of source IpGroups for this rule.
- Description string
- Description of the rule.
- DestinationAddresses []string
- List of destination IP addresses or Service Tags.
- DestinationFqdns []string
- List of destination FQDNs.
- DestinationIp []stringGroups 
- List of destination IpGroups for this rule.
- DestinationPorts []string
- List of destination ports.
- IpProtocols []string
- Array of FirewallPolicyRuleNetworkProtocols.
- Name string
- Name of the rule.
- SourceAddresses []string
- List of source IP addresses for this rule.
- SourceIp []stringGroups 
- List of source IpGroups for this rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationFqdns List<String>
- List of destination FQDNs.
- destinationIp List<String>Groups 
- List of destination IpGroups for this rule.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String>
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
- description string
- Description of the rule.
- destinationAddresses string[]
- List of destination IP addresses or Service Tags.
- destinationFqdns string[]
- List of destination FQDNs.
- destinationIp string[]Groups 
- List of destination IpGroups for this rule.
- destinationPorts string[]
- List of destination ports.
- ipProtocols string[]
- Array of FirewallPolicyRuleNetworkProtocols.
- name string
- Name of the rule.
- sourceAddresses string[]
- List of source IP addresses for this rule.
- sourceIp string[]Groups 
- List of source IpGroups for this rule.
- description str
- Description of the rule.
- destination_addresses Sequence[str]
- List of destination IP addresses or Service Tags.
- destination_fqdns Sequence[str]
- List of destination FQDNs.
- destination_ip_ Sequence[str]groups 
- List of destination IpGroups for this rule.
- destination_ports Sequence[str]
- List of destination ports.
- ip_protocols Sequence[str]
- Array of FirewallPolicyRuleNetworkProtocols.
- name str
- Name of the rule.
- source_addresses Sequence[str]
- List of source IP addresses for this rule.
- source_ip_ Sequence[str]groups 
- List of source IpGroups for this rule.
- description String
- Description of the rule.
- destinationAddresses List<String>
- List of destination IP addresses or Service Tags.
- destinationFqdns List<String>
- List of destination FQDNs.
- destinationIp List<String>Groups 
- List of destination IpGroups for this rule.
- destinationPorts List<String>
- List of destination ports.
- ipProtocols List<String>
- Array of FirewallPolicyRuleNetworkProtocols.
- name String
- Name of the rule.
- sourceAddresses List<String>
- List of source IP addresses for this rule.
- sourceIp List<String>Groups 
- List of source IpGroups for this rule.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:FirewallPolicyRuleCollectionGroupDraft ruleCollectionGroup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}/ruleCollectionGroupDrafts/default 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0