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

panos.WildfireAnalysisSecurityProfile

Explore with Pulumi AI

Create WildfireAnalysisSecurityProfile Resource

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

Constructor syntax

new WildfireAnalysisSecurityProfile(name: string, args: WildfireAnalysisSecurityProfileArgs, opts?: CustomResourceOptions);
@overload
def WildfireAnalysisSecurityProfile(resource_name: str,
                                    args: WildfireAnalysisSecurityProfileArgs,
                                    opts: Optional[ResourceOptions] = None)

@overload
def WildfireAnalysisSecurityProfile(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    location: Optional[WildfireAnalysisSecurityProfileLocationArgs] = None,
                                    description: Optional[str] = None,
                                    disable_override: Optional[str] = None,
                                    name: Optional[str] = None,
                                    rules: Optional[Sequence[WildfireAnalysisSecurityProfileRuleArgs]] = None)
func NewWildfireAnalysisSecurityProfile(ctx *Context, name string, args WildfireAnalysisSecurityProfileArgs, opts ...ResourceOption) (*WildfireAnalysisSecurityProfile, error)
public WildfireAnalysisSecurityProfile(string name, WildfireAnalysisSecurityProfileArgs args, CustomResourceOptions? opts = null)
public WildfireAnalysisSecurityProfile(String name, WildfireAnalysisSecurityProfileArgs args)
public WildfireAnalysisSecurityProfile(String name, WildfireAnalysisSecurityProfileArgs args, CustomResourceOptions options)
type: panos:WildfireAnalysisSecurityProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WildfireAnalysisSecurityProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WildfireAnalysisSecurityProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WildfireAnalysisSecurityProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WildfireAnalysisSecurityProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WildfireAnalysisSecurityProfileArgs
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 wildfireAnalysisSecurityProfileResource = new Panos.WildfireAnalysisSecurityProfile("wildfireAnalysisSecurityProfileResource", new()
{
    Location = new Panos.Inputs.WildfireAnalysisSecurityProfileLocationArgs
    {
        DeviceGroup = new Panos.Inputs.WildfireAnalysisSecurityProfileLocationDeviceGroupArgs
        {
            Name = "string",
            PanoramaDevice = "string",
        },
        Shared = null,
    },
    Description = "string",
    DisableOverride = "string",
    Name = "string",
    Rules = new[]
    {
        new Panos.Inputs.WildfireAnalysisSecurityProfileRuleArgs
        {
            Name = "string",
            Analysis = "string",
            Applications = new[]
            {
                "string",
            },
            Direction = "string",
            FileTypes = new[]
            {
                "string",
            },
        },
    },
});
Copy
example, err := panos.NewWildfireAnalysisSecurityProfile(ctx, "wildfireAnalysisSecurityProfileResource", &panos.WildfireAnalysisSecurityProfileArgs{
Location: &.WildfireAnalysisSecurityProfileLocationArgs{
DeviceGroup: &.WildfireAnalysisSecurityProfileLocationDeviceGroupArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
Shared: &.WildfireAnalysisSecurityProfileLocationSharedArgs{
},
},
Description: pulumi.String("string"),
DisableOverride: pulumi.String("string"),
Name: pulumi.String("string"),
Rules: .WildfireAnalysisSecurityProfileRuleArray{
&.WildfireAnalysisSecurityProfileRuleArgs{
Name: pulumi.String("string"),
Analysis: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Direction: pulumi.String("string"),
FileTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
Copy
var wildfireAnalysisSecurityProfileResource = new WildfireAnalysisSecurityProfile("wildfireAnalysisSecurityProfileResource", WildfireAnalysisSecurityProfileArgs.builder()
    .location(WildfireAnalysisSecurityProfileLocationArgs.builder()
        .deviceGroup(WildfireAnalysisSecurityProfileLocationDeviceGroupArgs.builder()
            .name("string")
            .panoramaDevice("string")
            .build())
        .shared()
        .build())
    .description("string")
    .disableOverride("string")
    .name("string")
    .rules(WildfireAnalysisSecurityProfileRuleArgs.builder()
        .name("string")
        .analysis("string")
        .applications("string")
        .direction("string")
        .fileTypes("string")
        .build())
    .build());
Copy
wildfire_analysis_security_profile_resource = panos.WildfireAnalysisSecurityProfile("wildfireAnalysisSecurityProfileResource",
    location={
        "device_group": {
            "name": "string",
            "panorama_device": "string",
        },
        "shared": {},
    },
    description="string",
    disable_override="string",
    name="string",
    rules=[{
        "name": "string",
        "analysis": "string",
        "applications": ["string"],
        "direction": "string",
        "file_types": ["string"],
    }])
Copy
const wildfireAnalysisSecurityProfileResource = new panos.WildfireAnalysisSecurityProfile("wildfireAnalysisSecurityProfileResource", {
    location: {
        deviceGroup: {
            name: "string",
            panoramaDevice: "string",
        },
        shared: {},
    },
    description: "string",
    disableOverride: "string",
    name: "string",
    rules: [{
        name: "string",
        analysis: "string",
        applications: ["string"],
        direction: "string",
        fileTypes: ["string"],
    }],
});
Copy
type: panos:WildfireAnalysisSecurityProfile
properties:
    description: string
    disableOverride: string
    location:
        deviceGroup:
            name: string
            panoramaDevice: string
        shared: {}
    name: string
    rules:
        - analysis: string
          applications:
            - string
          direction: string
          fileTypes:
            - string
          name: string
Copy

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

Location This property is required. WildfireAnalysisSecurityProfileLocation
The location of this object.
Description string
DisableOverride string
disable object override in child device groups
Name string
Rules List<WildfireAnalysisSecurityProfileRule>
Location This property is required. WildfireAnalysisSecurityProfileLocationArgs
The location of this object.
Description string
DisableOverride string
disable object override in child device groups
Name string
Rules []WildfireAnalysisSecurityProfileRuleArgs
location This property is required. WildfireAnalysisSecurityProfileLocation
The location of this object.
description String
disableOverride String
disable object override in child device groups
name String
rules List<WildfireAnalysisSecurityProfileRule>
location This property is required. WildfireAnalysisSecurityProfileLocation
The location of this object.
description string
disableOverride string
disable object override in child device groups
name string
rules WildfireAnalysisSecurityProfileRule[]
location This property is required. WildfireAnalysisSecurityProfileLocationArgs
The location of this object.
description str
disable_override str
disable object override in child device groups
name str
rules Sequence[WildfireAnalysisSecurityProfileRuleArgs]
location This property is required. Property Map
The location of this object.
description String
disableOverride String
disable object override in child device groups
name String
rules List<Property Map>

Outputs

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

Get an existing WildfireAnalysisSecurityProfile 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?: WildfireAnalysisSecurityProfileState, opts?: CustomResourceOptions): WildfireAnalysisSecurityProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        disable_override: Optional[str] = None,
        location: Optional[WildfireAnalysisSecurityProfileLocationArgs] = None,
        name: Optional[str] = None,
        rules: Optional[Sequence[WildfireAnalysisSecurityProfileRuleArgs]] = None) -> WildfireAnalysisSecurityProfile
func GetWildfireAnalysisSecurityProfile(ctx *Context, name string, id IDInput, state *WildfireAnalysisSecurityProfileState, opts ...ResourceOption) (*WildfireAnalysisSecurityProfile, error)
public static WildfireAnalysisSecurityProfile Get(string name, Input<string> id, WildfireAnalysisSecurityProfileState? state, CustomResourceOptions? opts = null)
public static WildfireAnalysisSecurityProfile get(String name, Output<String> id, WildfireAnalysisSecurityProfileState state, CustomResourceOptions options)
resources:  _:    type: panos:WildfireAnalysisSecurityProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Description string
DisableOverride string
disable object override in child device groups
Location WildfireAnalysisSecurityProfileLocation
The location of this object.
Name string
Rules List<WildfireAnalysisSecurityProfileRule>
Description string
DisableOverride string
disable object override in child device groups
Location WildfireAnalysisSecurityProfileLocationArgs
The location of this object.
Name string
Rules []WildfireAnalysisSecurityProfileRuleArgs
description String
disableOverride String
disable object override in child device groups
location WildfireAnalysisSecurityProfileLocation
The location of this object.
name String
rules List<WildfireAnalysisSecurityProfileRule>
description string
disableOverride string
disable object override in child device groups
location WildfireAnalysisSecurityProfileLocation
The location of this object.
name string
rules WildfireAnalysisSecurityProfileRule[]
description String
disableOverride String
disable object override in child device groups
location Property Map
The location of this object.
name String
rules List<Property Map>

Supporting Types

WildfireAnalysisSecurityProfileLocation
, WildfireAnalysisSecurityProfileLocationArgs

deviceGroup Property Map
Located in a specific Device Group
shared Property Map
Panorama shared object

WildfireAnalysisSecurityProfileLocationDeviceGroup
, WildfireAnalysisSecurityProfileLocationDeviceGroupArgs

Name string
Device Group name
PanoramaDevice string
Panorama device name
Name string
Device Group name
PanoramaDevice string
Panorama device name
name String
Device Group name
panoramaDevice String
Panorama device name
name string
Device Group name
panoramaDevice string
Panorama device name
name str
Device Group name
panorama_device str
Panorama device name
name String
Device Group name
panoramaDevice String
Panorama device name

WildfireAnalysisSecurityProfileRule
, WildfireAnalysisSecurityProfileRuleArgs

Name This property is required. string
Analysis string
Applications List<string>
Direction string
FileTypes List<string>
Name This property is required. string
Analysis string
Applications []string
Direction string
FileTypes []string
name This property is required. String
analysis String
applications List<String>
direction String
fileTypes List<String>
name This property is required. string
analysis string
applications string[]
direction string
fileTypes string[]
name This property is required. str
analysis str
applications Sequence[str]
direction str
file_types Sequence[str]
name This property is required. String
analysis String
applications List<String>
direction String
fileTypes List<String>

Package Details

Repository
panos paloaltonetworks/terraform-provider-panos
License
Notes
This Pulumi package is based on the panos Terraform Provider.