azure-native.cloudngfw.LocalRulestack
Explore with Pulumi AI
PaloAltoNetworks LocalRulestack Azure REST API version: 2023-09-01.
Other available API versions: 2022-08-29, 2022-08-29-preview, 2023-09-01-preview, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview.
Example Usage
LocalRulestacks_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var localRulestack = new AzureNative.Cloudngfw.LocalRulestack("localRulestack", new()
    {
        AssociatedSubscriptions = new[]
        {
            "2bf4a339-294d-4c25-b0b2-ef649e9f5c27",
        },
        DefaultMode = AzureNative.Cloudngfw.DefaultMode.IPS,
        Description = "local rulestacks",
        Identity = new AzureNative.Cloudngfw.Inputs.AzureResourceManagerManagedIdentityPropertiesArgs
        {
            Type = AzureNative.Cloudngfw.ManagedIdentityType.None,
            UserAssignedIdentities = 
            {
                { "key16", new AzureNative.Cloudngfw.Inputs.AzureResourceManagerUserAssignedIdentityArgs
                {
                    ClientId = "aaaa",
                    PrincipalId = "aaaaaaaaaaaaaaa",
                } },
            },
        },
        LocalRulestackName = "lrs1",
        Location = "eastus",
        MinAppIdVersion = "8.5.3",
        PanEtag = "2bf4a339-294d-4c25-b0b2-ef649e9f5c12",
        PanLocation = "eastus",
        ResourceGroupName = "rgopenapi",
        Scope = AzureNative.Cloudngfw.ScopeType.LOCAL,
        SecurityServices = new AzureNative.Cloudngfw.Inputs.SecurityServicesArgs
        {
            AntiSpywareProfile = "default",
            AntiVirusProfile = "default",
            DnsSubscription = "default",
            FileBlockingProfile = "default",
            OutboundTrustCertificate = "default",
            OutboundUnTrustCertificate = "default",
            UrlFilteringProfile = "default",
            VulnerabilityProfile = "default",
        },
        Tags = 
        {
            { "tagName", "value" },
        },
    });
});
package main
import (
	cloudngfw "github.com/pulumi/pulumi-azure-native-sdk/cloudngfw/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudngfw.NewLocalRulestack(ctx, "localRulestack", &cloudngfw.LocalRulestackArgs{
			AssociatedSubscriptions: pulumi.StringArray{
				pulumi.String("2bf4a339-294d-4c25-b0b2-ef649e9f5c27"),
			},
			DefaultMode: pulumi.String(cloudngfw.DefaultModeIPS),
			Description: pulumi.String("local rulestacks"),
			Identity: &cloudngfw.AzureResourceManagerManagedIdentityPropertiesArgs{
				Type: pulumi.String(cloudngfw.ManagedIdentityTypeNone),
				UserAssignedIdentities: cloudngfw.AzureResourceManagerUserAssignedIdentityMap{
					"key16": &cloudngfw.AzureResourceManagerUserAssignedIdentityArgs{
						ClientId:    pulumi.String("aaaa"),
						PrincipalId: pulumi.String("aaaaaaaaaaaaaaa"),
					},
				},
			},
			LocalRulestackName: pulumi.String("lrs1"),
			Location:           pulumi.String("eastus"),
			MinAppIdVersion:    pulumi.String("8.5.3"),
			PanEtag:            pulumi.String("2bf4a339-294d-4c25-b0b2-ef649e9f5c12"),
			PanLocation:        pulumi.String("eastus"),
			ResourceGroupName:  pulumi.String("rgopenapi"),
			Scope:              pulumi.String(cloudngfw.ScopeTypeLOCAL),
			SecurityServices: &cloudngfw.SecurityServicesArgs{
				AntiSpywareProfile:         pulumi.String("default"),
				AntiVirusProfile:           pulumi.String("default"),
				DnsSubscription:            pulumi.String("default"),
				FileBlockingProfile:        pulumi.String("default"),
				OutboundTrustCertificate:   pulumi.String("default"),
				OutboundUnTrustCertificate: pulumi.String("default"),
				UrlFilteringProfile:        pulumi.String("default"),
				VulnerabilityProfile:       pulumi.String("default"),
			},
			Tags: pulumi.StringMap{
				"tagName": pulumi.String("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cloudngfw.LocalRulestack;
import com.pulumi.azurenative.cloudngfw.LocalRulestackArgs;
import com.pulumi.azurenative.cloudngfw.inputs.AzureResourceManagerManagedIdentityPropertiesArgs;
import com.pulumi.azurenative.cloudngfw.inputs.SecurityServicesArgs;
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 localRulestack = new LocalRulestack("localRulestack", LocalRulestackArgs.builder()
            .associatedSubscriptions("2bf4a339-294d-4c25-b0b2-ef649e9f5c27")
            .defaultMode("IPS")
            .description("local rulestacks")
            .identity(AzureResourceManagerManagedIdentityPropertiesArgs.builder()
                .type("None")
                .userAssignedIdentities(Map.of("key16", Map.ofEntries(
                    Map.entry("clientId", "aaaa"),
                    Map.entry("principalId", "aaaaaaaaaaaaaaa")
                )))
                .build())
            .localRulestackName("lrs1")
            .location("eastus")
            .minAppIdVersion("8.5.3")
            .panEtag("2bf4a339-294d-4c25-b0b2-ef649e9f5c12")
            .panLocation("eastus")
            .resourceGroupName("rgopenapi")
            .scope("LOCAL")
            .securityServices(SecurityServicesArgs.builder()
                .antiSpywareProfile("default")
                .antiVirusProfile("default")
                .dnsSubscription("default")
                .fileBlockingProfile("default")
                .outboundTrustCertificate("default")
                .outboundUnTrustCertificate("default")
                .urlFilteringProfile("default")
                .vulnerabilityProfile("default")
                .build())
            .tags(Map.of("tagName", "value"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const localRulestack = new azure_native.cloudngfw.LocalRulestack("localRulestack", {
    associatedSubscriptions: ["2bf4a339-294d-4c25-b0b2-ef649e9f5c27"],
    defaultMode: azure_native.cloudngfw.DefaultMode.IPS,
    description: "local rulestacks",
    identity: {
        type: azure_native.cloudngfw.ManagedIdentityType.None,
        userAssignedIdentities: {
            key16: {
                clientId: "aaaa",
                principalId: "aaaaaaaaaaaaaaa",
            },
        },
    },
    localRulestackName: "lrs1",
    location: "eastus",
    minAppIdVersion: "8.5.3",
    panEtag: "2bf4a339-294d-4c25-b0b2-ef649e9f5c12",
    panLocation: "eastus",
    resourceGroupName: "rgopenapi",
    scope: azure_native.cloudngfw.ScopeType.LOCAL,
    securityServices: {
        antiSpywareProfile: "default",
        antiVirusProfile: "default",
        dnsSubscription: "default",
        fileBlockingProfile: "default",
        outboundTrustCertificate: "default",
        outboundUnTrustCertificate: "default",
        urlFilteringProfile: "default",
        vulnerabilityProfile: "default",
    },
    tags: {
        tagName: "value",
    },
});
import pulumi
import pulumi_azure_native as azure_native
local_rulestack = azure_native.cloudngfw.LocalRulestack("localRulestack",
    associated_subscriptions=["2bf4a339-294d-4c25-b0b2-ef649e9f5c27"],
    default_mode=azure_native.cloudngfw.DefaultMode.IPS,
    description="local rulestacks",
    identity={
        "type": azure_native.cloudngfw.ManagedIdentityType.NONE,
        "user_assigned_identities": {
            "key16": {
                "client_id": "aaaa",
                "principal_id": "aaaaaaaaaaaaaaa",
            },
        },
    },
    local_rulestack_name="lrs1",
    location="eastus",
    min_app_id_version="8.5.3",
    pan_etag="2bf4a339-294d-4c25-b0b2-ef649e9f5c12",
    pan_location="eastus",
    resource_group_name="rgopenapi",
    scope=azure_native.cloudngfw.ScopeType.LOCAL,
    security_services={
        "anti_spyware_profile": "default",
        "anti_virus_profile": "default",
        "dns_subscription": "default",
        "file_blocking_profile": "default",
        "outbound_trust_certificate": "default",
        "outbound_un_trust_certificate": "default",
        "url_filtering_profile": "default",
        "vulnerability_profile": "default",
    },
    tags={
        "tagName": "value",
    })
resources:
  localRulestack:
    type: azure-native:cloudngfw:LocalRulestack
    properties:
      associatedSubscriptions:
        - 2bf4a339-294d-4c25-b0b2-ef649e9f5c27
      defaultMode: IPS
      description: local rulestacks
      identity:
        type: None
        userAssignedIdentities:
          key16:
            clientId: aaaa
            principalId: aaaaaaaaaaaaaaa
      localRulestackName: lrs1
      location: eastus
      minAppIdVersion: 8.5.3
      panEtag: 2bf4a339-294d-4c25-b0b2-ef649e9f5c12
      panLocation: eastus
      resourceGroupName: rgopenapi
      scope: LOCAL
      securityServices:
        antiSpywareProfile: default
        antiVirusProfile: default
        dnsSubscription: default
        fileBlockingProfile: default
        outboundTrustCertificate: default
        outboundUnTrustCertificate: default
        urlFilteringProfile: default
        vulnerabilityProfile: default
      tags:
        tagName: value
LocalRulestacks_CreateOrUpdate_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var localRulestack = new AzureNative.Cloudngfw.LocalRulestack("localRulestack", new()
    {
        LocalRulestackName = "lrs1",
        Location = "eastus",
        ResourceGroupName = "rgopenapi",
    });
});
package main
import (
	cloudngfw "github.com/pulumi/pulumi-azure-native-sdk/cloudngfw/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudngfw.NewLocalRulestack(ctx, "localRulestack", &cloudngfw.LocalRulestackArgs{
			LocalRulestackName: pulumi.String("lrs1"),
			Location:           pulumi.String("eastus"),
			ResourceGroupName:  pulumi.String("rgopenapi"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cloudngfw.LocalRulestack;
import com.pulumi.azurenative.cloudngfw.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 localRulestack = new LocalRulestack("localRulestack", LocalRulestackArgs.builder()
            .localRulestackName("lrs1")
            .location("eastus")
            .resourceGroupName("rgopenapi")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const localRulestack = new azure_native.cloudngfw.LocalRulestack("localRulestack", {
    localRulestackName: "lrs1",
    location: "eastus",
    resourceGroupName: "rgopenapi",
});
import pulumi
import pulumi_azure_native as azure_native
local_rulestack = azure_native.cloudngfw.LocalRulestack("localRulestack",
    local_rulestack_name="lrs1",
    location="eastus",
    resource_group_name="rgopenapi")
resources:
  localRulestack:
    type: azure-native:cloudngfw:LocalRulestack
    properties:
      localRulestackName: lrs1
      location: eastus
      resourceGroupName: rgopenapi
Create LocalRulestack Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LocalRulestack(name: string, args: LocalRulestackArgs, opts?: CustomResourceOptions);@overload
def LocalRulestack(resource_name: str,
                   args: LocalRulestackArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def LocalRulestack(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   identity: Optional[AzureResourceManagerManagedIdentityPropertiesArgs] = None,
                   description: Optional[str] = None,
                   associated_subscriptions: Optional[Sequence[str]] = None,
                   local_rulestack_name: Optional[str] = None,
                   location: Optional[str] = None,
                   min_app_id_version: Optional[str] = None,
                   pan_etag: Optional[str] = None,
                   pan_location: Optional[str] = None,
                   default_mode: Optional[Union[str, DefaultMode]] = None,
                   scope: Optional[Union[str, ScopeType]] = None,
                   security_services: Optional[SecurityServicesArgs] = None,
                   tags: Optional[Mapping[str, str]] = None)func NewLocalRulestack(ctx *Context, name string, args LocalRulestackArgs, opts ...ResourceOption) (*LocalRulestack, error)public LocalRulestack(string name, LocalRulestackArgs args, CustomResourceOptions? opts = null)
public LocalRulestack(String name, LocalRulestackArgs args)
public LocalRulestack(String name, LocalRulestackArgs args, CustomResourceOptions options)
type: azure-native:cloudngfw:LocalRulestack
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 LocalRulestackArgs
- 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 LocalRulestackArgs
- 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 LocalRulestackArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LocalRulestackArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LocalRulestackArgs
- 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 localRulestackResource = new AzureNative.Cloudngfw.LocalRulestack("localRulestackResource", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.Cloudngfw.Inputs.AzureResourceManagerManagedIdentityPropertiesArgs
    {
        Type = "string",
        UserAssignedIdentities = 
        {
            { "string", new AzureNative.Cloudngfw.Inputs.AzureResourceManagerUserAssignedIdentityArgs
            {
                ClientId = "string",
                PrincipalId = "string",
            } },
        },
    },
    Description = "string",
    AssociatedSubscriptions = new[]
    {
        "string",
    },
    LocalRulestackName = "string",
    Location = "string",
    MinAppIdVersion = "string",
    PanEtag = "string",
    PanLocation = "string",
    DefaultMode = "string",
    Scope = "string",
    SecurityServices = new AzureNative.Cloudngfw.Inputs.SecurityServicesArgs
    {
        AntiSpywareProfile = "string",
        AntiVirusProfile = "string",
        DnsSubscription = "string",
        FileBlockingProfile = "string",
        OutboundTrustCertificate = "string",
        OutboundUnTrustCertificate = "string",
        UrlFilteringProfile = "string",
        VulnerabilityProfile = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := cloudngfw.NewLocalRulestack(ctx, "localRulestackResource", &cloudngfw.LocalRulestackArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &cloudngfw.AzureResourceManagerManagedIdentityPropertiesArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: cloudngfw.AzureResourceManagerUserAssignedIdentityMap{
			"string": &cloudngfw.AzureResourceManagerUserAssignedIdentityArgs{
				ClientId:    pulumi.String("string"),
				PrincipalId: pulumi.String("string"),
			},
		},
	},
	Description: pulumi.String("string"),
	AssociatedSubscriptions: pulumi.StringArray{
		pulumi.String("string"),
	},
	LocalRulestackName: pulumi.String("string"),
	Location:           pulumi.String("string"),
	MinAppIdVersion:    pulumi.String("string"),
	PanEtag:            pulumi.String("string"),
	PanLocation:        pulumi.String("string"),
	DefaultMode:        pulumi.String("string"),
	Scope:              pulumi.String("string"),
	SecurityServices: &cloudngfw.SecurityServicesArgs{
		AntiSpywareProfile:         pulumi.String("string"),
		AntiVirusProfile:           pulumi.String("string"),
		DnsSubscription:            pulumi.String("string"),
		FileBlockingProfile:        pulumi.String("string"),
		OutboundTrustCertificate:   pulumi.String("string"),
		OutboundUnTrustCertificate: pulumi.String("string"),
		UrlFilteringProfile:        pulumi.String("string"),
		VulnerabilityProfile:       pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var localRulestackResource = new LocalRulestack("localRulestackResource", LocalRulestackArgs.builder()
    .resourceGroupName("string")
    .identity(AzureResourceManagerManagedIdentityPropertiesArgs.builder()
        .type("string")
        .userAssignedIdentities(Map.of("string", Map.ofEntries(
            Map.entry("clientId", "string"),
            Map.entry("principalId", "string")
        )))
        .build())
    .description("string")
    .associatedSubscriptions("string")
    .localRulestackName("string")
    .location("string")
    .minAppIdVersion("string")
    .panEtag("string")
    .panLocation("string")
    .defaultMode("string")
    .scope("string")
    .securityServices(SecurityServicesArgs.builder()
        .antiSpywareProfile("string")
        .antiVirusProfile("string")
        .dnsSubscription("string")
        .fileBlockingProfile("string")
        .outboundTrustCertificate("string")
        .outboundUnTrustCertificate("string")
        .urlFilteringProfile("string")
        .vulnerabilityProfile("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
local_rulestack_resource = azure_native.cloudngfw.LocalRulestack("localRulestackResource",
    resource_group_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": {
            "string": {
                "client_id": "string",
                "principal_id": "string",
            },
        },
    },
    description="string",
    associated_subscriptions=["string"],
    local_rulestack_name="string",
    location="string",
    min_app_id_version="string",
    pan_etag="string",
    pan_location="string",
    default_mode="string",
    scope="string",
    security_services={
        "anti_spyware_profile": "string",
        "anti_virus_profile": "string",
        "dns_subscription": "string",
        "file_blocking_profile": "string",
        "outbound_trust_certificate": "string",
        "outbound_un_trust_certificate": "string",
        "url_filtering_profile": "string",
        "vulnerability_profile": "string",
    },
    tags={
        "string": "string",
    })
const localRulestackResource = new azure_native.cloudngfw.LocalRulestack("localRulestackResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: {
            string: {
                clientId: "string",
                principalId: "string",
            },
        },
    },
    description: "string",
    associatedSubscriptions: ["string"],
    localRulestackName: "string",
    location: "string",
    minAppIdVersion: "string",
    panEtag: "string",
    panLocation: "string",
    defaultMode: "string",
    scope: "string",
    securityServices: {
        antiSpywareProfile: "string",
        antiVirusProfile: "string",
        dnsSubscription: "string",
        fileBlockingProfile: "string",
        outboundTrustCertificate: "string",
        outboundUnTrustCertificate: "string",
        urlFilteringProfile: "string",
        vulnerabilityProfile: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:cloudngfw:LocalRulestack
properties:
    associatedSubscriptions:
        - string
    defaultMode: string
    description: string
    identity:
        type: string
        userAssignedIdentities:
            string:
                clientId: string
                principalId: string
    localRulestackName: string
    location: string
    minAppIdVersion: string
    panEtag: string
    panLocation: string
    resourceGroupName: string
    scope: string
    securityServices:
        antiSpywareProfile: string
        antiVirusProfile: string
        dnsSubscription: string
        fileBlockingProfile: string
        outboundTrustCertificate: string
        outboundUnTrustCertificate: string
        urlFilteringProfile: string
        vulnerabilityProfile: string
    tags:
        string: string
LocalRulestack 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 LocalRulestack resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AssociatedSubscriptions List<string>
- subscription scope of global rulestack
- DefaultMode string | Pulumi.Azure Native. Cloudngfw. Default Mode 
- Mode for default rules creation
- Description string
- rulestack description
- Identity
Pulumi.Azure Native. Cloudngfw. Inputs. Azure Resource Manager Managed Identity Properties 
- The managed service identities assigned to this resource.
- LocalRulestack stringName 
- LocalRulestack resource name
- Location string
- The geo-location where the resource lives
- MinApp stringId Version 
- minimum version
- PanEtag string
- PanEtag info
- PanLocation string
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- Scope
string | Pulumi.Azure Native. Cloudngfw. Scope Type 
- Rulestack Type
- SecurityServices Pulumi.Azure Native. Cloudngfw. Inputs. Security Services 
- Security Profile
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AssociatedSubscriptions []string
- subscription scope of global rulestack
- DefaultMode string | DefaultMode 
- Mode for default rules creation
- Description string
- rulestack description
- Identity
AzureResource Manager Managed Identity Properties Args 
- The managed service identities assigned to this resource.
- LocalRulestack stringName 
- LocalRulestack resource name
- Location string
- The geo-location where the resource lives
- MinApp stringId Version 
- minimum version
- PanEtag string
- PanEtag info
- PanLocation string
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- Scope
string | ScopeType 
- Rulestack Type
- SecurityServices SecurityServices Args 
- Security Profile
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- associatedSubscriptions List<String>
- subscription scope of global rulestack
- defaultMode String | DefaultMode 
- Mode for default rules creation
- description String
- rulestack description
- identity
AzureResource Manager Managed Identity Properties 
- The managed service identities assigned to this resource.
- localRulestack StringName 
- LocalRulestack resource name
- location String
- The geo-location where the resource lives
- minApp StringId Version 
- minimum version
- panEtag String
- PanEtag info
- panLocation String
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- scope
String | ScopeType 
- Rulestack Type
- securityServices SecurityServices 
- Security Profile
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- associatedSubscriptions string[]
- subscription scope of global rulestack
- defaultMode string | DefaultMode 
- Mode for default rules creation
- description string
- rulestack description
- identity
AzureResource Manager Managed Identity Properties 
- The managed service identities assigned to this resource.
- localRulestack stringName 
- LocalRulestack resource name
- location string
- The geo-location where the resource lives
- minApp stringId Version 
- minimum version
- panEtag string
- PanEtag info
- panLocation string
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- scope
string | ScopeType 
- Rulestack Type
- securityServices SecurityServices 
- Security Profile
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- associated_subscriptions Sequence[str]
- subscription scope of global rulestack
- default_mode str | DefaultMode 
- Mode for default rules creation
- description str
- rulestack description
- identity
AzureResource Manager Managed Identity Properties Args 
- The managed service identities assigned to this resource.
- local_rulestack_ strname 
- LocalRulestack resource name
- location str
- The geo-location where the resource lives
- min_app_ strid_ version 
- minimum version
- pan_etag str
- PanEtag info
- pan_location str
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- scope
str | ScopeType 
- Rulestack Type
- security_services SecurityServices Args 
- Security Profile
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- associatedSubscriptions List<String>
- subscription scope of global rulestack
- defaultMode String | "IPS" | "FIREWALL" | "NONE"
- Mode for default rules creation
- description String
- rulestack description
- identity Property Map
- The managed service identities assigned to this resource.
- localRulestack StringName 
- LocalRulestack resource name
- location String
- The geo-location where the resource lives
- minApp StringId Version 
- minimum version
- panEtag String
- PanEtag info
- panLocation String
- Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
- scope String | "LOCAL" | "GLOBAL"
- Rulestack Type
- securityServices Property Map
- Security Profile
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the LocalRulestack resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the resource.
- SystemData Pulumi.Azure Native. Cloudngfw. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the resource.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the resource.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the resource.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AzureResourceManagerManagedIdentityProperties, AzureResourceManagerManagedIdentityPropertiesArgs            
- Type
string | Pulumi.Azure Native. Cloudngfw. Managed Identity Type 
- The type of managed identity assigned to this resource.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Cloudngfw. Inputs. Azure Resource Manager User Assigned Identity> 
- The identities assigned to this resource by the user.
- Type
string | ManagedIdentity Type 
- The type of managed identity assigned to this resource.
- UserAssigned map[string]AzureIdentities Resource Manager User Assigned Identity 
- The identities assigned to this resource by the user.
- type
String | ManagedIdentity Type 
- The type of managed identity assigned to this resource.
- userAssigned Map<String,AzureIdentities Resource Manager User Assigned Identity> 
- The identities assigned to this resource by the user.
- type
string | ManagedIdentity Type 
- The type of managed identity assigned to this resource.
- userAssigned {[key: string]: AzureIdentities Resource Manager User Assigned Identity} 
- The identities assigned to this resource by the user.
- type
str | ManagedIdentity Type 
- The type of managed identity assigned to this resource.
- user_assigned_ Mapping[str, Azureidentities Resource Manager User Assigned Identity] 
- The identities assigned to this resource by the user.
- type
String | "None" | "SystemAssigned" | "User Assigned" | "System Assigned,User Assigned" 
- The type of managed identity assigned to this resource.
- userAssigned Map<Property Map>Identities 
- The identities assigned to this resource by the user.
AzureResourceManagerManagedIdentityPropertiesResponse, AzureResourceManagerManagedIdentityPropertiesResponseArgs              
- PrincipalId string
- The active directory identifier of this principal.
- TenantId string
- The Active Directory tenant id of the principal.
- Type string
- The type of managed identity assigned to this resource.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Cloudngfw. Inputs. Azure Resource Manager User Assigned Identity Response> 
- The identities assigned to this resource by the user.
- PrincipalId string
- The active directory identifier of this principal.
- TenantId string
- The Active Directory tenant id of the principal.
- Type string
- The type of managed identity assigned to this resource.
- UserAssigned map[string]AzureIdentities Resource Manager User Assigned Identity Response 
- The identities assigned to this resource by the user.
- principalId String
- The active directory identifier of this principal.
- tenantId String
- The Active Directory tenant id of the principal.
- type String
- The type of managed identity assigned to this resource.
- userAssigned Map<String,AzureIdentities Resource Manager User Assigned Identity Response> 
- The identities assigned to this resource by the user.
- principalId string
- The active directory identifier of this principal.
- tenantId string
- The Active Directory tenant id of the principal.
- type string
- The type of managed identity assigned to this resource.
- userAssigned {[key: string]: AzureIdentities Resource Manager User Assigned Identity Response} 
- The identities assigned to this resource by the user.
- principal_id str
- The active directory identifier of this principal.
- tenant_id str
- The Active Directory tenant id of the principal.
- type str
- The type of managed identity assigned to this resource.
- user_assigned_ Mapping[str, Azureidentities Resource Manager User Assigned Identity Response] 
- The identities assigned to this resource by the user.
- principalId String
- The active directory identifier of this principal.
- tenantId String
- The Active Directory tenant id of the principal.
- type String
- The type of managed identity assigned to this resource.
- userAssigned Map<Property Map>Identities 
- The identities assigned to this resource by the user.
AzureResourceManagerUserAssignedIdentity, AzureResourceManagerUserAssignedIdentityArgs            
- ClientId string
- The active directory client identifier for this principal.
- PrincipalId string
- The active directory identifier for this principal.
- ClientId string
- The active directory client identifier for this principal.
- PrincipalId string
- The active directory identifier for this principal.
- clientId String
- The active directory client identifier for this principal.
- principalId String
- The active directory identifier for this principal.
- clientId string
- The active directory client identifier for this principal.
- principalId string
- The active directory identifier for this principal.
- client_id str
- The active directory client identifier for this principal.
- principal_id str
- The active directory identifier for this principal.
- clientId String
- The active directory client identifier for this principal.
- principalId String
- The active directory identifier for this principal.
AzureResourceManagerUserAssignedIdentityResponse, AzureResourceManagerUserAssignedIdentityResponseArgs              
- ClientId string
- The active directory client identifier for this principal.
- PrincipalId string
- The active directory identifier for this principal.
- ClientId string
- The active directory client identifier for this principal.
- PrincipalId string
- The active directory identifier for this principal.
- clientId String
- The active directory client identifier for this principal.
- principalId String
- The active directory identifier for this principal.
- clientId string
- The active directory client identifier for this principal.
- principalId string
- The active directory identifier for this principal.
- client_id str
- The active directory client identifier for this principal.
- principal_id str
- The active directory identifier for this principal.
- clientId String
- The active directory client identifier for this principal.
- principalId String
- The active directory identifier for this principal.
DefaultMode, DefaultModeArgs    
- IPS
- IPS
- FIREWALL
- FIREWALL
- NONE
- NONE
- DefaultMode IPS 
- IPS
- DefaultMode FIREWALL 
- FIREWALL
- DefaultMode NONE 
- NONE
- IPS
- IPS
- FIREWALL
- FIREWALL
- NONE
- NONE
- IPS
- IPS
- FIREWALL
- FIREWALL
- NONE
- NONE
- IPS
- IPS
- FIREWALL
- FIREWALL
- NONE
- NONE
- "IPS"
- IPS
- "FIREWALL"
- FIREWALL
- "NONE"
- NONE
ManagedIdentityType, ManagedIdentityTypeArgs      
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAnd User Assigned 
- SystemAssigned,UserAssigned
- ManagedIdentity Type None 
- None
- ManagedIdentity Type System Assigned 
- SystemAssigned
- ManagedIdentity Type User Assigned 
- UserAssigned
- ManagedIdentity Type System And User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAnd User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAnd User Assigned 
- SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_AND_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned,User Assigned" 
- SystemAssigned,UserAssigned
ScopeType, ScopeTypeArgs    
- LOCAL
- LOCAL
- GLOBAL
- GLOBAL
- ScopeType LOCAL 
- LOCAL
- ScopeType GLOBAL 
- GLOBAL
- LOCAL
- LOCAL
- GLOBAL
- GLOBAL
- LOCAL
- LOCAL
- GLOBAL
- GLOBAL
- LOCAL
- LOCAL
- GLOBAL_
- GLOBAL
- "LOCAL"
- LOCAL
- "GLOBAL"
- GLOBAL
SecurityServices, SecurityServicesArgs    
- AntiSpyware stringProfile 
- Anti spyware Profile data
- AntiVirus stringProfile 
- anti virus profile data
- DnsSubscription string
- DNS Subscription profile data
- FileBlocking stringProfile 
- File blocking profile data
- OutboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- OutboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- UrlFiltering stringProfile 
- URL filtering profile data
- VulnerabilityProfile string
- IPs Vulnerability Profile Data
- AntiSpyware stringProfile 
- Anti spyware Profile data
- AntiVirus stringProfile 
- anti virus profile data
- DnsSubscription string
- DNS Subscription profile data
- FileBlocking stringProfile 
- File blocking profile data
- OutboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- OutboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- UrlFiltering stringProfile 
- URL filtering profile data
- VulnerabilityProfile string
- IPs Vulnerability Profile Data
- antiSpyware StringProfile 
- Anti spyware Profile data
- antiVirus StringProfile 
- anti virus profile data
- dnsSubscription String
- DNS Subscription profile data
- fileBlocking StringProfile 
- File blocking profile data
- outboundTrust StringCertificate 
- Trusted Egress Decryption profile data
- outboundUn StringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering StringProfile 
- URL filtering profile data
- vulnerabilityProfile String
- IPs Vulnerability Profile Data
- antiSpyware stringProfile 
- Anti spyware Profile data
- antiVirus stringProfile 
- anti virus profile data
- dnsSubscription string
- DNS Subscription profile data
- fileBlocking stringProfile 
- File blocking profile data
- outboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- outboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering stringProfile 
- URL filtering profile data
- vulnerabilityProfile string
- IPs Vulnerability Profile Data
- anti_spyware_ strprofile 
- Anti spyware Profile data
- anti_virus_ strprofile 
- anti virus profile data
- dns_subscription str
- DNS Subscription profile data
- file_blocking_ strprofile 
- File blocking profile data
- outbound_trust_ strcertificate 
- Trusted Egress Decryption profile data
- outbound_un_ strtrust_ certificate 
- Untrusted Egress Decryption profile data
- url_filtering_ strprofile 
- URL filtering profile data
- vulnerability_profile str
- IPs Vulnerability Profile Data
- antiSpyware StringProfile 
- Anti spyware Profile data
- antiVirus StringProfile 
- anti virus profile data
- dnsSubscription String
- DNS Subscription profile data
- fileBlocking StringProfile 
- File blocking profile data
- outboundTrust StringCertificate 
- Trusted Egress Decryption profile data
- outboundUn StringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering StringProfile 
- URL filtering profile data
- vulnerabilityProfile String
- IPs Vulnerability Profile Data
SecurityServicesResponse, SecurityServicesResponseArgs      
- AntiSpyware stringProfile 
- Anti spyware Profile data
- AntiVirus stringProfile 
- anti virus profile data
- DnsSubscription string
- DNS Subscription profile data
- FileBlocking stringProfile 
- File blocking profile data
- OutboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- OutboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- UrlFiltering stringProfile 
- URL filtering profile data
- VulnerabilityProfile string
- IPs Vulnerability Profile Data
- AntiSpyware stringProfile 
- Anti spyware Profile data
- AntiVirus stringProfile 
- anti virus profile data
- DnsSubscription string
- DNS Subscription profile data
- FileBlocking stringProfile 
- File blocking profile data
- OutboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- OutboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- UrlFiltering stringProfile 
- URL filtering profile data
- VulnerabilityProfile string
- IPs Vulnerability Profile Data
- antiSpyware StringProfile 
- Anti spyware Profile data
- antiVirus StringProfile 
- anti virus profile data
- dnsSubscription String
- DNS Subscription profile data
- fileBlocking StringProfile 
- File blocking profile data
- outboundTrust StringCertificate 
- Trusted Egress Decryption profile data
- outboundUn StringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering StringProfile 
- URL filtering profile data
- vulnerabilityProfile String
- IPs Vulnerability Profile Data
- antiSpyware stringProfile 
- Anti spyware Profile data
- antiVirus stringProfile 
- anti virus profile data
- dnsSubscription string
- DNS Subscription profile data
- fileBlocking stringProfile 
- File blocking profile data
- outboundTrust stringCertificate 
- Trusted Egress Decryption profile data
- outboundUn stringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering stringProfile 
- URL filtering profile data
- vulnerabilityProfile string
- IPs Vulnerability Profile Data
- anti_spyware_ strprofile 
- Anti spyware Profile data
- anti_virus_ strprofile 
- anti virus profile data
- dns_subscription str
- DNS Subscription profile data
- file_blocking_ strprofile 
- File blocking profile data
- outbound_trust_ strcertificate 
- Trusted Egress Decryption profile data
- outbound_un_ strtrust_ certificate 
- Untrusted Egress Decryption profile data
- url_filtering_ strprofile 
- URL filtering profile data
- vulnerability_profile str
- IPs Vulnerability Profile Data
- antiSpyware StringProfile 
- Anti spyware Profile data
- antiVirus StringProfile 
- anti virus profile data
- dnsSubscription String
- DNS Subscription profile data
- fileBlocking StringProfile 
- File blocking profile data
- outboundTrust StringCertificate 
- Trusted Egress Decryption profile data
- outboundUn StringTrust Certificate 
- Untrusted Egress Decryption profile data
- urlFiltering StringProfile 
- URL filtering profile data
- vulnerabilityProfile String
- IPs Vulnerability Profile Data
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cloudngfw:LocalRulestack armid1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/{localRulestackName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0