Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as panos from "@pulumi/panos";
const example = new panos.Template("example", {
location: {
panorama: {},
},
name: "example-template",
});
const exampleUseridLogSettings = new panos.UseridLogSettings("example", {
location: {
template: {
name: example.name,
},
},
name: "example-userid-settings",
description: "userid log settings example",
filter: "(severity eq high)",
sendToPanorama: true,
quarantine: false,
actions: [{
name: "tag-action",
type: {
tagging: {
action: "add-tag",
target: "source-address",
tags: [
"tag1",
"tag2",
],
},
},
}],
});
import pulumi
import pulumi_panos as panos
example = panos.Template("example",
location={
"panorama": {},
},
name="example-template")
example_userid_log_settings = panos.UseridLogSettings("example",
location={
"template": {
"name": example.name,
},
},
name="example-userid-settings",
description="userid log settings example",
filter="(severity eq high)",
send_to_panorama=True,
quarantine=False,
actions=[{
"name": "tag-action",
"type": {
"tagging": {
"action": "add-tag",
"target": "source-address",
"tags": [
"tag1",
"tag2",
],
},
},
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := panos.NewTemplate(ctx, "example", &panos.TemplateArgs{
Location: &panos.TemplateLocationArgs{
Panorama: &panos.TemplateLocationPanoramaArgs{},
},
Name: pulumi.String("example-template"),
})
if err != nil {
return err
}
_, err = panos.NewUseridLogSettings(ctx, "example", &panos.UseridLogSettingsArgs{
Location: &panos.UseridLogSettingsLocationArgs{
Template: &panos.UseridLogSettingsLocationTemplateArgs{
Name: example.Name,
},
},
Name: pulumi.String("example-userid-settings"),
Description: pulumi.String("userid log settings example"),
Filter: pulumi.String("(severity eq high)"),
SendToPanorama: pulumi.Bool(true),
Quarantine: pulumi.Bool(false),
Actions: panos.UseridLogSettingsActionArray{
&panos.UseridLogSettingsActionArgs{
Name: pulumi.String("tag-action"),
Type: &panos.UseridLogSettingsActionTypeArgs{
Tagging: &panos.UseridLogSettingsActionTypeTaggingArgs{
Action: pulumi.String("add-tag"),
Target: pulumi.String("source-address"),
Tags: pulumi.StringArray{
pulumi.String("tag1"),
pulumi.String("tag2"),
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Panos = Pulumi.Panos;
return await Deployment.RunAsync(() =>
{
var example = new Panos.Template("example", new()
{
Location = new Panos.Inputs.TemplateLocationArgs
{
Panorama = null,
},
Name = "example-template",
});
var exampleUseridLogSettings = new Panos.UseridLogSettings("example", new()
{
Location = new Panos.Inputs.UseridLogSettingsLocationArgs
{
Template = new Panos.Inputs.UseridLogSettingsLocationTemplateArgs
{
Name = example.Name,
},
},
Name = "example-userid-settings",
Description = "userid log settings example",
Filter = "(severity eq high)",
SendToPanorama = true,
Quarantine = false,
Actions = new[]
{
new Panos.Inputs.UseridLogSettingsActionArgs
{
Name = "tag-action",
Type = new Panos.Inputs.UseridLogSettingsActionTypeArgs
{
Tagging = new Panos.Inputs.UseridLogSettingsActionTypeTaggingArgs
{
Action = "add-tag",
Target = "source-address",
Tags = new[]
{
"tag1",
"tag2",
},
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.panos.Template;
import com.pulumi.panos.TemplateArgs;
import com.pulumi.panos.inputs.TemplateLocationArgs;
import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
import com.pulumi.panos.UseridLogSettings;
import com.pulumi.panos.UseridLogSettingsArgs;
import com.pulumi.panos.inputs.UseridLogSettingsLocationArgs;
import com.pulumi.panos.inputs.UseridLogSettingsLocationTemplateArgs;
import com.pulumi.panos.inputs.UseridLogSettingsActionArgs;
import com.pulumi.panos.inputs.UseridLogSettingsActionTypeArgs;
import com.pulumi.panos.inputs.UseridLogSettingsActionTypeTaggingArgs;
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 Template("example", TemplateArgs.builder()
.location(TemplateLocationArgs.builder()
.panorama(TemplateLocationPanoramaArgs.builder()
.build())
.build())
.name("example-template")
.build());
var exampleUseridLogSettings = new UseridLogSettings("exampleUseridLogSettings", UseridLogSettingsArgs.builder()
.location(UseridLogSettingsLocationArgs.builder()
.template(UseridLogSettingsLocationTemplateArgs.builder()
.name(example.name())
.build())
.build())
.name("example-userid-settings")
.description("userid log settings example")
.filter("(severity eq high)")
.sendToPanorama(true)
.quarantine(false)
.actions(UseridLogSettingsActionArgs.builder()
.name("tag-action")
.type(UseridLogSettingsActionTypeArgs.builder()
.tagging(UseridLogSettingsActionTypeTaggingArgs.builder()
.action("add-tag")
.target("source-address")
.tags(
"tag1",
"tag2")
.build())
.build())
.build())
.build());
}
}
resources:
example:
type: panos:Template
properties:
location:
panorama: {}
name: example-template
exampleUseridLogSettings:
type: panos:UseridLogSettings
name: example
properties:
location:
template:
name: ${example.name}
name: example-userid-settings
description: userid log settings example
filter: (severity eq high)
sendToPanorama: true
quarantine: false
actions:
- name: tag-action
type:
tagging:
action: add-tag
target: source-address
tags:
- tag1
- tag2
Create UseridLogSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UseridLogSettings(name: string, args: UseridLogSettingsArgs, opts?: CustomResourceOptions);@overload
def UseridLogSettings(resource_name: str,
args: UseridLogSettingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UseridLogSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[UseridLogSettingsLocationArgs] = None,
actions: Optional[Sequence[UseridLogSettingsActionArgs]] = None,
description: Optional[str] = None,
email_profiles: Optional[Sequence[str]] = None,
filter: Optional[str] = None,
http_profiles: Optional[Sequence[str]] = None,
name: Optional[str] = None,
quarantine: Optional[bool] = None,
send_to_panorama: Optional[bool] = None,
snmp_profiles: Optional[Sequence[str]] = None,
syslog_profiles: Optional[Sequence[str]] = None)func NewUseridLogSettings(ctx *Context, name string, args UseridLogSettingsArgs, opts ...ResourceOption) (*UseridLogSettings, error)public UseridLogSettings(string name, UseridLogSettingsArgs args, CustomResourceOptions? opts = null)
public UseridLogSettings(String name, UseridLogSettingsArgs args)
public UseridLogSettings(String name, UseridLogSettingsArgs args, CustomResourceOptions options)
type: panos:UseridLogSettings
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 UseridLogSettingsArgs
- 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 UseridLogSettingsArgs
- 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 UseridLogSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UseridLogSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UseridLogSettingsArgs
- 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 useridLogSettingsResource = new Panos.UseridLogSettings("useridLogSettingsResource", new()
{
Location = new Panos.Inputs.UseridLogSettingsLocationArgs
{
Panorama = null,
Template = new Panos.Inputs.UseridLogSettingsLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.UseridLogSettingsLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.UseridLogSettingsLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.UseridLogSettingsLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
},
Actions = new[]
{
new Panos.Inputs.UseridLogSettingsActionArgs
{
Name = "string",
Type = new Panos.Inputs.UseridLogSettingsActionTypeArgs
{
Integration = new Panos.Inputs.UseridLogSettingsActionTypeIntegrationArgs
{
Action = "string",
},
Tagging = new Panos.Inputs.UseridLogSettingsActionTypeTaggingArgs
{
Action = "string",
Registration = new Panos.Inputs.UseridLogSettingsActionTypeTaggingRegistrationArgs
{
Localhost = null,
Panorama = null,
Remote = new Panos.Inputs.UseridLogSettingsActionTypeTaggingRegistrationRemoteArgs
{
HttpProfile = "string",
},
},
Tags = new[]
{
"string",
},
Target = "string",
Timeout = 0,
},
},
},
},
Description = "string",
EmailProfiles = new[]
{
"string",
},
Filter = "string",
HttpProfiles = new[]
{
"string",
},
Name = "string",
Quarantine = false,
SendToPanorama = false,
SnmpProfiles = new[]
{
"string",
},
SyslogProfiles = new[]
{
"string",
},
});
example, err := panos.NewUseridLogSettings(ctx, "useridLogSettingsResource", &panos.UseridLogSettingsArgs{
Location: &panos.UseridLogSettingsLocationArgs{
Panorama: &panos.UseridLogSettingsLocationPanoramaArgs{},
Template: &panos.UseridLogSettingsLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.UseridLogSettingsLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.UseridLogSettingsLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.UseridLogSettingsLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
},
Actions: panos.UseridLogSettingsActionArray{
&panos.UseridLogSettingsActionArgs{
Name: pulumi.String("string"),
Type: &panos.UseridLogSettingsActionTypeArgs{
Integration: &panos.UseridLogSettingsActionTypeIntegrationArgs{
Action: pulumi.String("string"),
},
Tagging: &panos.UseridLogSettingsActionTypeTaggingArgs{
Action: pulumi.String("string"),
Registration: &panos.UseridLogSettingsActionTypeTaggingRegistrationArgs{
Localhost: &panos.UseridLogSettingsActionTypeTaggingRegistrationLocalhostArgs{},
Panorama: &panos.UseridLogSettingsActionTypeTaggingRegistrationPanoramaArgs{},
Remote: &panos.UseridLogSettingsActionTypeTaggingRegistrationRemoteArgs{
HttpProfile: pulumi.String("string"),
},
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Target: pulumi.String("string"),
Timeout: pulumi.Float64(0),
},
},
},
},
Description: pulumi.String("string"),
EmailProfiles: pulumi.StringArray{
pulumi.String("string"),
},
Filter: pulumi.String("string"),
HttpProfiles: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Quarantine: pulumi.Bool(false),
SendToPanorama: pulumi.Bool(false),
SnmpProfiles: pulumi.StringArray{
pulumi.String("string"),
},
SyslogProfiles: pulumi.StringArray{
pulumi.String("string"),
},
})
var useridLogSettingsResource = new UseridLogSettings("useridLogSettingsResource", UseridLogSettingsArgs.builder()
.location(UseridLogSettingsLocationArgs.builder()
.panorama(UseridLogSettingsLocationPanoramaArgs.builder()
.build())
.template(UseridLogSettingsLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(UseridLogSettingsLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(UseridLogSettingsLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(UseridLogSettingsLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.build())
.actions(UseridLogSettingsActionArgs.builder()
.name("string")
.type(UseridLogSettingsActionTypeArgs.builder()
.integration(UseridLogSettingsActionTypeIntegrationArgs.builder()
.action("string")
.build())
.tagging(UseridLogSettingsActionTypeTaggingArgs.builder()
.action("string")
.registration(UseridLogSettingsActionTypeTaggingRegistrationArgs.builder()
.localhost(UseridLogSettingsActionTypeTaggingRegistrationLocalhostArgs.builder()
.build())
.panorama(UseridLogSettingsActionTypeTaggingRegistrationPanoramaArgs.builder()
.build())
.remote(UseridLogSettingsActionTypeTaggingRegistrationRemoteArgs.builder()
.httpProfile("string")
.build())
.build())
.tags("string")
.target("string")
.timeout(0.0)
.build())
.build())
.build())
.description("string")
.emailProfiles("string")
.filter("string")
.httpProfiles("string")
.name("string")
.quarantine(false)
.sendToPanorama(false)
.snmpProfiles("string")
.syslogProfiles("string")
.build());
userid_log_settings_resource = panos.UseridLogSettings("useridLogSettingsResource",
location={
"panorama": {},
"template": {
"name": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"panorama_device": "string",
},
"template_stack_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template_stack": "string",
"vsys": "string",
},
"template_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template": "string",
"vsys": "string",
},
},
actions=[{
"name": "string",
"type": {
"integration": {
"action": "string",
},
"tagging": {
"action": "string",
"registration": {
"localhost": {},
"panorama": {},
"remote": {
"http_profile": "string",
},
},
"tags": ["string"],
"target": "string",
"timeout": 0,
},
},
}],
description="string",
email_profiles=["string"],
filter="string",
http_profiles=["string"],
name="string",
quarantine=False,
send_to_panorama=False,
snmp_profiles=["string"],
syslog_profiles=["string"])
const useridLogSettingsResource = new panos.UseridLogSettings("useridLogSettingsResource", {
location: {
panorama: {},
template: {
name: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
panoramaDevice: "string",
},
templateStackVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
templateStack: "string",
vsys: "string",
},
templateVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
template: "string",
vsys: "string",
},
},
actions: [{
name: "string",
type: {
integration: {
action: "string",
},
tagging: {
action: "string",
registration: {
localhost: {},
panorama: {},
remote: {
httpProfile: "string",
},
},
tags: ["string"],
target: "string",
timeout: 0,
},
},
}],
description: "string",
emailProfiles: ["string"],
filter: "string",
httpProfiles: ["string"],
name: "string",
quarantine: false,
sendToPanorama: false,
snmpProfiles: ["string"],
syslogProfiles: ["string"],
});
type: panos:UseridLogSettings
properties:
actions:
- name: string
type:
integration:
action: string
tagging:
action: string
registration:
localhost: {}
panorama: {}
remote:
httpProfile: string
tags:
- string
target: string
timeout: 0
description: string
emailProfiles:
- string
filter: string
httpProfiles:
- string
location:
panorama: {}
template:
name: string
panoramaDevice: string
templateStack:
name: string
panoramaDevice: string
templateStackVsys:
ngfwDevice: string
panoramaDevice: string
templateStack: string
vsys: string
templateVsys:
ngfwDevice: string
panoramaDevice: string
template: string
vsys: string
name: string
quarantine: false
sendToPanorama: false
snmpProfiles:
- string
syslogProfiles:
- string
UseridLogSettings 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 UseridLogSettings resource accepts the following input properties:
- Location
Userid
Log Settings Location - The location of this object.
- Actions
List<Userid
Log Settings Action> - Description string
- Email
Profiles List<string> - Filter string
- Http
Profiles List<string> - Name string
- Quarantine bool
- Send
To boolPanorama - Snmp
Profiles List<string> - Syslog
Profiles List<string>
- Location
Userid
Log Settings Location Args - The location of this object.
- Actions
[]Userid
Log Settings Action Args - Description string
- Email
Profiles []string - Filter string
- Http
Profiles []string - Name string
- Quarantine bool
- Send
To boolPanorama - Snmp
Profiles []string - Syslog
Profiles []string
- location
Userid
Log Settings Location - The location of this object.
- actions
List<Userid
Log Settings Action> - description String
- email
Profiles List<String> - filter String
- http
Profiles List<String> - name String
- quarantine Boolean
- send
To BooleanPanorama - snmp
Profiles List<String> - syslog
Profiles List<String>
- location
Userid
Log Settings Location - The location of this object.
- actions
Userid
Log Settings Action[] - description string
- email
Profiles string[] - filter string
- http
Profiles string[] - name string
- quarantine boolean
- send
To booleanPanorama - snmp
Profiles string[] - syslog
Profiles string[]
- location
Userid
Log Settings Location Args - The location of this object.
- actions
Sequence[Userid
Log Settings Action Args] - description str
- email_
profiles Sequence[str] - filter str
- http_
profiles Sequence[str] - name str
- quarantine bool
- send_
to_ boolpanorama - snmp_
profiles Sequence[str] - syslog_
profiles Sequence[str]
- location Property Map
- The location of this object.
- actions List<Property Map>
- description String
- email
Profiles List<String> - filter String
- http
Profiles List<String> - name String
- quarantine Boolean
- send
To BooleanPanorama - snmp
Profiles List<String> - syslog
Profiles List<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the UseridLogSettings 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 UseridLogSettings Resource
Get an existing UseridLogSettings 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?: UseridLogSettingsState, opts?: CustomResourceOptions): UseridLogSettings@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
actions: Optional[Sequence[UseridLogSettingsActionArgs]] = None,
description: Optional[str] = None,
email_profiles: Optional[Sequence[str]] = None,
filter: Optional[str] = None,
http_profiles: Optional[Sequence[str]] = None,
location: Optional[UseridLogSettingsLocationArgs] = None,
name: Optional[str] = None,
quarantine: Optional[bool] = None,
send_to_panorama: Optional[bool] = None,
snmp_profiles: Optional[Sequence[str]] = None,
syslog_profiles: Optional[Sequence[str]] = None) -> UseridLogSettingsfunc GetUseridLogSettings(ctx *Context, name string, id IDInput, state *UseridLogSettingsState, opts ...ResourceOption) (*UseridLogSettings, error)public static UseridLogSettings Get(string name, Input<string> id, UseridLogSettingsState? state, CustomResourceOptions? opts = null)public static UseridLogSettings get(String name, Output<String> id, UseridLogSettingsState state, CustomResourceOptions options)resources: _: type: panos:UseridLogSettings 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.
- Actions
List<Userid
Log Settings Action> - Description string
- Email
Profiles List<string> - Filter string
- Http
Profiles List<string> - Location
Userid
Log Settings Location - The location of this object.
- Name string
- Quarantine bool
- Send
To boolPanorama - Snmp
Profiles List<string> - Syslog
Profiles List<string>
- Actions
[]Userid
Log Settings Action Args - Description string
- Email
Profiles []string - Filter string
- Http
Profiles []string - Location
Userid
Log Settings Location Args - The location of this object.
- Name string
- Quarantine bool
- Send
To boolPanorama - Snmp
Profiles []string - Syslog
Profiles []string
- actions
List<Userid
Log Settings Action> - description String
- email
Profiles List<String> - filter String
- http
Profiles List<String> - location
Userid
Log Settings Location - The location of this object.
- name String
- quarantine Boolean
- send
To BooleanPanorama - snmp
Profiles List<String> - syslog
Profiles List<String>
- actions
Userid
Log Settings Action[] - description string
- email
Profiles string[] - filter string
- http
Profiles string[] - location
Userid
Log Settings Location - The location of this object.
- name string
- quarantine boolean
- send
To booleanPanorama - snmp
Profiles string[] - syslog
Profiles string[]
- actions
Sequence[Userid
Log Settings Action Args] - description str
- email_
profiles Sequence[str] - filter str
- http_
profiles Sequence[str] - location
Userid
Log Settings Location Args - The location of this object.
- name str
- quarantine bool
- send_
to_ boolpanorama - snmp_
profiles Sequence[str] - syslog_
profiles Sequence[str]
- actions List<Property Map>
- description String
- email
Profiles List<String> - filter String
- http
Profiles List<String> - location Property Map
- The location of this object.
- name String
- quarantine Boolean
- send
To BooleanPanorama - snmp
Profiles List<String> - syslog
Profiles List<String>
Supporting Types
UseridLogSettingsAction, UseridLogSettingsActionArgs
- name String
- type Property Map
UseridLogSettingsActionType, UseridLogSettingsActionTypeArgs
UseridLogSettingsActionTypeIntegration, UseridLogSettingsActionTypeIntegrationArgs
- Action string
- Action string
- action String
- action string
- action str
- action String
UseridLogSettingsActionTypeTagging, UseridLogSettingsActionTypeTaggingArgs
- Action string
- Registration
Userid
Log Settings Action Type Tagging Registration - List<string>
- Target string
- Timeout double
- timeout in minutes
- Action string
- Registration
Userid
Log Settings Action Type Tagging Registration - []string
- Target string
- Timeout float64
- timeout in minutes
- action String
- registration
Userid
Log Settings Action Type Tagging Registration - List<String>
- target String
- timeout Double
- timeout in minutes
- action string
- registration
Userid
Log Settings Action Type Tagging Registration - string[]
- target string
- timeout number
- timeout in minutes
- action str
- registration
Userid
Log Settings Action Type Tagging Registration - Sequence[str]
- target str
- timeout float
- timeout in minutes
- action String
- registration Property Map
- List<String>
- target String
- timeout Number
- timeout in minutes
UseridLogSettingsActionTypeTaggingRegistration, UseridLogSettingsActionTypeTaggingRegistrationArgs
UseridLogSettingsActionTypeTaggingRegistrationRemote, UseridLogSettingsActionTypeTaggingRegistrationRemoteArgs
- Http
Profile string
- Http
Profile string
- http
Profile String
- http
Profile string
- http_
profile str
- http
Profile String
UseridLogSettingsLocation, UseridLogSettingsLocationArgs
- Panorama
Userid
Log Settings Location Panorama - Located in a panorama.
- Template
Userid
Log Settings Location Template - A shared resource located within a specific template
- Template
Stack UseridLog Settings Location Template Stack - Located in a specific template
- Template
Stack UseridVsys Log Settings Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys UseridLog Settings Location Template Vsys - Located in a specific template, device and vsys.
- Panorama
Userid
Log Settings Location Panorama - Located in a panorama.
- Template
Userid
Log Settings Location Template - A shared resource located within a specific template
- Template
Stack UseridLog Settings Location Template Stack - Located in a specific template
- Template
Stack UseridVsys Log Settings Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys UseridLog Settings Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Userid
Log Settings Location Panorama - Located in a panorama.
- template
Userid
Log Settings Location Template - A shared resource located within a specific template
- template
Stack UseridLog Settings Location Template Stack - Located in a specific template
- template
Stack UseridVsys Log Settings Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys UseridLog Settings Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Userid
Log Settings Location Panorama - Located in a panorama.
- template
Userid
Log Settings Location Template - A shared resource located within a specific template
- template
Stack UseridLog Settings Location Template Stack - Located in a specific template
- template
Stack UseridVsys Log Settings Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys UseridLog Settings Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Userid
Log Settings Location Panorama - Located in a panorama.
- template
Userid
Log Settings Location Template - A shared resource located within a specific template
- template_
stack UseridLog Settings Location Template Stack - Located in a specific template
- template_
stack_ Useridvsys Log Settings Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys UseridLog Settings Location Template Vsys - Located in a specific template, device and vsys.
- panorama Property Map
- Located in a panorama.
- template Property Map
- A shared resource located within a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys Property Map - Located in a specific template, device and vsys.
UseridLogSettingsLocationTemplate, UseridLogSettingsLocationTemplateArgs
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
UseridLogSettingsLocationTemplateStack, UseridLogSettingsLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
UseridLogSettingsLocationTemplateStackVsys, UseridLogSettingsLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack string - The template stack
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template_
stack str - The template stack
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
UseridLogSettingsLocationTemplateVsys, UseridLogSettingsLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template str
- Specific Panorama template
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
Import
The pulumi import command can be used, for example:
A userid log setting can be imported by providing the following base64 encoded object as the ID
{
location = {
template = {
name = "example-template"
panorama_device = "localhost.localdomain"
}
}
name = “example-userid-settings”
}
$ pulumi import panos:index/useridLogSettings:UseridLogSettings example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"example-userid-settings"}' | base64)
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
