1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. NspProfile
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.network.NspProfile

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    The network security perimeter profile resource Azure REST API version: 2021-02-01-preview. Prior API version in Azure Native 1.x: 2021-02-01-preview.

    Other available API versions: 2023-07-01-preview, 2023-08-01-preview.

    Example Usage

    NspProfilesPut

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var nspProfile = new AzureNative.Network.NspProfile("nspProfile", new()
        {
            NetworkSecurityPerimeterName = "nsp1",
            ProfileName = "profile1",
            ResourceGroupName = "rg1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/network/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := network.NewNspProfile(ctx, "nspProfile", &network.NspProfileArgs{
    			NetworkSecurityPerimeterName: pulumi.String("nsp1"),
    			ProfileName:                  pulumi.String("profile1"),
    			ResourceGroupName:            pulumi.String("rg1"),
    		})
    		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.network.NspProfile;
    import com.pulumi.azurenative.network.NspProfileArgs;
    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 nspProfile = new NspProfile("nspProfile", NspProfileArgs.builder()        
                .networkSecurityPerimeterName("nsp1")
                .profileName("profile1")
                .resourceGroupName("rg1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    nsp_profile = azure_native.network.NspProfile("nspProfile",
        network_security_perimeter_name="nsp1",
        profile_name="profile1",
        resource_group_name="rg1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const nspProfile = new azure_native.network.NspProfile("nspProfile", {
        networkSecurityPerimeterName: "nsp1",
        profileName: "profile1",
        resourceGroupName: "rg1",
    });
    
    resources:
      nspProfile:
        type: azure-native:network:NspProfile
        properties:
          networkSecurityPerimeterName: nsp1
          profileName: profile1
          resourceGroupName: rg1
    

    Create NspProfile Resource

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

    Constructor syntax

    new NspProfile(name: string, args: NspProfileArgs, opts?: CustomResourceOptions);
    @overload
    def NspProfile(resource_name: str,
                   args: NspProfileArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def NspProfile(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   network_security_perimeter_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   id: Optional[str] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   profile_name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewNspProfile(ctx *Context, name string, args NspProfileArgs, opts ...ResourceOption) (*NspProfile, error)
    public NspProfile(string name, NspProfileArgs args, CustomResourceOptions? opts = null)
    public NspProfile(String name, NspProfileArgs args)
    public NspProfile(String name, NspProfileArgs args, CustomResourceOptions options)
    
    type: azure-native:network:NspProfile
    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 NspProfileArgs
    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 NspProfileArgs
    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 NspProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NspProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NspProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var nspProfileResource = new AzureNative.Network.NspProfile("nspProfileResource", new()
    {
        NetworkSecurityPerimeterName = "string",
        ResourceGroupName = "string",
        Id = "string",
        Location = "string",
        Name = "string",
        ProfileName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := network.NewNspProfile(ctx, "nspProfileResource", &network.NspProfileArgs{
    NetworkSecurityPerimeterName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Id: pulumi.String("string"),
    Location: pulumi.String("string"),
    Name: pulumi.String("string"),
    ProfileName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var nspProfileResource = new NspProfile("nspProfileResource", NspProfileArgs.builder()        
        .networkSecurityPerimeterName("string")
        .resourceGroupName("string")
        .id("string")
        .location("string")
        .name("string")
        .profileName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    nsp_profile_resource = azure_native.network.NspProfile("nspProfileResource",
        network_security_perimeter_name="string",
        resource_group_name="string",
        id="string",
        location="string",
        name="string",
        profile_name="string",
        tags={
            "string": "string",
        })
    
    const nspProfileResource = new azure_native.network.NspProfile("nspProfileResource", {
        networkSecurityPerimeterName: "string",
        resourceGroupName: "string",
        id: "string",
        location: "string",
        name: "string",
        profileName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:network:NspProfile
    properties:
        id: string
        location: string
        name: string
        networkSecurityPerimeterName: string
        profileName: string
        resourceGroupName: string
        tags:
            string: string
    

    NspProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The NspProfile resource accepts the following input properties:

    NetworkSecurityPerimeterName string
    The name of the network security perimeter.
    ResourceGroupName string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    ProfileName string
    The name of the NSP profile.
    Tags Dictionary<string, string>
    Resource tags.
    NetworkSecurityPerimeterName string
    The name of the network security perimeter.
    ResourceGroupName string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    ProfileName string
    The name of the NSP profile.
    Tags map[string]string
    Resource tags.
    networkSecurityPerimeterName String
    The name of the network security perimeter.
    resourceGroupName String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    profileName String
    The name of the NSP profile.
    tags Map<String,String>
    Resource tags.
    networkSecurityPerimeterName string
    The name of the network security perimeter.
    resourceGroupName string
    The name of the resource group.
    id string
    Resource ID.
    location string
    Resource location.
    name string
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    profileName string
    The name of the NSP profile.
    tags {[key: string]: string}
    Resource tags.
    network_security_perimeter_name str
    The name of the network security perimeter.
    resource_group_name str
    The name of the resource group.
    id str
    Resource ID.
    location str
    Resource location.
    name str
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    profile_name str
    The name of the NSP profile.
    tags Mapping[str, str]
    Resource tags.
    networkSecurityPerimeterName String
    The name of the network security perimeter.
    resourceGroupName String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the profile resource that is unique within a perimeter. This name can be used to access the resource.
    profileName String
    The name of the NSP profile.
    tags Map<String>
    Resource tags.

    Outputs

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

    AccessRulesVersion string
    Version number that increases with every update to access rules within the profile.
    DiagnosticSettingsVersion string
    Version number that increases with every update to diagnostic settings within the profile.
    Id string
    The provider-assigned unique ID for this managed resource.
    Type string
    Resource type.
    AccessRulesVersion string
    Version number that increases with every update to access rules within the profile.
    DiagnosticSettingsVersion string
    Version number that increases with every update to diagnostic settings within the profile.
    Id string
    The provider-assigned unique ID for this managed resource.
    Type string
    Resource type.
    accessRulesVersion String
    Version number that increases with every update to access rules within the profile.
    diagnosticSettingsVersion String
    Version number that increases with every update to diagnostic settings within the profile.
    id String
    The provider-assigned unique ID for this managed resource.
    type String
    Resource type.
    accessRulesVersion string
    Version number that increases with every update to access rules within the profile.
    diagnosticSettingsVersion string
    Version number that increases with every update to diagnostic settings within the profile.
    id string
    The provider-assigned unique ID for this managed resource.
    type string
    Resource type.
    access_rules_version str
    Version number that increases with every update to access rules within the profile.
    diagnostic_settings_version str
    Version number that increases with every update to diagnostic settings within the profile.
    id str
    The provider-assigned unique ID for this managed resource.
    type str
    Resource type.
    accessRulesVersion String
    Version number that increases with every update to access rules within the profile.
    diagnosticSettingsVersion String
    Version number that increases with every update to diagnostic settings within the profile.
    id String
    The provider-assigned unique ID for this managed resource.
    type String
    Resource type.

    Import

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

    $ pulumi import azure-native:network:NspProfile profile1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityPerimeters/{networkSecurityPerimeterName}/profiles/{profileName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi