1. Packages
  2. Azure Native v1
  3. API Docs
  4. network
  5. NspAccessRule
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.network.NspAccessRule

Explore with Pulumi AI

These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

The NSP access rule resource API Version: 2021-02-01-preview.

Example Usage

NspAccessRulePut

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var nspAccessRule = new AzureNative.Network.NspAccessRule("nspAccessRule", new()
    {
        AccessRuleName = "accessRule1",
        AddressPrefixes = new[]
        {
            "10.11.0.0/16",
            "10.10.1.0/24",
        },
        Direction = "Inbound",
        NetworkSecurityPerimeterName = "nsp1",
        ProfileName = "profile1",
        ResourceGroupName = "rg1",
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewNspAccessRule(ctx, "nspAccessRule", &network.NspAccessRuleArgs{
			AccessRuleName: pulumi.String("accessRule1"),
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("10.11.0.0/16"),
				pulumi.String("10.10.1.0/24"),
			},
			Direction:                    pulumi.String("Inbound"),
			NetworkSecurityPerimeterName: pulumi.String("nsp1"),
			ProfileName:                  pulumi.String("profile1"),
			ResourceGroupName:            pulumi.String("rg1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.NspAccessRule;
import com.pulumi.azurenative.network.NspAccessRuleArgs;
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 nspAccessRule = new NspAccessRule("nspAccessRule", NspAccessRuleArgs.builder()        
            .accessRuleName("accessRule1")
            .addressPrefixes(            
                "10.11.0.0/16",
                "10.10.1.0/24")
            .direction("Inbound")
            .networkSecurityPerimeterName("nsp1")
            .profileName("profile1")
            .resourceGroupName("rg1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const nspAccessRule = new azure_native.network.NspAccessRule("nspAccessRule", {
    accessRuleName: "accessRule1",
    addressPrefixes: [
        "10.11.0.0/16",
        "10.10.1.0/24",
    ],
    direction: "Inbound",
    networkSecurityPerimeterName: "nsp1",
    profileName: "profile1",
    resourceGroupName: "rg1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

nsp_access_rule = azure_native.network.NspAccessRule("nspAccessRule",
    access_rule_name="accessRule1",
    address_prefixes=[
        "10.11.0.0/16",
        "10.10.1.0/24",
    ],
    direction="Inbound",
    network_security_perimeter_name="nsp1",
    profile_name="profile1",
    resource_group_name="rg1")
Copy
resources:
  nspAccessRule:
    type: azure-native:network:NspAccessRule
    properties:
      accessRuleName: accessRule1
      addressPrefixes:
        - 10.11.0.0/16
        - 10.10.1.0/24
      direction: Inbound
      networkSecurityPerimeterName: nsp1
      profileName: profile1
      resourceGroupName: rg1
Copy

Create NspAccessRule Resource

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

Constructor syntax

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

@overload
def NspAccessRule(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  network_security_perimeter_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  profile_name: Optional[str] = None,
                  location: Optional[str] = None,
                  fully_qualified_domain_names: Optional[Sequence[str]] = None,
                  id: Optional[str] = None,
                  access_rule_name: Optional[str] = None,
                  name: Optional[str] = None,
                  email_addresses: Optional[Sequence[str]] = None,
                  network_security_perimeters: Optional[Sequence[PerimeterBasedAccessRuleArgs]] = None,
                  phone_numbers: Optional[Sequence[str]] = None,
                  direction: Optional[Union[str, AccessRuleDirection]] = None,
                  address_prefixes: Optional[Sequence[str]] = None,
                  subscriptions: Optional[Sequence[SubscriptionIdArgs]] = None,
                  tags: Optional[Mapping[str, str]] = None)
func NewNspAccessRule(ctx *Context, name string, args NspAccessRuleArgs, opts ...ResourceOption) (*NspAccessRule, error)
public NspAccessRule(string name, NspAccessRuleArgs args, CustomResourceOptions? opts = null)
public NspAccessRule(String name, NspAccessRuleArgs args)
public NspAccessRule(String name, NspAccessRuleArgs args, CustomResourceOptions options)
type: azure-native:network:NspAccessRule
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. NspAccessRuleArgs
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. NspAccessRuleArgs
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. NspAccessRuleArgs
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. NspAccessRuleArgs
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. NspAccessRuleArgs
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 nspAccessRuleResource = new AzureNative.Network.NspAccessRule("nspAccessRuleResource", new()
{
    NetworkSecurityPerimeterName = "string",
    ResourceGroupName = "string",
    ProfileName = "string",
    Location = "string",
    FullyQualifiedDomainNames = new[]
    {
        "string",
    },
    Id = "string",
    AccessRuleName = "string",
    Name = "string",
    EmailAddresses = new[]
    {
        "string",
    },
    NetworkSecurityPerimeters = new[]
    {
        
        {
            { "id", "string" },
        },
    },
    PhoneNumbers = new[]
    {
        "string",
    },
    Direction = "string",
    AddressPrefixes = new[]
    {
        "string",
    },
    Subscriptions = new[]
    {
        
        {
            { "id", "string" },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := network.NewNspAccessRule(ctx, "nspAccessRuleResource", &network.NspAccessRuleArgs{
	NetworkSecurityPerimeterName: "string",
	ResourceGroupName:            "string",
	ProfileName:                  "string",
	Location:                     "string",
	FullyQualifiedDomainNames: []string{
		"string",
	},
	Id:             "string",
	AccessRuleName: "string",
	Name:           "string",
	EmailAddresses: []string{
		"string",
	},
	NetworkSecurityPerimeters: []map[string]interface{}{
		map[string]interface{}{
			"id": "string",
		},
	},
	PhoneNumbers: []string{
		"string",
	},
	Direction: "string",
	AddressPrefixes: []string{
		"string",
	},
	Subscriptions: []map[string]interface{}{
		map[string]interface{}{
			"id": "string",
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var nspAccessRuleResource = new NspAccessRule("nspAccessRuleResource", NspAccessRuleArgs.builder()
    .networkSecurityPerimeterName("string")
    .resourceGroupName("string")
    .profileName("string")
    .location("string")
    .fullyQualifiedDomainNames("string")
    .id("string")
    .accessRuleName("string")
    .name("string")
    .emailAddresses("string")
    .networkSecurityPerimeters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .phoneNumbers("string")
    .direction("string")
    .addressPrefixes("string")
    .subscriptions(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
nsp_access_rule_resource = azure_native.network.NspAccessRule("nspAccessRuleResource",
    network_security_perimeter_name=string,
    resource_group_name=string,
    profile_name=string,
    location=string,
    fully_qualified_domain_names=[string],
    id=string,
    access_rule_name=string,
    name=string,
    email_addresses=[string],
    network_security_perimeters=[{
        id: string,
    }],
    phone_numbers=[string],
    direction=string,
    address_prefixes=[string],
    subscriptions=[{
        id: string,
    }],
    tags={
        string: string,
    })
Copy
const nspAccessRuleResource = new azure_native.network.NspAccessRule("nspAccessRuleResource", {
    networkSecurityPerimeterName: "string",
    resourceGroupName: "string",
    profileName: "string",
    location: "string",
    fullyQualifiedDomainNames: ["string"],
    id: "string",
    accessRuleName: "string",
    name: "string",
    emailAddresses: ["string"],
    networkSecurityPerimeters: [{
        id: "string",
    }],
    phoneNumbers: ["string"],
    direction: "string",
    addressPrefixes: ["string"],
    subscriptions: [{
        id: "string",
    }],
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:network:NspAccessRule
properties:
    accessRuleName: string
    addressPrefixes:
        - string
    direction: string
    emailAddresses:
        - string
    fullyQualifiedDomainNames:
        - string
    id: string
    location: string
    name: string
    networkSecurityPerimeterName: string
    networkSecurityPerimeters:
        - id: string
    phoneNumbers:
        - string
    profileName: string
    resourceGroupName: string
    subscriptions:
        - id: string
    tags:
        string: string
Copy

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

NetworkSecurityPerimeterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network security perimeter.
ProfileName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NSP profile.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AccessRuleName Changes to this property will trigger replacement. string
The name of the NSP access rule.
AddressPrefixes List<string>
Inbound address prefixes (IPv4/IPv6)
Direction string | Pulumi.AzureNative.Network.AccessRuleDirection
Direction that specifies whether the access rules is inbound/outbound.
EmailAddresses List<string>
Outbound rules email address format.
FullyQualifiedDomainNames List<string>
Outbound rules fully qualified domain name format.
Id string
Resource ID.
Location string
Resource location.
Name string
The name of the access rule that is unique within a profile. This name can be used to access the resource.
NetworkSecurityPerimeters List<Pulumi.AzureNative.Network.Inputs.PerimeterBasedAccessRule>
Inbound rule specified by the perimeter id.
PhoneNumbers List<string>
Outbound rules phone number format.
Subscriptions List<Pulumi.AzureNative.Network.Inputs.SubscriptionId>
List of subscription ids
Tags Dictionary<string, string>
Resource tags.
NetworkSecurityPerimeterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network security perimeter.
ProfileName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NSP profile.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AccessRuleName Changes to this property will trigger replacement. string
The name of the NSP access rule.
AddressPrefixes []string
Inbound address prefixes (IPv4/IPv6)
Direction string | AccessRuleDirection
Direction that specifies whether the access rules is inbound/outbound.
EmailAddresses []string
Outbound rules email address format.
FullyQualifiedDomainNames []string
Outbound rules fully qualified domain name format.
Id string
Resource ID.
Location string
Resource location.
Name string
The name of the access rule that is unique within a profile. This name can be used to access the resource.
NetworkSecurityPerimeters []PerimeterBasedAccessRuleArgs
Inbound rule specified by the perimeter id.
PhoneNumbers []string
Outbound rules phone number format.
Subscriptions []SubscriptionIdArgs
List of subscription ids
Tags map[string]string
Resource tags.
networkSecurityPerimeterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the network security perimeter.
profileName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NSP profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
accessRuleName Changes to this property will trigger replacement. String
The name of the NSP access rule.
addressPrefixes List<String>
Inbound address prefixes (IPv4/IPv6)
direction String | AccessRuleDirection
Direction that specifies whether the access rules is inbound/outbound.
emailAddresses List<String>
Outbound rules email address format.
fullyQualifiedDomainNames List<String>
Outbound rules fully qualified domain name format.
id String
Resource ID.
location String
Resource location.
name String
The name of the access rule that is unique within a profile. This name can be used to access the resource.
networkSecurityPerimeters List<PerimeterBasedAccessRule>
Inbound rule specified by the perimeter id.
phoneNumbers List<String>
Outbound rules phone number format.
subscriptions List<SubscriptionId>
List of subscription ids
tags Map<String,String>
Resource tags.
networkSecurityPerimeterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the network security perimeter.
profileName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NSP profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
accessRuleName Changes to this property will trigger replacement. string
The name of the NSP access rule.
addressPrefixes string[]
Inbound address prefixes (IPv4/IPv6)
direction string | AccessRuleDirection
Direction that specifies whether the access rules is inbound/outbound.
emailAddresses string[]
Outbound rules email address format.
fullyQualifiedDomainNames string[]
Outbound rules fully qualified domain name format.
id string
Resource ID.
location string
Resource location.
name string
The name of the access rule that is unique within a profile. This name can be used to access the resource.
networkSecurityPerimeters PerimeterBasedAccessRule[]
Inbound rule specified by the perimeter id.
phoneNumbers string[]
Outbound rules phone number format.
subscriptions SubscriptionId[]
List of subscription ids
tags {[key: string]: string}
Resource tags.
network_security_perimeter_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the network security perimeter.
profile_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the NSP profile.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
access_rule_name Changes to this property will trigger replacement. str
The name of the NSP access rule.
address_prefixes Sequence[str]
Inbound address prefixes (IPv4/IPv6)
direction str | AccessRuleDirection
Direction that specifies whether the access rules is inbound/outbound.
email_addresses Sequence[str]
Outbound rules email address format.
fully_qualified_domain_names Sequence[str]
Outbound rules fully qualified domain name format.
id str
Resource ID.
location str
Resource location.
name str
The name of the access rule that is unique within a profile. This name can be used to access the resource.
network_security_perimeters Sequence[PerimeterBasedAccessRuleArgs]
Inbound rule specified by the perimeter id.
phone_numbers Sequence[str]
Outbound rules phone number format.
subscriptions Sequence[SubscriptionIdArgs]
List of subscription ids
tags Mapping[str, str]
Resource tags.
networkSecurityPerimeterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the network security perimeter.
profileName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NSP profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
accessRuleName Changes to this property will trigger replacement. String
The name of the NSP access rule.
addressPrefixes List<String>
Inbound address prefixes (IPv4/IPv6)
direction String | "Inbound" | "Outbound"
Direction that specifies whether the access rules is inbound/outbound.
emailAddresses List<String>
Outbound rules email address format.
fullyQualifiedDomainNames List<String>
Outbound rules fully qualified domain name format.
id String
Resource ID.
location String
Resource location.
name String
The name of the access rule that is unique within a profile. This name can be used to access the resource.
networkSecurityPerimeters List<Property Map>
Inbound rule specified by the perimeter id.
phoneNumbers List<String>
Outbound rules phone number format.
subscriptions List<Property Map>
List of subscription ids
tags Map<String>
Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the NspAccessRule resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the scope assignment resource.
Type string
Resource type.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the scope assignment resource.
Type string
Resource type.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the scope assignment resource.
type String
Resource type.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
The provisioning state of the scope assignment resource.
type string
Resource type.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
The provisioning state of the scope assignment resource.
type str
Resource type.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the scope assignment resource.
type String
Resource type.

Supporting Types

AccessRuleDirection
, AccessRuleDirectionArgs

Inbound
Inbound
Outbound
Outbound
AccessRuleDirectionInbound
Inbound
AccessRuleDirectionOutbound
Outbound
Inbound
Inbound
Outbound
Outbound
Inbound
Inbound
Outbound
Outbound
INBOUND
Inbound
OUTBOUND
Outbound
"Inbound"
Inbound
"Outbound"
Outbound

PerimeterBasedAccessRule
, PerimeterBasedAccessRuleArgs

Id string
NSP id in the ARM id format.
Id string
NSP id in the ARM id format.
id String
NSP id in the ARM id format.
id string
NSP id in the ARM id format.
id str
NSP id in the ARM id format.
id String
NSP id in the ARM id format.

PerimeterBasedAccessRuleResponse
, PerimeterBasedAccessRuleResponseArgs

Location This property is required. string
Location of the NSP supplied.
PerimeterGuid This property is required. string
Resource guid of the NSP supplied.
Id string
NSP id in the ARM id format.
Location This property is required. string
Location of the NSP supplied.
PerimeterGuid This property is required. string
Resource guid of the NSP supplied.
Id string
NSP id in the ARM id format.
location This property is required. String
Location of the NSP supplied.
perimeterGuid This property is required. String
Resource guid of the NSP supplied.
id String
NSP id in the ARM id format.
location This property is required. string
Location of the NSP supplied.
perimeterGuid This property is required. string
Resource guid of the NSP supplied.
id string
NSP id in the ARM id format.
location This property is required. str
Location of the NSP supplied.
perimeter_guid This property is required. str
Resource guid of the NSP supplied.
id str
NSP id in the ARM id format.
location This property is required. String
Location of the NSP supplied.
perimeterGuid This property is required. String
Resource guid of the NSP supplied.
id String
NSP id in the ARM id format.

SubscriptionId
, SubscriptionIdArgs

Id string
Subscription id in the ARM id format.
Id string
Subscription id in the ARM id format.
id String
Subscription id in the ARM id format.
id string
Subscription id in the ARM id format.
id str
Subscription id in the ARM id format.
id String
Subscription id in the ARM id format.

SubscriptionIdResponse
, SubscriptionIdResponseArgs

Id string
Subscription id in the ARM id format.
Id string
Subscription id in the ARM id format.
id String
Subscription id in the ARM id format.
id string
Subscription id in the ARM id format.
id str
Subscription id in the ARM id format.
id String
Subscription id in the ARM id format.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:NspAccessRule accessRule1 /subscriptions/subId/resourceGroup/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1/profiles/profile1/accessRules/accessRule1 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v1 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi