1. Packages
  2. Azure Classic
  3. API Docs
  4. paloalto
  5. NextGenerationFirewallVirtualNetworkStrataCloudManager

We recommend using Azure Native.

Azure v6.32.0 published on Thursday, Feb 5, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Azure v6.32.0 published on Thursday, Feb 5, 2026 by Pulumi

    Manages a Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resource-group",
        location: "westeurope",
    });
    const examplePublicIp = new azure.network.PublicIp("example", {
        name: "example-public-ip",
        location: example.location,
        resourceGroupName: example.name,
        allocationMethod: "Static",
        sku: "Standard",
    });
    const exampleNetworkSecurityGroup = new azure.network.NetworkSecurityGroup("example", {
        name: "example-nsg",
        location: example.location,
        resourceGroupName: example.name,
    });
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
        name: "example-vnet",
        addressSpaces: ["10.0.0.0/16"],
        location: example.location,
        resourceGroupName: example.name,
        tags: {
            environment: "Production",
        },
    });
    const trust = new azure.network.Subnet("trust", {
        name: "example-trust-subnet",
        resourceGroupName: example.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.0.1.0/24"],
        delegations: [{
            name: "trusted",
            serviceDelegation: {
                name: "PaloAltoNetworks.Cloudngfw/firewalls",
                actions: ["Microsoft.Network/virtualNetworks/subnets/join/action"],
            },
        }],
    });
    const trustSubnetNetworkSecurityGroupAssociation = new azure.network.SubnetNetworkSecurityGroupAssociation("trust", {
        subnetId: trust.id,
        networkSecurityGroupId: exampleNetworkSecurityGroup.id,
    });
    const untrust = new azure.network.Subnet("untrust", {
        name: "example-untrust-subnet",
        resourceGroupName: example.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.0.2.0/24"],
        delegations: [{
            name: "untrusted",
            serviceDelegation: {
                name: "PaloAltoNetworks.Cloudngfw/firewalls",
                actions: ["Microsoft.Network/virtualNetworks/subnets/join/action"],
            },
        }],
    });
    const untrustSubnetNetworkSecurityGroupAssociation = new azure.network.SubnetNetworkSecurityGroupAssociation("untrust", {
        subnetId: untrust.id,
        networkSecurityGroupId: exampleNetworkSecurityGroup.id,
    });
    const exampleNextGenerationFirewallVirtualNetworkStrataCloudManager = new azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManager("example", {
        name: "example-ngfwvh",
        resourceGroupName: example.name,
        location: example.location,
        strataCloudManagerTenantName: "example-scm-tenant",
        networkProfile: {
            publicIpAddressIds: [examplePublicIp.id],
            vnetConfiguration: {
                virtualNetworkId: exampleVirtualNetwork.id,
                trustedSubnetId: trust.id,
                untrustedSubnetId: untrust.id,
            },
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resource-group",
        location="westeurope")
    example_public_ip = azure.network.PublicIp("example",
        name="example-public-ip",
        location=example.location,
        resource_group_name=example.name,
        allocation_method="Static",
        sku="Standard")
    example_network_security_group = azure.network.NetworkSecurityGroup("example",
        name="example-nsg",
        location=example.location,
        resource_group_name=example.name)
    example_virtual_network = azure.network.VirtualNetwork("example",
        name="example-vnet",
        address_spaces=["10.0.0.0/16"],
        location=example.location,
        resource_group_name=example.name,
        tags={
            "environment": "Production",
        })
    trust = azure.network.Subnet("trust",
        name="example-trust-subnet",
        resource_group_name=example.name,
        virtual_network_name=example_virtual_network.name,
        address_prefixes=["10.0.1.0/24"],
        delegations=[{
            "name": "trusted",
            "service_delegation": {
                "name": "PaloAltoNetworks.Cloudngfw/firewalls",
                "actions": ["Microsoft.Network/virtualNetworks/subnets/join/action"],
            },
        }])
    trust_subnet_network_security_group_association = azure.network.SubnetNetworkSecurityGroupAssociation("trust",
        subnet_id=trust.id,
        network_security_group_id=example_network_security_group.id)
    untrust = azure.network.Subnet("untrust",
        name="example-untrust-subnet",
        resource_group_name=example.name,
        virtual_network_name=example_virtual_network.name,
        address_prefixes=["10.0.2.0/24"],
        delegations=[{
            "name": "untrusted",
            "service_delegation": {
                "name": "PaloAltoNetworks.Cloudngfw/firewalls",
                "actions": ["Microsoft.Network/virtualNetworks/subnets/join/action"],
            },
        }])
    untrust_subnet_network_security_group_association = azure.network.SubnetNetworkSecurityGroupAssociation("untrust",
        subnet_id=untrust.id,
        network_security_group_id=example_network_security_group.id)
    example_next_generation_firewall_virtual_network_strata_cloud_manager = azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManager("example",
        name="example-ngfwvh",
        resource_group_name=example.name,
        location=example.location,
        strata_cloud_manager_tenant_name="example-scm-tenant",
        network_profile={
            "public_ip_address_ids": [example_public_ip.id],
            "vnet_configuration": {
                "virtual_network_id": example_virtual_network.id,
                "trusted_subnet_id": trust.id,
                "untrusted_subnet_id": untrust.id,
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/paloalto"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resource-group"),
    			Location: pulumi.String("westeurope"),
    		})
    		if err != nil {
    			return err
    		}
    		examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
    			Name:              pulumi.String("example-public-ip"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			AllocationMethod:  pulumi.String("Static"),
    			Sku:               pulumi.String("Standard"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleNetworkSecurityGroup, err := network.NewNetworkSecurityGroup(ctx, "example", &network.NetworkSecurityGroupArgs{
    			Name:              pulumi.String("example-nsg"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
    			Name: pulumi.String("example-vnet"),
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.0.0.0/16"),
    			},
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			Tags: pulumi.StringMap{
    				"environment": pulumi.String("Production"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		trust, err := network.NewSubnet(ctx, "trust", &network.SubnetArgs{
    			Name:               pulumi.String("example-trust-subnet"),
    			ResourceGroupName:  example.Name,
    			VirtualNetworkName: exampleVirtualNetwork.Name,
    			AddressPrefixes: pulumi.StringArray{
    				pulumi.String("10.0.1.0/24"),
    			},
    			Delegations: network.SubnetDelegationArray{
    				&network.SubnetDelegationArgs{
    					Name: pulumi.String("trusted"),
    					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
    						Name: pulumi.String("PaloAltoNetworks.Cloudngfw/firewalls"),
    						Actions: pulumi.StringArray{
    							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewSubnetNetworkSecurityGroupAssociation(ctx, "trust", &network.SubnetNetworkSecurityGroupAssociationArgs{
    			SubnetId:               trust.ID(),
    			NetworkSecurityGroupId: exampleNetworkSecurityGroup.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		untrust, err := network.NewSubnet(ctx, "untrust", &network.SubnetArgs{
    			Name:               pulumi.String("example-untrust-subnet"),
    			ResourceGroupName:  example.Name,
    			VirtualNetworkName: exampleVirtualNetwork.Name,
    			AddressPrefixes: pulumi.StringArray{
    				pulumi.String("10.0.2.0/24"),
    			},
    			Delegations: network.SubnetDelegationArray{
    				&network.SubnetDelegationArgs{
    					Name: pulumi.String("untrusted"),
    					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
    						Name: pulumi.String("PaloAltoNetworks.Cloudngfw/firewalls"),
    						Actions: pulumi.StringArray{
    							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewSubnetNetworkSecurityGroupAssociation(ctx, "untrust", &network.SubnetNetworkSecurityGroupAssociationArgs{
    			SubnetId:               untrust.ID(),
    			NetworkSecurityGroupId: exampleNetworkSecurityGroup.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = paloalto.NewNextGenerationFirewallVirtualNetworkStrataCloudManager(ctx, "example", &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs{
    			Name:                         pulumi.String("example-ngfwvh"),
    			ResourceGroupName:            example.Name,
    			Location:                     example.Location,
    			StrataCloudManagerTenantName: pulumi.String("example-scm-tenant"),
    			NetworkProfile: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs{
    				PublicIpAddressIds: pulumi.StringArray{
    					examplePublicIp.ID(),
    				},
    				VnetConfiguration: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs{
    					VirtualNetworkId:  exampleVirtualNetwork.ID(),
    					TrustedSubnetId:   trust.ID(),
    					UntrustedSubnetId: untrust.ID(),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resource-group",
            Location = "westeurope",
        });
    
        var examplePublicIp = new Azure.Network.PublicIp("example", new()
        {
            Name = "example-public-ip",
            Location = example.Location,
            ResourceGroupName = example.Name,
            AllocationMethod = "Static",
            Sku = "Standard",
        });
    
        var exampleNetworkSecurityGroup = new Azure.Network.NetworkSecurityGroup("example", new()
        {
            Name = "example-nsg",
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
        var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
        {
            Name = "example-vnet",
            AddressSpaces = new[]
            {
                "10.0.0.0/16",
            },
            Location = example.Location,
            ResourceGroupName = example.Name,
            Tags = 
            {
                { "environment", "Production" },
            },
        });
    
        var trust = new Azure.Network.Subnet("trust", new()
        {
            Name = "example-trust-subnet",
            ResourceGroupName = example.Name,
            VirtualNetworkName = exampleVirtualNetwork.Name,
            AddressPrefixes = new[]
            {
                "10.0.1.0/24",
            },
            Delegations = new[]
            {
                new Azure.Network.Inputs.SubnetDelegationArgs
                {
                    Name = "trusted",
                    ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                    {
                        Name = "PaloAltoNetworks.Cloudngfw/firewalls",
                        Actions = new[]
                        {
                            "Microsoft.Network/virtualNetworks/subnets/join/action",
                        },
                    },
                },
            },
        });
    
        var trustSubnetNetworkSecurityGroupAssociation = new Azure.Network.SubnetNetworkSecurityGroupAssociation("trust", new()
        {
            SubnetId = trust.Id,
            NetworkSecurityGroupId = exampleNetworkSecurityGroup.Id,
        });
    
        var untrust = new Azure.Network.Subnet("untrust", new()
        {
            Name = "example-untrust-subnet",
            ResourceGroupName = example.Name,
            VirtualNetworkName = exampleVirtualNetwork.Name,
            AddressPrefixes = new[]
            {
                "10.0.2.0/24",
            },
            Delegations = new[]
            {
                new Azure.Network.Inputs.SubnetDelegationArgs
                {
                    Name = "untrusted",
                    ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                    {
                        Name = "PaloAltoNetworks.Cloudngfw/firewalls",
                        Actions = new[]
                        {
                            "Microsoft.Network/virtualNetworks/subnets/join/action",
                        },
                    },
                },
            },
        });
    
        var untrustSubnetNetworkSecurityGroupAssociation = new Azure.Network.SubnetNetworkSecurityGroupAssociation("untrust", new()
        {
            SubnetId = untrust.Id,
            NetworkSecurityGroupId = exampleNetworkSecurityGroup.Id,
        });
    
        var exampleNextGenerationFirewallVirtualNetworkStrataCloudManager = new Azure.PaloAlto.NextGenerationFirewallVirtualNetworkStrataCloudManager("example", new()
        {
            Name = "example-ngfwvh",
            ResourceGroupName = example.Name,
            Location = example.Location,
            StrataCloudManagerTenantName = "example-scm-tenant",
            NetworkProfile = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
            {
                PublicIpAddressIds = new[]
                {
                    examplePublicIp.Id,
                },
                VnetConfiguration = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs
                {
                    VirtualNetworkId = exampleVirtualNetwork.Id,
                    TrustedSubnetId = trust.Id,
                    UntrustedSubnetId = untrust.Id,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.network.PublicIp;
    import com.pulumi.azure.network.PublicIpArgs;
    import com.pulumi.azure.network.NetworkSecurityGroup;
    import com.pulumi.azure.network.NetworkSecurityGroupArgs;
    import com.pulumi.azure.network.VirtualNetwork;
    import com.pulumi.azure.network.VirtualNetworkArgs;
    import com.pulumi.azure.network.Subnet;
    import com.pulumi.azure.network.SubnetArgs;
    import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
    import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
    import com.pulumi.azure.network.SubnetNetworkSecurityGroupAssociation;
    import com.pulumi.azure.network.SubnetNetworkSecurityGroupAssociationArgs;
    import com.pulumi.azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManager;
    import com.pulumi.azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs;
    import com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs;
    import com.pulumi.azure.paloalto.inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
                .name("example-resource-group")
                .location("westeurope")
                .build());
    
            var examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()
                .name("example-public-ip")
                .location(example.location())
                .resourceGroupName(example.name())
                .allocationMethod("Static")
                .sku("Standard")
                .build());
    
            var exampleNetworkSecurityGroup = new NetworkSecurityGroup("exampleNetworkSecurityGroup", NetworkSecurityGroupArgs.builder()
                .name("example-nsg")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
                .name("example-vnet")
                .addressSpaces("10.0.0.0/16")
                .location(example.location())
                .resourceGroupName(example.name())
                .tags(Map.of("environment", "Production"))
                .build());
    
            var trust = new Subnet("trust", SubnetArgs.builder()
                .name("example-trust-subnet")
                .resourceGroupName(example.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.0.1.0/24")
                .delegations(SubnetDelegationArgs.builder()
                    .name("trusted")
                    .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
                        .name("PaloAltoNetworks.Cloudngfw/firewalls")
                        .actions("Microsoft.Network/virtualNetworks/subnets/join/action")
                        .build())
                    .build())
                .build());
    
            var trustSubnetNetworkSecurityGroupAssociation = new SubnetNetworkSecurityGroupAssociation("trustSubnetNetworkSecurityGroupAssociation", SubnetNetworkSecurityGroupAssociationArgs.builder()
                .subnetId(trust.id())
                .networkSecurityGroupId(exampleNetworkSecurityGroup.id())
                .build());
    
            var untrust = new Subnet("untrust", SubnetArgs.builder()
                .name("example-untrust-subnet")
                .resourceGroupName(example.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.0.2.0/24")
                .delegations(SubnetDelegationArgs.builder()
                    .name("untrusted")
                    .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
                        .name("PaloAltoNetworks.Cloudngfw/firewalls")
                        .actions("Microsoft.Network/virtualNetworks/subnets/join/action")
                        .build())
                    .build())
                .build());
    
            var untrustSubnetNetworkSecurityGroupAssociation = new SubnetNetworkSecurityGroupAssociation("untrustSubnetNetworkSecurityGroupAssociation", SubnetNetworkSecurityGroupAssociationArgs.builder()
                .subnetId(untrust.id())
                .networkSecurityGroupId(exampleNetworkSecurityGroup.id())
                .build());
    
            var exampleNextGenerationFirewallVirtualNetworkStrataCloudManager = new NextGenerationFirewallVirtualNetworkStrataCloudManager("exampleNextGenerationFirewallVirtualNetworkStrataCloudManager", NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs.builder()
                .name("example-ngfwvh")
                .resourceGroupName(example.name())
                .location(example.location())
                .strataCloudManagerTenantName("example-scm-tenant")
                .networkProfile(NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs.builder()
                    .publicIpAddressIds(examplePublicIp.id())
                    .vnetConfiguration(NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs.builder()
                        .virtualNetworkId(exampleVirtualNetwork.id())
                        .trustedSubnetId(trust.id())
                        .untrustedSubnetId(untrust.id())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resource-group
          location: westeurope
      examplePublicIp:
        type: azure:network:PublicIp
        name: example
        properties:
          name: example-public-ip
          location: ${example.location}
          resourceGroupName: ${example.name}
          allocationMethod: Static
          sku: Standard
      exampleNetworkSecurityGroup:
        type: azure:network:NetworkSecurityGroup
        name: example
        properties:
          name: example-nsg
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        name: example
        properties:
          name: example-vnet
          addressSpaces:
            - 10.0.0.0/16
          location: ${example.location}
          resourceGroupName: ${example.name}
          tags:
            environment: Production
      trust:
        type: azure:network:Subnet
        properties:
          name: example-trust-subnet
          resourceGroupName: ${example.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.0.1.0/24
          delegations:
            - name: trusted
              serviceDelegation:
                name: PaloAltoNetworks.Cloudngfw/firewalls
                actions:
                  - Microsoft.Network/virtualNetworks/subnets/join/action
      trustSubnetNetworkSecurityGroupAssociation:
        type: azure:network:SubnetNetworkSecurityGroupAssociation
        name: trust
        properties:
          subnetId: ${trust.id}
          networkSecurityGroupId: ${exampleNetworkSecurityGroup.id}
      untrust:
        type: azure:network:Subnet
        properties:
          name: example-untrust-subnet
          resourceGroupName: ${example.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.0.2.0/24
          delegations:
            - name: untrusted
              serviceDelegation:
                name: PaloAltoNetworks.Cloudngfw/firewalls
                actions:
                  - Microsoft.Network/virtualNetworks/subnets/join/action
      untrustSubnetNetworkSecurityGroupAssociation:
        type: azure:network:SubnetNetworkSecurityGroupAssociation
        name: untrust
        properties:
          subnetId: ${untrust.id}
          networkSecurityGroupId: ${exampleNetworkSecurityGroup.id}
      exampleNextGenerationFirewallVirtualNetworkStrataCloudManager:
        type: azure:paloalto:NextGenerationFirewallVirtualNetworkStrataCloudManager
        name: example
        properties:
          name: example-ngfwvh
          resourceGroupName: ${example.name}
          location: ${example.location}
          strataCloudManagerTenantName: example-scm-tenant
          networkProfile:
            publicIpAddressIds:
              - ${examplePublicIp.id}
            vnetConfiguration:
              virtualNetworkId: ${exampleVirtualNetwork.id}
              trustedSubnetId: ${trust.id}
              untrustedSubnetId: ${untrust.id}
    

    API Providers

    This resource uses the following Azure API Providers:

    • PaloAltoNetworks.Cloudngfw - 2025-05-23

    Create NextGenerationFirewallVirtualNetworkStrataCloudManager Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NextGenerationFirewallVirtualNetworkStrataCloudManager(name: string, args: NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs, opts?: CustomResourceOptions);
    @overload
    def NextGenerationFirewallVirtualNetworkStrataCloudManager(resource_name: str,
                                                               args: NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs,
                                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def NextGenerationFirewallVirtualNetworkStrataCloudManager(resource_name: str,
                                                               opts: Optional[ResourceOptions] = None,
                                                               network_profile: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs] = None,
                                                               resource_group_name: Optional[str] = None,
                                                               strata_cloud_manager_tenant_name: Optional[str] = None,
                                                               destination_nats: Optional[Sequence[NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs]] = None,
                                                               dns_settings: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs] = None,
                                                               identity: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs] = None,
                                                               location: Optional[str] = None,
                                                               marketplace_offer_id: Optional[str] = None,
                                                               name: Optional[str] = None,
                                                               plan_id: Optional[str] = None,
                                                               tags: Optional[Mapping[str, str]] = None)
    func NewNextGenerationFirewallVirtualNetworkStrataCloudManager(ctx *Context, name string, args NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs, opts ...ResourceOption) (*NextGenerationFirewallVirtualNetworkStrataCloudManager, error)
    public NextGenerationFirewallVirtualNetworkStrataCloudManager(string name, NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs args, CustomResourceOptions? opts = null)
    public NextGenerationFirewallVirtualNetworkStrataCloudManager(String name, NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs args)
    public NextGenerationFirewallVirtualNetworkStrataCloudManager(String name, NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs args, CustomResourceOptions options)
    
    type: azure:paloalto:NextGenerationFirewallVirtualNetworkStrataCloudManager
    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 NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs
    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 NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs
    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 NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs
    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 nextGenerationFirewallVirtualNetworkStrataCloudManagerResource = new Azure.PaloAlto.NextGenerationFirewallVirtualNetworkStrataCloudManager("nextGenerationFirewallVirtualNetworkStrataCloudManagerResource", new()
    {
        NetworkProfile = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
        {
            PublicIpAddressIds = new[]
            {
                "string",
            },
            VnetConfiguration = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs
            {
                VirtualNetworkId = "string",
                IpOfTrustForUserDefinedRoutes = "string",
                TrustedSubnetId = "string",
                UntrustedSubnetId = "string",
            },
            EgressNatIpAddressIds = new[]
            {
                "string",
            },
            EgressNatIpAddresses = new[]
            {
                "string",
            },
            PublicIpAddresses = new[]
            {
                "string",
            },
            TrustedAddressRanges = new[]
            {
                "string",
            },
        },
        ResourceGroupName = "string",
        StrataCloudManagerTenantName = "string",
        DestinationNats = new[]
        {
            new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs
            {
                Name = "string",
                Protocol = "string",
                BackendConfig = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfigArgs
                {
                    Port = 0,
                    PublicIpAddress = "string",
                },
                FrontendConfig = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfigArgs
                {
                    Port = 0,
                    PublicIpAddressId = "string",
                },
            },
        },
        DnsSettings = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs
        {
            AzureDnsServers = new[]
            {
                "string",
            },
            DnsServers = new[]
            {
                "string",
            },
            UseAzureDns = false,
        },
        Identity = new Azure.PaloAlto.Inputs.NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs
        {
            IdentityIds = new[]
            {
                "string",
            },
            Type = "string",
        },
        Location = "string",
        MarketplaceOfferId = "string",
        Name = "string",
        PlanId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := paloalto.NewNextGenerationFirewallVirtualNetworkStrataCloudManager(ctx, "nextGenerationFirewallVirtualNetworkStrataCloudManagerResource", &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs{
    	NetworkProfile: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs{
    		PublicIpAddressIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		VnetConfiguration: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs{
    			VirtualNetworkId:              pulumi.String("string"),
    			IpOfTrustForUserDefinedRoutes: pulumi.String("string"),
    			TrustedSubnetId:               pulumi.String("string"),
    			UntrustedSubnetId:             pulumi.String("string"),
    		},
    		EgressNatIpAddressIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		EgressNatIpAddresses: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		PublicIpAddresses: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		TrustedAddressRanges: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	ResourceGroupName:            pulumi.String("string"),
    	StrataCloudManagerTenantName: pulumi.String("string"),
    	DestinationNats: paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArray{
    		&paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs{
    			Name:     pulumi.String("string"),
    			Protocol: pulumi.String("string"),
    			BackendConfig: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfigArgs{
    				Port:            pulumi.Int(0),
    				PublicIpAddress: pulumi.String("string"),
    			},
    			FrontendConfig: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfigArgs{
    				Port:              pulumi.Int(0),
    				PublicIpAddressId: pulumi.String("string"),
    			},
    		},
    	},
    	DnsSettings: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs{
    		AzureDnsServers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		DnsServers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		UseAzureDns: pulumi.Bool(false),
    	},
    	Identity: &paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs{
    		IdentityIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Type: pulumi.String("string"),
    	},
    	Location:           pulumi.String("string"),
    	MarketplaceOfferId: pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	PlanId:             pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var nextGenerationFirewallVirtualNetworkStrataCloudManagerResource = new NextGenerationFirewallVirtualNetworkStrataCloudManager("nextGenerationFirewallVirtualNetworkStrataCloudManagerResource", NextGenerationFirewallVirtualNetworkStrataCloudManagerArgs.builder()
        .networkProfile(NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs.builder()
            .publicIpAddressIds("string")
            .vnetConfiguration(NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs.builder()
                .virtualNetworkId("string")
                .ipOfTrustForUserDefinedRoutes("string")
                .trustedSubnetId("string")
                .untrustedSubnetId("string")
                .build())
            .egressNatIpAddressIds("string")
            .egressNatIpAddresses("string")
            .publicIpAddresses("string")
            .trustedAddressRanges("string")
            .build())
        .resourceGroupName("string")
        .strataCloudManagerTenantName("string")
        .destinationNats(NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs.builder()
            .name("string")
            .protocol("string")
            .backendConfig(NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfigArgs.builder()
                .port(0)
                .publicIpAddress("string")
                .build())
            .frontendConfig(NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfigArgs.builder()
                .port(0)
                .publicIpAddressId("string")
                .build())
            .build())
        .dnsSettings(NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs.builder()
            .azureDnsServers("string")
            .dnsServers("string")
            .useAzureDns(false)
            .build())
        .identity(NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs.builder()
            .identityIds("string")
            .type("string")
            .build())
        .location("string")
        .marketplaceOfferId("string")
        .name("string")
        .planId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    next_generation_firewall_virtual_network_strata_cloud_manager_resource = azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManager("nextGenerationFirewallVirtualNetworkStrataCloudManagerResource",
        network_profile={
            "public_ip_address_ids": ["string"],
            "vnet_configuration": {
                "virtual_network_id": "string",
                "ip_of_trust_for_user_defined_routes": "string",
                "trusted_subnet_id": "string",
                "untrusted_subnet_id": "string",
            },
            "egress_nat_ip_address_ids": ["string"],
            "egress_nat_ip_addresses": ["string"],
            "public_ip_addresses": ["string"],
            "trusted_address_ranges": ["string"],
        },
        resource_group_name="string",
        strata_cloud_manager_tenant_name="string",
        destination_nats=[{
            "name": "string",
            "protocol": "string",
            "backend_config": {
                "port": 0,
                "public_ip_address": "string",
            },
            "frontend_config": {
                "port": 0,
                "public_ip_address_id": "string",
            },
        }],
        dns_settings={
            "azure_dns_servers": ["string"],
            "dns_servers": ["string"],
            "use_azure_dns": False,
        },
        identity={
            "identity_ids": ["string"],
            "type": "string",
        },
        location="string",
        marketplace_offer_id="string",
        name="string",
        plan_id="string",
        tags={
            "string": "string",
        })
    
    const nextGenerationFirewallVirtualNetworkStrataCloudManagerResource = new azure.paloalto.NextGenerationFirewallVirtualNetworkStrataCloudManager("nextGenerationFirewallVirtualNetworkStrataCloudManagerResource", {
        networkProfile: {
            publicIpAddressIds: ["string"],
            vnetConfiguration: {
                virtualNetworkId: "string",
                ipOfTrustForUserDefinedRoutes: "string",
                trustedSubnetId: "string",
                untrustedSubnetId: "string",
            },
            egressNatIpAddressIds: ["string"],
            egressNatIpAddresses: ["string"],
            publicIpAddresses: ["string"],
            trustedAddressRanges: ["string"],
        },
        resourceGroupName: "string",
        strataCloudManagerTenantName: "string",
        destinationNats: [{
            name: "string",
            protocol: "string",
            backendConfig: {
                port: 0,
                publicIpAddress: "string",
            },
            frontendConfig: {
                port: 0,
                publicIpAddressId: "string",
            },
        }],
        dnsSettings: {
            azureDnsServers: ["string"],
            dnsServers: ["string"],
            useAzureDns: false,
        },
        identity: {
            identityIds: ["string"],
            type: "string",
        },
        location: "string",
        marketplaceOfferId: "string",
        name: "string",
        planId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:paloalto:NextGenerationFirewallVirtualNetworkStrataCloudManager
    properties:
        destinationNats:
            - backendConfig:
                port: 0
                publicIpAddress: string
              frontendConfig:
                port: 0
                publicIpAddressId: string
              name: string
              protocol: string
        dnsSettings:
            azureDnsServers:
                - string
            dnsServers:
                - string
            useAzureDns: false
        identity:
            identityIds:
                - string
            type: string
        location: string
        marketplaceOfferId: string
        name: string
        networkProfile:
            egressNatIpAddressIds:
                - string
            egressNatIpAddresses:
                - string
            publicIpAddressIds:
                - string
            publicIpAddresses:
                - string
            trustedAddressRanges:
                - string
            vnetConfiguration:
                ipOfTrustForUserDefinedRoutes: string
                trustedSubnetId: string
                untrustedSubnetId: string
                virtualNetworkId: string
        planId: string
        resourceGroupName: string
        strataCloudManagerTenantName: string
        tags:
            string: string
    

    NextGenerationFirewallVirtualNetworkStrataCloudManager 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 NextGenerationFirewallVirtualNetworkStrataCloudManager resource accepts the following input properties:

    NetworkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    StrataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    DestinationNats List<NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat>
    One or more destination_nat blocks as defined below.
    DnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    Identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    Location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    MarketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    PlanId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    NetworkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
    A network_profile block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    StrataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    DestinationNats []NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs
    One or more destination_nat blocks as defined below.
    DnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs
    A dns_settings block as defined below.
    Identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs
    An identity block as defined below.
    Location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    MarketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    PlanId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    Tags map[string]string
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    networkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    resourceGroupName String
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName String
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    destinationNats List<NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat>
    One or more destination_nat blocks as defined below.
    dnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    location String
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId String
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    planId String
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    networkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    resourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    destinationNats NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat[]
    One or more destination_nat blocks as defined below.
    dnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    planId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    network_profile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
    A network_profile block as defined below.
    resource_group_name str
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strata_cloud_manager_tenant_name str
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    destination_nats Sequence[NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs]
    One or more destination_nat blocks as defined below.
    dns_settings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs
    An identity block as defined below.
    location str
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplace_offer_id str
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name str
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    plan_id str
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    networkProfile Property Map
    A network_profile block as defined below.
    resourceGroupName String
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName String
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    destinationNats List<Property Map>
    One or more destination_nat blocks as defined below.
    dnsSettings Property Map
    A dns_settings block as defined below.
    identity Property Map
    An identity block as defined below.
    location String
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId String
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    planId String
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    tags Map<String>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NextGenerationFirewallVirtualNetworkStrataCloudManager resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NextGenerationFirewallVirtualNetworkStrataCloudManager Resource

    Get an existing NextGenerationFirewallVirtualNetworkStrataCloudManager resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NextGenerationFirewallVirtualNetworkStrataCloudManagerState, opts?: CustomResourceOptions): NextGenerationFirewallVirtualNetworkStrataCloudManager
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            destination_nats: Optional[Sequence[NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs]] = None,
            dns_settings: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs] = None,
            identity: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs] = None,
            location: Optional[str] = None,
            marketplace_offer_id: Optional[str] = None,
            name: Optional[str] = None,
            network_profile: Optional[NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs] = None,
            plan_id: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            strata_cloud_manager_tenant_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> NextGenerationFirewallVirtualNetworkStrataCloudManager
    func GetNextGenerationFirewallVirtualNetworkStrataCloudManager(ctx *Context, name string, id IDInput, state *NextGenerationFirewallVirtualNetworkStrataCloudManagerState, opts ...ResourceOption) (*NextGenerationFirewallVirtualNetworkStrataCloudManager, error)
    public static NextGenerationFirewallVirtualNetworkStrataCloudManager Get(string name, Input<string> id, NextGenerationFirewallVirtualNetworkStrataCloudManagerState? state, CustomResourceOptions? opts = null)
    public static NextGenerationFirewallVirtualNetworkStrataCloudManager get(String name, Output<String> id, NextGenerationFirewallVirtualNetworkStrataCloudManagerState state, CustomResourceOptions options)
    resources:  _:    type: azure:paloalto:NextGenerationFirewallVirtualNetworkStrataCloudManager    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DestinationNats List<NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat>
    One or more destination_nat blocks as defined below.
    DnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    Identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    Location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    MarketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    NetworkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    PlanId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    ResourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    StrataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    DestinationNats []NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs
    One or more destination_nat blocks as defined below.
    DnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs
    A dns_settings block as defined below.
    Identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs
    An identity block as defined below.
    Location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    MarketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    NetworkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
    A network_profile block as defined below.
    PlanId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    ResourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    StrataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    Tags map[string]string
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    destinationNats List<NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat>
    One or more destination_nat blocks as defined below.
    dnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    location String
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId String
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    networkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    planId String
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    resourceGroupName String
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName String
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    destinationNats NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat[]
    One or more destination_nat blocks as defined below.
    dnsSettings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity
    An identity block as defined below.
    location string
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId string
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    networkProfile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile
    A network_profile block as defined below.
    planId string
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    resourceGroupName string
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName string
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    destination_nats Sequence[NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs]
    One or more destination_nat blocks as defined below.
    dns_settings NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs
    A dns_settings block as defined below.
    identity NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs
    An identity block as defined below.
    location str
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplace_offer_id str
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name str
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    network_profile NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs
    A network_profile block as defined below.
    plan_id str
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    resource_group_name str
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strata_cloud_manager_tenant_name str
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.
    destinationNats List<Property Map>
    One or more destination_nat blocks as defined below.
    dnsSettings Property Map
    A dns_settings block as defined below.
    identity Property Map
    An identity block as defined below.
    location String
    The Azure Region where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    marketplaceOfferId String
    The marketplace offer ID. Defaults to pan_swfw_cloud_ngfw. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    networkProfile Property Map
    A network_profile block as defined below.
    planId String
    The billing plan ID as published by Liftr.PAN. Defaults to panw-cngfw-payg.
    resourceGroupName String
    The name of the Resource Group where the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager should exist. Changing this forces a new Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager to be created.
    strataCloudManagerTenantName String
    Strata Cloud Manager name which is intended to manage the policy for this firewall.
    tags Map<String>
    A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall Virtual Network Strata Cloud Manager.

    Supporting Types

    NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNat, NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatArgs

    Name string
    The name which should be used for this NAT.
    Protocol string
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    BackendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig
    One or more backend_config block as defined below.
    FrontendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig
    One or more frontend_config block as defined below.
    Name string
    The name which should be used for this NAT.
    Protocol string
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    BackendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig
    One or more backend_config block as defined below.
    FrontendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig
    One or more frontend_config block as defined below.
    name String
    The name which should be used for this NAT.
    protocol String
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    backendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig
    One or more backend_config block as defined below.
    frontendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig
    One or more frontend_config block as defined below.
    name string
    The name which should be used for this NAT.
    protocol string
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    backendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig
    One or more backend_config block as defined below.
    frontendConfig NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig
    One or more frontend_config block as defined below.
    name str
    The name which should be used for this NAT.
    protocol str
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    backend_config NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig
    One or more backend_config block as defined below.
    frontend_config NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig
    One or more frontend_config block as defined below.
    name String
    The name which should be used for this NAT.
    protocol String
    The protocol used for this Destination NAT. Possible values include TCP and UDP.
    backendConfig Property Map
    One or more backend_config block as defined below.
    frontendConfig Property Map
    One or more frontend_config block as defined below.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfig, NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatBackendConfigArgs

    Port int
    The port number to send traffic to.
    PublicIpAddress string
    The public IP Address to send the traffic to.
    Port int
    The port number to send traffic to.
    PublicIpAddress string
    The public IP Address to send the traffic to.
    port Integer
    The port number to send traffic to.
    publicIpAddress String
    The public IP Address to send the traffic to.
    port number
    The port number to send traffic to.
    publicIpAddress string
    The public IP Address to send the traffic to.
    port int
    The port number to send traffic to.
    public_ip_address str
    The public IP Address to send the traffic to.
    port Number
    The port number to send traffic to.
    publicIpAddress String
    The public IP Address to send the traffic to.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfig, NextGenerationFirewallVirtualNetworkStrataCloudManagerDestinationNatFrontendConfigArgs

    Port int
    The port on which traffic will be received.
    PublicIpAddressId string
    The ID of the Public IP Address resource the traffic will be received on.
    Port int
    The port on which traffic will be received.
    PublicIpAddressId string
    The ID of the Public IP Address resource the traffic will be received on.
    port Integer
    The port on which traffic will be received.
    publicIpAddressId String
    The ID of the Public IP Address resource the traffic will be received on.
    port number
    The port on which traffic will be received.
    publicIpAddressId string
    The ID of the Public IP Address resource the traffic will be received on.
    port int
    The port on which traffic will be received.
    public_ip_address_id str
    The ID of the Public IP Address resource the traffic will be received on.
    port Number
    The port on which traffic will be received.
    publicIpAddressId String
    The ID of the Public IP Address resource the traffic will be received on.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettings, NextGenerationFirewallVirtualNetworkStrataCloudManagerDnsSettingsArgs

    AzureDnsServers List<string>
    DnsServers List<string>
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    UseAzureDns bool
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.
    AzureDnsServers []string
    DnsServers []string
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    UseAzureDns bool
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.
    azureDnsServers List<String>
    dnsServers List<String>
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    useAzureDns Boolean
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.
    azureDnsServers string[]
    dnsServers string[]
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    useAzureDns boolean
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.
    azure_dns_servers Sequence[str]
    dns_servers Sequence[str]
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    use_azure_dns bool
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.
    azureDnsServers List<String>
    dnsServers List<String>
    A list of DNS servers to use. Conflicts with dns_settings[0].use_azure_dns.
    useAzureDns Boolean
    Should the Firewall use Azure Supplied DNS servers. Conflicts with dns_settings[0].dns_servers. Defaults to false.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentity, NextGenerationFirewallVirtualNetworkStrataCloudManagerIdentityArgs

    IdentityIds List<string>
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    Type string
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.
    IdentityIds []string
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    Type string
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.
    identityIds List<String>
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    type String
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.
    identityIds string[]
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    type string
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.
    identity_ids Sequence[str]
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    type str
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.
    identityIds List<String>
    A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
    type String
    The type of Managed Service Identity that should be configured on this App Configuration. The only possible value is UserAssigned.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfile, NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileArgs

    PublicIpAddressIds List<string>
    A list of Azure Public IP Address IDs.
    VnetConfiguration NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration
    A vnet_configuration block as defined below.
    EgressNatIpAddressIds List<string>
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    EgressNatIpAddresses List<string>
    A list of Egress NAT IP addresses.
    PublicIpAddresses List<string>
    A list of public IPs associated with this Next Generation Firewall.
    TrustedAddressRanges List<string>
    A list of trusted ranges to use for the Network.
    PublicIpAddressIds []string
    A list of Azure Public IP Address IDs.
    VnetConfiguration NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration
    A vnet_configuration block as defined below.
    EgressNatIpAddressIds []string
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    EgressNatIpAddresses []string
    A list of Egress NAT IP addresses.
    PublicIpAddresses []string
    A list of public IPs associated with this Next Generation Firewall.
    TrustedAddressRanges []string
    A list of trusted ranges to use for the Network.
    publicIpAddressIds List<String>
    A list of Azure Public IP Address IDs.
    vnetConfiguration NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration
    A vnet_configuration block as defined below.
    egressNatIpAddressIds List<String>
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    egressNatIpAddresses List<String>
    A list of Egress NAT IP addresses.
    publicIpAddresses List<String>
    A list of public IPs associated with this Next Generation Firewall.
    trustedAddressRanges List<String>
    A list of trusted ranges to use for the Network.
    publicIpAddressIds string[]
    A list of Azure Public IP Address IDs.
    vnetConfiguration NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration
    A vnet_configuration block as defined below.
    egressNatIpAddressIds string[]
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    egressNatIpAddresses string[]
    A list of Egress NAT IP addresses.
    publicIpAddresses string[]
    A list of public IPs associated with this Next Generation Firewall.
    trustedAddressRanges string[]
    A list of trusted ranges to use for the Network.
    public_ip_address_ids Sequence[str]
    A list of Azure Public IP Address IDs.
    vnet_configuration NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration
    A vnet_configuration block as defined below.
    egress_nat_ip_address_ids Sequence[str]
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    egress_nat_ip_addresses Sequence[str]
    A list of Egress NAT IP addresses.
    public_ip_addresses Sequence[str]
    A list of public IPs associated with this Next Generation Firewall.
    trusted_address_ranges Sequence[str]
    A list of trusted ranges to use for the Network.
    publicIpAddressIds List<String>
    A list of Azure Public IP Address IDs.
    vnetConfiguration Property Map
    A vnet_configuration block as defined below.
    egressNatIpAddressIds List<String>
    A list of Azure Public IP Address IDs that can be used for Egress (Source) Network Address Translation.
    egressNatIpAddresses List<String>
    A list of Egress NAT IP addresses.
    publicIpAddresses List<String>
    A list of public IPs associated with this Next Generation Firewall.
    trustedAddressRanges List<String>
    A list of trusted ranges to use for the Network.

    NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfiguration, NextGenerationFirewallVirtualNetworkStrataCloudManagerNetworkProfileVnetConfigurationArgs

    VirtualNetworkId string
    The ID of the Virtual Network.
    IpOfTrustForUserDefinedRoutes string
    The IP of trusted subnet for UDR.
    TrustedSubnetId string
    The ID of the Trust subnet.
    UntrustedSubnetId string
    The ID of the UnTrust subnet.
    VirtualNetworkId string
    The ID of the Virtual Network.
    IpOfTrustForUserDefinedRoutes string
    The IP of trusted subnet for UDR.
    TrustedSubnetId string
    The ID of the Trust subnet.
    UntrustedSubnetId string
    The ID of the UnTrust subnet.
    virtualNetworkId String
    The ID of the Virtual Network.
    ipOfTrustForUserDefinedRoutes String
    The IP of trusted subnet for UDR.
    trustedSubnetId String
    The ID of the Trust subnet.
    untrustedSubnetId String
    The ID of the UnTrust subnet.
    virtualNetworkId string
    The ID of the Virtual Network.
    ipOfTrustForUserDefinedRoutes string
    The IP of trusted subnet for UDR.
    trustedSubnetId string
    The ID of the Trust subnet.
    untrustedSubnetId string
    The ID of the UnTrust subnet.
    virtual_network_id str
    The ID of the Virtual Network.
    ip_of_trust_for_user_defined_routes str
    The IP of trusted subnet for UDR.
    trusted_subnet_id str
    The ID of the Trust subnet.
    untrusted_subnet_id str
    The ID of the UnTrust subnet.
    virtualNetworkId String
    The ID of the Virtual Network.
    ipOfTrustForUserDefinedRoutes String
    The IP of trusted subnet for UDR.
    trustedSubnetId String
    The ID of the Trust subnet.
    untrustedSubnetId String
    The ID of the UnTrust subnet.

    Import

    Palo Alto Next Generation Firewall Virtual Network Strata Cloud Managers can be imported using the resource id, e.g.

    $ pulumi import azure:paloalto/nextGenerationFirewallVirtualNetworkStrataCloudManager:NextGenerationFirewallVirtualNetworkStrataCloudManager example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/firewalls/myVNetStrataCloudManagerFW
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.32.0 published on Thursday, Feb 5, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate