LocalRulestackArgs

data class LocalRulestackArgs(val antiSpywareProfile: Output<String>? = null, val antiVirusProfile: Output<String>? = null, val description: Output<String>? = null, val dnsSubscription: Output<String>? = null, val fileBlockingProfile: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val resourceGroupName: Output<String>? = null, val urlFilteringProfile: Output<String>? = null, val vulnerabilityProfile: Output<String>? = null) : ConvertibleToJava<LocalRulestackArgs>

Manages a Palo Alto Networks Rulestack.

Example Usage

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.paloalto.LocalRulestack;
import com.pulumi.azure.paloalto.LocalRulestackArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleLocalRulestack = new LocalRulestack("exampleLocalRulestack", LocalRulestackArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.build());
}
}

Import

Palo Alto Networks Rulestacks can be imported using the resource id, e.g.

$ pulumi import azure:paloalto/localRulestack:LocalRulestack example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/myLocalRulestack

Constructors

Link copied to clipboard
fun LocalRulestackArgs(antiSpywareProfile: Output<String>? = null, antiVirusProfile: Output<String>? = null, description: Output<String>? = null, dnsSubscription: Output<String>? = null, fileBlockingProfile: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, resourceGroupName: Output<String>? = null, urlFilteringProfile: Output<String>? = null, vulnerabilityProfile: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): LocalRulestackArgs

Properties

Link copied to clipboard
val antiSpywareProfile: Output<String>? = null

The setting to use for Anti-Spyware. Possible values include BestPractice, and Custom.

Link copied to clipboard
val antiVirusProfile: Output<String>? = null

The setting to use for Anti-Virus. Possible values include BestPractice, and Custom.

Link copied to clipboard
val description: Output<String>? = null

The description for this Local Rulestack.

Link copied to clipboard
val dnsSubscription: Output<String>? = null

TThe setting to use for DNS Subscription. Possible values include BestPractice, and Custom.

Link copied to clipboard
val fileBlockingProfile: Output<String>? = null

The setting to use for the File Blocking Profile. Possible values include BestPractice, and Custom.

Link copied to clipboard
val location: Output<String>? = null

The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.

Link copied to clipboard
val name: Output<String>? = null

The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created.

Link copied to clipboard
val urlFilteringProfile: Output<String>? = null

The setting to use for the URL Filtering Profile. Possible values include BestPractice, and Custom.

Link copied to clipboard
val vulnerabilityProfile: Output<String>? = null

The setting to use for the Vulnerability Profile. Possible values include BestPractice, and Custom.