azure-native.network.NetworkSecurityPerimeterLink
Explore with Pulumi AI
The network security perimeter link resource Azure REST API version: 2024-06-01-preview.
Example Usage
NspLinksPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var networkSecurityPerimeterLink = new AzureNative.Network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLink", new()
{
AutoApprovedRemotePerimeterResourceId = "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
LinkName = "link1",
LocalInboundProfiles = new[]
{
"*",
},
NetworkSecurityPerimeterName = "nsp1",
RemoteInboundProfiles = new[]
{
"*",
},
ResourceGroupName = "rg1",
});
});
package main
import (
network "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.NewNetworkSecurityPerimeterLink(ctx, "networkSecurityPerimeterLink", &network.NetworkSecurityPerimeterLinkArgs{
AutoApprovedRemotePerimeterResourceId: pulumi.String("/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2"),
LinkName: pulumi.String("link1"),
LocalInboundProfiles: pulumi.StringArray{
pulumi.String("*"),
},
NetworkSecurityPerimeterName: pulumi.String("nsp1"),
RemoteInboundProfiles: pulumi.StringArray{
pulumi.String("*"),
},
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.NetworkSecurityPerimeterLink;
import com.pulumi.azurenative.network.NetworkSecurityPerimeterLinkArgs;
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 networkSecurityPerimeterLink = new NetworkSecurityPerimeterLink("networkSecurityPerimeterLink", NetworkSecurityPerimeterLinkArgs.builder()
.autoApprovedRemotePerimeterResourceId("/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2")
.linkName("link1")
.localInboundProfiles("*")
.networkSecurityPerimeterName("nsp1")
.remoteInboundProfiles("*")
.resourceGroupName("rg1")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkSecurityPerimeterLink = new azure_native.network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLink", {
autoApprovedRemotePerimeterResourceId: "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
linkName: "link1",
localInboundProfiles: ["*"],
networkSecurityPerimeterName: "nsp1",
remoteInboundProfiles: ["*"],
resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
network_security_perimeter_link = azure_native.network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLink",
auto_approved_remote_perimeter_resource_id="/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
link_name="link1",
local_inbound_profiles=["*"],
network_security_perimeter_name="nsp1",
remote_inbound_profiles=["*"],
resource_group_name="rg1")
resources:
networkSecurityPerimeterLink:
type: azure-native:network:NetworkSecurityPerimeterLink
properties:
autoApprovedRemotePerimeterResourceId: /subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2
linkName: link1
localInboundProfiles:
- '*'
networkSecurityPerimeterName: nsp1
remoteInboundProfiles:
- '*'
resourceGroupName: rg1
Create NetworkSecurityPerimeterLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkSecurityPerimeterLink(name: string, args: NetworkSecurityPerimeterLinkArgs, opts?: CustomResourceOptions);
@overload
def NetworkSecurityPerimeterLink(resource_name: str,
args: NetworkSecurityPerimeterLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkSecurityPerimeterLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_security_perimeter_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
auto_approved_remote_perimeter_resource_id: Optional[str] = None,
description: Optional[str] = None,
link_name: Optional[str] = None,
local_inbound_profiles: Optional[Sequence[str]] = None,
remote_inbound_profiles: Optional[Sequence[str]] = None)
func NewNetworkSecurityPerimeterLink(ctx *Context, name string, args NetworkSecurityPerimeterLinkArgs, opts ...ResourceOption) (*NetworkSecurityPerimeterLink, error)
public NetworkSecurityPerimeterLink(string name, NetworkSecurityPerimeterLinkArgs args, CustomResourceOptions? opts = null)
public NetworkSecurityPerimeterLink(String name, NetworkSecurityPerimeterLinkArgs args)
public NetworkSecurityPerimeterLink(String name, NetworkSecurityPerimeterLinkArgs args, CustomResourceOptions options)
type: azure-native:network:NetworkSecurityPerimeterLink
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 NetworkSecurityPerimeterLinkArgs
- 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 NetworkSecurityPerimeterLinkArgs
- 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 NetworkSecurityPerimeterLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkSecurityPerimeterLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkSecurityPerimeterLinkArgs
- 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 networkSecurityPerimeterLinkResource = new AzureNative.Network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLinkResource", new()
{
NetworkSecurityPerimeterName = "string",
ResourceGroupName = "string",
AutoApprovedRemotePerimeterResourceId = "string",
Description = "string",
LinkName = "string",
LocalInboundProfiles = new[]
{
"string",
},
RemoteInboundProfiles = new[]
{
"string",
},
});
example, err := network.NewNetworkSecurityPerimeterLink(ctx, "networkSecurityPerimeterLinkResource", &network.NetworkSecurityPerimeterLinkArgs{
NetworkSecurityPerimeterName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AutoApprovedRemotePerimeterResourceId: pulumi.String("string"),
Description: pulumi.String("string"),
LinkName: pulumi.String("string"),
LocalInboundProfiles: pulumi.StringArray{
pulumi.String("string"),
},
RemoteInboundProfiles: pulumi.StringArray{
pulumi.String("string"),
},
})
var networkSecurityPerimeterLinkResource = new NetworkSecurityPerimeterLink("networkSecurityPerimeterLinkResource", NetworkSecurityPerimeterLinkArgs.builder()
.networkSecurityPerimeterName("string")
.resourceGroupName("string")
.autoApprovedRemotePerimeterResourceId("string")
.description("string")
.linkName("string")
.localInboundProfiles("string")
.remoteInboundProfiles("string")
.build());
network_security_perimeter_link_resource = azure_native.network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLinkResource",
network_security_perimeter_name="string",
resource_group_name="string",
auto_approved_remote_perimeter_resource_id="string",
description="string",
link_name="string",
local_inbound_profiles=["string"],
remote_inbound_profiles=["string"])
const networkSecurityPerimeterLinkResource = new azure_native.network.NetworkSecurityPerimeterLink("networkSecurityPerimeterLinkResource", {
networkSecurityPerimeterName: "string",
resourceGroupName: "string",
autoApprovedRemotePerimeterResourceId: "string",
description: "string",
linkName: "string",
localInboundProfiles: ["string"],
remoteInboundProfiles: ["string"],
});
type: azure-native:network:NetworkSecurityPerimeterLink
properties:
autoApprovedRemotePerimeterResourceId: string
description: string
linkName: string
localInboundProfiles:
- string
networkSecurityPerimeterName: string
remoteInboundProfiles:
- string
resourceGroupName: string
NetworkSecurityPerimeterLink 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 NetworkSecurityPerimeterLink resource accepts the following input properties:
- Network
Security stringPerimeter Name - The name of the network security perimeter.
- Resource
Group stringName - The name of the resource group.
- Auto
Approved stringRemote Perimeter Resource Id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- Description string
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- Link
Name string - The name of the NSP link.
- Local
Inbound List<string>Profiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- Remote
Inbound List<string>Profiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
- Network
Security stringPerimeter Name - The name of the network security perimeter.
- Resource
Group stringName - The name of the resource group.
- Auto
Approved stringRemote Perimeter Resource Id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- Description string
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- Link
Name string - The name of the NSP link.
- Local
Inbound []stringProfiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- Remote
Inbound []stringProfiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
- network
Security StringPerimeter Name - The name of the network security perimeter.
- resource
Group StringName - The name of the resource group.
- auto
Approved StringRemote Perimeter Resource Id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- description String
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- link
Name String - The name of the NSP link.
- local
Inbound List<String>Profiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- remote
Inbound List<String>Profiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
- network
Security stringPerimeter Name - The name of the network security perimeter.
- resource
Group stringName - The name of the resource group.
- auto
Approved stringRemote Perimeter Resource Id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- description string
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- link
Name string - The name of the NSP link.
- local
Inbound string[]Profiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- remote
Inbound string[]Profiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
- network_
security_ strperimeter_ name - The name of the network security perimeter.
- resource_
group_ strname - The name of the resource group.
- auto_
approved_ strremote_ perimeter_ resource_ id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- description str
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- link_
name str - The name of the NSP link.
- local_
inbound_ Sequence[str]profiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- remote_
inbound_ Sequence[str]profiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
- network
Security StringPerimeter Name - The name of the network security perimeter.
- resource
Group StringName - The name of the resource group.
- auto
Approved StringRemote Perimeter Resource Id - Perimeter ARM Id for the remote NSP with which the link gets created in Auto-approval mode. It should be used when the NSP admin have Microsoft.Network/networkSecurityPerimeters/linkPerimeter/action permission on the remote NSP resource.
- description String
- A message passed to the owner of the remote NSP link resource with this connection request. In case of Auto-approved flow, it is default to 'Auto Approved'. Restricted to 140 chars.
- link
Name String - The name of the NSP link.
- local
Inbound List<String>Profiles - Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles.
- remote
Inbound List<String>Profiles - Remote Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. This property can only be updated in auto-approval mode.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkSecurityPerimeterLink resource produces the following output properties:
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Local
Outbound List<string>Profiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the NSP Link resource.
- Remote
Outbound List<string>Profiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- Remote
Perimeter stringGuid - Remote NSP Guid with which the link gets created.
- Remote
Perimeter stringLocation - Remote NSP location with which the link gets created.
- Status string
- The NSP link state.
- Type string
- Resource type.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Local
Outbound []stringProfiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the NSP Link resource.
- Remote
Outbound []stringProfiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- Remote
Perimeter stringGuid - Remote NSP Guid with which the link gets created.
- Remote
Perimeter stringLocation - Remote NSP location with which the link gets created.
- Status string
- The NSP link state.
- Type string
- Resource type.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- local
Outbound List<String>Profiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the NSP Link resource.
- remote
Outbound List<String>Profiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- remote
Perimeter StringGuid - Remote NSP Guid with which the link gets created.
- remote
Perimeter StringLocation - Remote NSP location with which the link gets created.
- status String
- The NSP link state.
- type String
- Resource type.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- The provider-assigned unique ID for this managed resource.
- local
Outbound string[]Profiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- name string
- Resource name.
- provisioning
State string - The provisioning state of the NSP Link resource.
- remote
Outbound string[]Profiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- remote
Perimeter stringGuid - Remote NSP Guid with which the link gets created.
- remote
Perimeter stringLocation - Remote NSP location with which the link gets created.
- status string
- The NSP link state.
- type string
- Resource type.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- The provider-assigned unique ID for this managed resource.
- local_
outbound_ Sequence[str]profiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- name str
- Resource name.
- provisioning_
state str - The provisioning state of the NSP Link resource.
- remote_
outbound_ Sequence[str]profiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- remote_
perimeter_ strguid - Remote NSP Guid with which the link gets created.
- remote_
perimeter_ strlocation - Remote NSP location with which the link gets created.
- status str
- The NSP link state.
- type str
- Resource type.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- local
Outbound List<String>Profiles - Local Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the NSP Link resource.
- remote
Outbound List<String>Profiles - Remote Outbound profile names from which Outbound is allowed. In current version, it is readonly property and it's value is set to ['*'] to allow outbound from all profiles. In later version, user will be able to modify it.
- remote
Perimeter StringGuid - Remote NSP Guid with which the link gets created.
- remote
Perimeter StringLocation - Remote NSP location with which the link gets created.
- status String
- The NSP link state.
- 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:NetworkSecurityPerimeterLink link1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityPerimeters/{networkSecurityPerimeterName}/links/{linkName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0