1. Packages
  2. Panos Provider
  3. API Docs
  4. TunnelInterface
panos 2.0.0 published on Tuesday, Apr 15, 2025 by paloaltonetworks

panos.TunnelInterface

Explore with Pulumi AI

panos logo
panos 2.0.0 published on Tuesday, Apr 15, 2025 by paloaltonetworks

    Create TunnelInterface Resource

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

    Constructor syntax

    new TunnelInterface(name: string, args: TunnelInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def TunnelInterface(resource_name: str,
                        args: TunnelInterfaceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def TunnelInterface(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        location: Optional[TunnelInterfaceLocationArgs] = None,
                        bonjour: Optional[TunnelInterfaceBonjourArgs] = None,
                        comment: Optional[str] = None,
                        df_ignore: Optional[bool] = None,
                        interface_management_profile: Optional[str] = None,
                        ips: Optional[Sequence[TunnelInterfaceIpArgs]] = None,
                        ipv6: Optional[TunnelInterfaceIpv6Args] = None,
                        link_tag: Optional[str] = None,
                        mtu: Optional[float] = None,
                        name: Optional[str] = None,
                        netflow_profile: Optional[str] = None)
    func NewTunnelInterface(ctx *Context, name string, args TunnelInterfaceArgs, opts ...ResourceOption) (*TunnelInterface, error)
    public TunnelInterface(string name, TunnelInterfaceArgs args, CustomResourceOptions? opts = null)
    public TunnelInterface(String name, TunnelInterfaceArgs args)
    public TunnelInterface(String name, TunnelInterfaceArgs args, CustomResourceOptions options)
    
    type: panos:TunnelInterface
    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 TunnelInterfaceArgs
    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 TunnelInterfaceArgs
    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 TunnelInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TunnelInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TunnelInterfaceArgs
    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 tunnelInterfaceResource = new Panos.TunnelInterface("tunnelInterfaceResource", new()
    {
        Location = new Panos.Inputs.TunnelInterfaceLocationArgs
        {
            Ngfw = new Panos.Inputs.TunnelInterfaceLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Shared = null,
            Template = new Panos.Inputs.TunnelInterfaceLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.TunnelInterfaceLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        Bonjour = new Panos.Inputs.TunnelInterfaceBonjourArgs
        {
            Enable = false,
            GroupId = 0,
            TtlCheck = false,
        },
        Comment = "string",
        DfIgnore = false,
        InterfaceManagementProfile = "string",
        Ips = new[]
        {
            new Panos.Inputs.TunnelInterfaceIpArgs
            {
                Name = "string",
            },
        },
        Ipv6 = new Panos.Inputs.TunnelInterfaceIpv6Args
        {
            Addresses = new[]
            {
                new Panos.Inputs.TunnelInterfaceIpv6AddressArgs
                {
                    Name = "string",
                    Anycast = null,
                    EnableOnInterface = false,
                    Prefix = null,
                },
            },
            Enabled = false,
            InterfaceId = "string",
        },
        LinkTag = "string",
        Mtu = 0,
        Name = "string",
        NetflowProfile = "string",
    });
    
    example, err := panos.NewTunnelInterface(ctx, "tunnelInterfaceResource", &panos.TunnelInterfaceArgs{
    	Location: &panos.TunnelInterfaceLocationArgs{
    		Ngfw: &panos.TunnelInterfaceLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Shared: &panos.TunnelInterfaceLocationSharedArgs{},
    		Template: &panos.TunnelInterfaceLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.TunnelInterfaceLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	Bonjour: &panos.TunnelInterfaceBonjourArgs{
    		Enable:   pulumi.Bool(false),
    		GroupId:  pulumi.Float64(0),
    		TtlCheck: pulumi.Bool(false),
    	},
    	Comment:                    pulumi.String("string"),
    	DfIgnore:                   pulumi.Bool(false),
    	InterfaceManagementProfile: pulumi.String("string"),
    	Ips: panos.TunnelInterfaceIpArray{
    		&panos.TunnelInterfaceIpArgs{
    			Name: pulumi.String("string"),
    		},
    	},
    	Ipv6: &panos.TunnelInterfaceIpv6Args{
    		Addresses: panos.TunnelInterfaceIpv6AddressArray{
    			&panos.TunnelInterfaceIpv6AddressArgs{
    				Name:              pulumi.String("string"),
    				Anycast:           &panos.TunnelInterfaceIpv6AddressAnycastArgs{},
    				EnableOnInterface: pulumi.Bool(false),
    				Prefix:            &panos.TunnelInterfaceIpv6AddressPrefixArgs{},
    			},
    		},
    		Enabled:     pulumi.Bool(false),
    		InterfaceId: pulumi.String("string"),
    	},
    	LinkTag:        pulumi.String("string"),
    	Mtu:            pulumi.Float64(0),
    	Name:           pulumi.String("string"),
    	NetflowProfile: pulumi.String("string"),
    })
    
    var tunnelInterfaceResource = new TunnelInterface("tunnelInterfaceResource", TunnelInterfaceArgs.builder()
        .location(TunnelInterfaceLocationArgs.builder()
            .ngfw(TunnelInterfaceLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .shared()
            .template(TunnelInterfaceLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(TunnelInterfaceLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .bonjour(TunnelInterfaceBonjourArgs.builder()
            .enable(false)
            .groupId(0)
            .ttlCheck(false)
            .build())
        .comment("string")
        .dfIgnore(false)
        .interfaceManagementProfile("string")
        .ips(TunnelInterfaceIpArgs.builder()
            .name("string")
            .build())
        .ipv6(TunnelInterfaceIpv6Args.builder()
            .addresses(TunnelInterfaceIpv6AddressArgs.builder()
                .name("string")
                .anycast()
                .enableOnInterface(false)
                .prefix()
                .build())
            .enabled(false)
            .interfaceId("string")
            .build())
        .linkTag("string")
        .mtu(0)
        .name("string")
        .netflowProfile("string")
        .build());
    
    tunnel_interface_resource = panos.TunnelInterface("tunnelInterfaceResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "shared": {},
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        bonjour={
            "enable": False,
            "group_id": 0,
            "ttl_check": False,
        },
        comment="string",
        df_ignore=False,
        interface_management_profile="string",
        ips=[{
            "name": "string",
        }],
        ipv6={
            "addresses": [{
                "name": "string",
                "anycast": {},
                "enable_on_interface": False,
                "prefix": {},
            }],
            "enabled": False,
            "interface_id": "string",
        },
        link_tag="string",
        mtu=0,
        name="string",
        netflow_profile="string")
    
    const tunnelInterfaceResource = new panos.TunnelInterface("tunnelInterfaceResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            shared: {},
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        bonjour: {
            enable: false,
            groupId: 0,
            ttlCheck: false,
        },
        comment: "string",
        dfIgnore: false,
        interfaceManagementProfile: "string",
        ips: [{
            name: "string",
        }],
        ipv6: {
            addresses: [{
                name: "string",
                anycast: {},
                enableOnInterface: false,
                prefix: {},
            }],
            enabled: false,
            interfaceId: "string",
        },
        linkTag: "string",
        mtu: 0,
        name: "string",
        netflowProfile: "string",
    });
    
    type: panos:TunnelInterface
    properties:
        bonjour:
            enable: false
            groupId: 0
            ttlCheck: false
        comment: string
        dfIgnore: false
        interfaceManagementProfile: string
        ips:
            - name: string
        ipv6:
            addresses:
                - anycast: {}
                  enableOnInterface: false
                  name: string
                  prefix: {}
            enabled: false
            interfaceId: string
        linkTag: string
        location:
            ngfw:
                ngfwDevice: string
            shared: {}
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        mtu: 0
        name: string
        netflowProfile: string
    

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

    Location TunnelInterfaceLocation
    The location of this object.
    Bonjour TunnelInterfaceBonjour
    Comment string
    DfIgnore bool
    InterfaceManagementProfile string
    Interface management profile
    Ips List<TunnelInterfaceIp>
    Ipv6 TunnelInterfaceIpv6
    LinkTag string
    Mtu double
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NetflowProfile string
    Netflow Server Profile
    Location TunnelInterfaceLocationArgs
    The location of this object.
    Bonjour TunnelInterfaceBonjourArgs
    Comment string
    DfIgnore bool
    InterfaceManagementProfile string
    Interface management profile
    Ips []TunnelInterfaceIpArgs
    Ipv6 TunnelInterfaceIpv6Args
    LinkTag string
    Mtu float64
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NetflowProfile string
    Netflow Server Profile
    location TunnelInterfaceLocation
    The location of this object.
    bonjour TunnelInterfaceBonjour
    comment String
    dfIgnore Boolean
    interfaceManagementProfile String
    Interface management profile
    ips List<TunnelInterfaceIp>
    ipv6 TunnelInterfaceIpv6
    linkTag String
    mtu Double
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    netflowProfile String
    Netflow Server Profile
    location TunnelInterfaceLocation
    The location of this object.
    bonjour TunnelInterfaceBonjour
    comment string
    dfIgnore boolean
    interfaceManagementProfile string
    Interface management profile
    ips TunnelInterfaceIp[]
    ipv6 TunnelInterfaceIpv6
    linkTag string
    mtu number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name string
    netflowProfile string
    Netflow Server Profile
    location TunnelInterfaceLocationArgs
    The location of this object.
    bonjour TunnelInterfaceBonjourArgs
    comment str
    df_ignore bool
    interface_management_profile str
    Interface management profile
    ips Sequence[TunnelInterfaceIpArgs]
    ipv6 TunnelInterfaceIpv6Args
    link_tag str
    mtu float
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name str
    netflow_profile str
    Netflow Server Profile
    location Property Map
    The location of this object.
    bonjour Property Map
    comment String
    dfIgnore Boolean
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    ipv6 Property Map
    linkTag String
    mtu Number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    netflowProfile String
    Netflow Server Profile

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TunnelInterface 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 TunnelInterface Resource

    Get an existing TunnelInterface 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?: TunnelInterfaceState, opts?: CustomResourceOptions): TunnelInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bonjour: Optional[TunnelInterfaceBonjourArgs] = None,
            comment: Optional[str] = None,
            df_ignore: Optional[bool] = None,
            interface_management_profile: Optional[str] = None,
            ips: Optional[Sequence[TunnelInterfaceIpArgs]] = None,
            ipv6: Optional[TunnelInterfaceIpv6Args] = None,
            link_tag: Optional[str] = None,
            location: Optional[TunnelInterfaceLocationArgs] = None,
            mtu: Optional[float] = None,
            name: Optional[str] = None,
            netflow_profile: Optional[str] = None) -> TunnelInterface
    func GetTunnelInterface(ctx *Context, name string, id IDInput, state *TunnelInterfaceState, opts ...ResourceOption) (*TunnelInterface, error)
    public static TunnelInterface Get(string name, Input<string> id, TunnelInterfaceState? state, CustomResourceOptions? opts = null)
    public static TunnelInterface get(String name, Output<String> id, TunnelInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: panos:TunnelInterface    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:
    Bonjour TunnelInterfaceBonjour
    Comment string
    DfIgnore bool
    InterfaceManagementProfile string
    Interface management profile
    Ips List<TunnelInterfaceIp>
    Ipv6 TunnelInterfaceIpv6
    LinkTag string
    Location TunnelInterfaceLocation
    The location of this object.
    Mtu double
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NetflowProfile string
    Netflow Server Profile
    Bonjour TunnelInterfaceBonjourArgs
    Comment string
    DfIgnore bool
    InterfaceManagementProfile string
    Interface management profile
    Ips []TunnelInterfaceIpArgs
    Ipv6 TunnelInterfaceIpv6Args
    LinkTag string
    Location TunnelInterfaceLocationArgs
    The location of this object.
    Mtu float64
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    Name string
    NetflowProfile string
    Netflow Server Profile
    bonjour TunnelInterfaceBonjour
    comment String
    dfIgnore Boolean
    interfaceManagementProfile String
    Interface management profile
    ips List<TunnelInterfaceIp>
    ipv6 TunnelInterfaceIpv6
    linkTag String
    location TunnelInterfaceLocation
    The location of this object.
    mtu Double
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    netflowProfile String
    Netflow Server Profile
    bonjour TunnelInterfaceBonjour
    comment string
    dfIgnore boolean
    interfaceManagementProfile string
    Interface management profile
    ips TunnelInterfaceIp[]
    ipv6 TunnelInterfaceIpv6
    linkTag string
    location TunnelInterfaceLocation
    The location of this object.
    mtu number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name string
    netflowProfile string
    Netflow Server Profile
    bonjour TunnelInterfaceBonjourArgs
    comment str
    df_ignore bool
    interface_management_profile str
    Interface management profile
    ips Sequence[TunnelInterfaceIpArgs]
    ipv6 TunnelInterfaceIpv6Args
    link_tag str
    location TunnelInterfaceLocationArgs
    The location of this object.
    mtu float
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name str
    netflow_profile str
    Netflow Server Profile
    bonjour Property Map
    comment String
    dfIgnore Boolean
    interfaceManagementProfile String
    Interface management profile
    ips List<Property Map>
    ipv6 Property Map
    linkTag String
    location Property Map
    The location of this object.
    mtu Number
    Maximum Transfer Unit, up to 9216 in Jumbo-Frame mode, up to 1500 otherwise
    name String
    netflowProfile String
    Netflow Server Profile

    Supporting Types

    TunnelInterfaceBonjour, TunnelInterfaceBonjourArgs

    Enable bool
    Set to support Bonjour service
    GroupId double
    default 0: NO-Group
    TtlCheck bool
    Set to check and update TTL
    Enable bool
    Set to support Bonjour service
    GroupId float64
    default 0: NO-Group
    TtlCheck bool
    Set to check and update TTL
    enable Boolean
    Set to support Bonjour service
    groupId Double
    default 0: NO-Group
    ttlCheck Boolean
    Set to check and update TTL
    enable boolean
    Set to support Bonjour service
    groupId number
    default 0: NO-Group
    ttlCheck boolean
    Set to check and update TTL
    enable bool
    Set to support Bonjour service
    group_id float
    default 0: NO-Group
    ttl_check bool
    Set to check and update TTL
    enable Boolean
    Set to support Bonjour service
    groupId Number
    default 0: NO-Group
    ttlCheck Boolean
    Set to check and update TTL

    TunnelInterfaceIp, TunnelInterfaceIpArgs

    Name string
    Name string
    name String
    name string
    name str
    name String

    TunnelInterfaceIpv6, TunnelInterfaceIpv6Args

    Addresses List<TunnelInterfaceIpv6Address>
    Enabled bool
    Enable IPv6 on the interface
    InterfaceId string
    Addresses []TunnelInterfaceIpv6Address
    Enabled bool
    Enable IPv6 on the interface
    InterfaceId string
    addresses List<TunnelInterfaceIpv6Address>
    enabled Boolean
    Enable IPv6 on the interface
    interfaceId String
    addresses TunnelInterfaceIpv6Address[]
    enabled boolean
    Enable IPv6 on the interface
    interfaceId string
    addresses List<Property Map>
    enabled Boolean
    Enable IPv6 on the interface
    interfaceId String

    TunnelInterfaceIpv6Address, TunnelInterfaceIpv6AddressArgs

    name String
    anycast Property Map
    enableOnInterface Boolean
    configure this address on interface
    prefix Property Map

    TunnelInterfaceLocation, TunnelInterfaceLocationArgs

    Ngfw TunnelInterfaceLocationNgfw
    Located in a specific NGFW device
    Shared TunnelInterfaceLocationShared
    Panorama shared object
    Template TunnelInterfaceLocationTemplate
    Located in a specific template
    TemplateStack TunnelInterfaceLocationTemplateStack
    Located in a specific template stack
    Ngfw TunnelInterfaceLocationNgfw
    Located in a specific NGFW device
    Shared TunnelInterfaceLocationShared
    Panorama shared object
    Template TunnelInterfaceLocationTemplate
    Located in a specific template
    TemplateStack TunnelInterfaceLocationTemplateStack
    Located in a specific template stack
    ngfw TunnelInterfaceLocationNgfw
    Located in a specific NGFW device
    shared TunnelInterfaceLocationShared
    Panorama shared object
    template TunnelInterfaceLocationTemplate
    Located in a specific template
    templateStack TunnelInterfaceLocationTemplateStack
    Located in a specific template stack
    ngfw TunnelInterfaceLocationNgfw
    Located in a specific NGFW device
    shared TunnelInterfaceLocationShared
    Panorama shared object
    template TunnelInterfaceLocationTemplate
    Located in a specific template
    templateStack TunnelInterfaceLocationTemplateStack
    Located in a specific template stack
    ngfw TunnelInterfaceLocationNgfw
    Located in a specific NGFW device
    shared TunnelInterfaceLocationShared
    Panorama shared object
    template TunnelInterfaceLocationTemplate
    Located in a specific template
    template_stack TunnelInterfaceLocationTemplateStack
    Located in a specific template stack
    ngfw Property Map
    Located in a specific NGFW device
    shared Property Map
    Panorama shared object
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    TunnelInterfaceLocationNgfw, TunnelInterfaceLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    TunnelInterfaceLocationTemplate, TunnelInterfaceLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    TunnelInterfaceLocationTemplateStack, TunnelInterfaceLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    panos logo
    panos 2.0.0 published on Tuesday, Apr 15, 2025 by paloaltonetworks