azure logo
Azure Classic v5.38.0, Mar 21 23

azure.signalr.ServiceNetworkAcl

Manages the Network ACL for a SignalR service.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleService = new Azure.SignalR.Service("exampleService", new()
    {
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
        Sku = new Azure.SignalR.Inputs.ServiceSkuArgs
        {
            Name = "Standard_S1",
            Capacity = 1,
        },
    });

    var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        AddressSpaces = new[]
        {
            "10.5.0.0/16",
        },
    });

    var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        VirtualNetworkName = exampleVirtualNetwork.Name,
        AddressPrefixes = new[]
        {
            "10.5.2.0/24",
        },
        EnforcePrivateLinkEndpointNetworkPolicies = true,
    });

    var exampleEndpoint = new Azure.PrivateLink.Endpoint("exampleEndpoint", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        SubnetId = exampleSubnet.Id,
        PrivateServiceConnection = new Azure.PrivateLink.Inputs.EndpointPrivateServiceConnectionArgs
        {
            Name = "psc-sig-test",
            IsManualConnection = false,
            PrivateConnectionResourceId = exampleService.Id,
            SubresourceNames = new[]
            {
                "signalr",
            },
        },
    });

    var exampleServiceNetworkAcl = new Azure.SignalR.ServiceNetworkAcl("exampleServiceNetworkAcl", new()
    {
        SignalrServiceId = exampleService.Id,
        DefaultAction = "Deny",
        PublicNetwork = new Azure.SignalR.Inputs.ServiceNetworkAclPublicNetworkArgs
        {
            AllowedRequestTypes = new[]
            {
                "ClientConnection",
            },
        },
        PrivateEndpoints = new[]
        {
            new Azure.SignalR.Inputs.ServiceNetworkAclPrivateEndpointArgs
            {
                Id = exampleEndpoint.Id,
                AllowedRequestTypes = new[]
                {
                    "ServerConnection",
                },
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/privatelink"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/signalr"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleService, err := signalr.NewService(ctx, "exampleService", &signalr.ServiceArgs{
			Location:          exampleResourceGroup.Location,
			ResourceGroupName: exampleResourceGroup.Name,
			Sku: &signalr.ServiceSkuArgs{
				Name:     pulumi.String("Standard_S1"),
				Capacity: pulumi.Int(1),
			},
		})
		if err != nil {
			return err
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
			ResourceGroupName: exampleResourceGroup.Name,
			Location:          exampleResourceGroup.Location,
			AddressSpaces: pulumi.StringArray{
				pulumi.String("10.5.0.0/16"),
			},
		})
		if err != nil {
			return err
		}
		exampleSubnet, err := network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
			ResourceGroupName:  exampleResourceGroup.Name,
			VirtualNetworkName: exampleVirtualNetwork.Name,
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("10.5.2.0/24"),
			},
			EnforcePrivateLinkEndpointNetworkPolicies: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		exampleEndpoint, err := privatelink.NewEndpoint(ctx, "exampleEndpoint", &privatelink.EndpointArgs{
			ResourceGroupName: exampleResourceGroup.Name,
			Location:          exampleResourceGroup.Location,
			SubnetId:          exampleSubnet.ID(),
			PrivateServiceConnection: &privatelink.EndpointPrivateServiceConnectionArgs{
				Name:                        pulumi.String("psc-sig-test"),
				IsManualConnection:          pulumi.Bool(false),
				PrivateConnectionResourceId: exampleService.ID(),
				SubresourceNames: pulumi.StringArray{
					pulumi.String("signalr"),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = signalr.NewServiceNetworkAcl(ctx, "exampleServiceNetworkAcl", &signalr.ServiceNetworkAclArgs{
			SignalrServiceId: exampleService.ID(),
			DefaultAction:    pulumi.String("Deny"),
			PublicNetwork: &signalr.ServiceNetworkAclPublicNetworkArgs{
				AllowedRequestTypes: pulumi.StringArray{
					pulumi.String("ClientConnection"),
				},
			},
			PrivateEndpoints: signalr.ServiceNetworkAclPrivateEndpointArray{
				&signalr.ServiceNetworkAclPrivateEndpointArgs{
					Id: exampleEndpoint.ID(),
					AllowedRequestTypes: pulumi.StringArray{
						pulumi.String("ServerConnection"),
					},
				},
			},
		})
		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.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.signalr.Service;
import com.pulumi.azure.signalr.ServiceArgs;
import com.pulumi.azure.signalr.inputs.ServiceSkuArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.privatelink.Endpoint;
import com.pulumi.azure.privatelink.EndpointArgs;
import com.pulumi.azure.privatelink.inputs.EndpointPrivateServiceConnectionArgs;
import com.pulumi.azure.signalr.ServiceNetworkAcl;
import com.pulumi.azure.signalr.ServiceNetworkAclArgs;
import com.pulumi.azure.signalr.inputs.ServiceNetworkAclPublicNetworkArgs;
import com.pulumi.azure.signalr.inputs.ServiceNetworkAclPrivateEndpointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleService = new Service("exampleService", ServiceArgs.builder()        
            .location(exampleResourceGroup.location())
            .resourceGroupName(exampleResourceGroup.name())
            .sku(ServiceSkuArgs.builder()
                .name("Standard_S1")
                .capacity(1)
                .build())
            .build());

        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .location(exampleResourceGroup.location())
            .addressSpaces("10.5.0.0/16")
            .build());

        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.5.2.0/24")
            .enforcePrivateLinkEndpointNetworkPolicies(true)
            .build());

        var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .location(exampleResourceGroup.location())
            .subnetId(exampleSubnet.id())
            .privateServiceConnection(EndpointPrivateServiceConnectionArgs.builder()
                .name("psc-sig-test")
                .isManualConnection(false)
                .privateConnectionResourceId(exampleService.id())
                .subresourceNames("signalr")
                .build())
            .build());

        var exampleServiceNetworkAcl = new ServiceNetworkAcl("exampleServiceNetworkAcl", ServiceNetworkAclArgs.builder()        
            .signalrServiceId(exampleService.id())
            .defaultAction("Deny")
            .publicNetwork(ServiceNetworkAclPublicNetworkArgs.builder()
                .allowedRequestTypes("ClientConnection")
                .build())
            .privateEndpoints(ServiceNetworkAclPrivateEndpointArgs.builder()
                .id(exampleEndpoint.id())
                .allowedRequestTypes("ServerConnection")
                .build())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_service = azure.signalr.Service("exampleService",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name,
    sku=azure.signalr.ServiceSkuArgs(
        name="Standard_S1",
        capacity=1,
    ))
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    address_spaces=["10.5.0.0/16"])
example_subnet = azure.network.Subnet("exampleSubnet",
    resource_group_name=example_resource_group.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["10.5.2.0/24"],
    enforce_private_link_endpoint_network_policies=True)
example_endpoint = azure.privatelink.Endpoint("exampleEndpoint",
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    subnet_id=example_subnet.id,
    private_service_connection=azure.privatelink.EndpointPrivateServiceConnectionArgs(
        name="psc-sig-test",
        is_manual_connection=False,
        private_connection_resource_id=example_service.id,
        subresource_names=["signalr"],
    ))
example_service_network_acl = azure.signalr.ServiceNetworkAcl("exampleServiceNetworkAcl",
    signalr_service_id=example_service.id,
    default_action="Deny",
    public_network=azure.signalr.ServiceNetworkAclPublicNetworkArgs(
        allowed_request_types=["ClientConnection"],
    ),
    private_endpoints=[azure.signalr.ServiceNetworkAclPrivateEndpointArgs(
        id=example_endpoint.id,
        allowed_request_types=["ServerConnection"],
    )])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleService = new azure.signalr.Service("exampleService", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
    sku: {
        name: "Standard_S1",
        capacity: 1,
    },
});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    addressSpaces: ["10.5.0.0/16"],
});
const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
    resourceGroupName: exampleResourceGroup.name,
    virtualNetworkName: exampleVirtualNetwork.name,
    addressPrefixes: ["10.5.2.0/24"],
    enforcePrivateLinkEndpointNetworkPolicies: true,
});
const exampleEndpoint = new azure.privatelink.Endpoint("exampleEndpoint", {
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    subnetId: exampleSubnet.id,
    privateServiceConnection: {
        name: "psc-sig-test",
        isManualConnection: false,
        privateConnectionResourceId: exampleService.id,
        subresourceNames: ["signalr"],
    },
});
const exampleServiceNetworkAcl = new azure.signalr.ServiceNetworkAcl("exampleServiceNetworkAcl", {
    signalrServiceId: exampleService.id,
    defaultAction: "Deny",
    publicNetwork: {
        allowedRequestTypes: ["ClientConnection"],
    },
    privateEndpoints: [{
        id: exampleEndpoint.id,
        allowedRequestTypes: ["ServerConnection"],
    }],
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleService:
    type: azure:signalr:Service
    properties:
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      sku:
        name: Standard_S1
        capacity: 1
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      addressSpaces:
        - 10.5.0.0/16
  exampleSubnet:
    type: azure:network:Subnet
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.5.2.0/24
      enforcePrivateLinkEndpointNetworkPolicies: true
  exampleEndpoint:
    type: azure:privatelink:Endpoint
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      subnetId: ${exampleSubnet.id}
      privateServiceConnection:
        name: psc-sig-test
        isManualConnection: false
        privateConnectionResourceId: ${exampleService.id}
        subresourceNames:
          - signalr
  exampleServiceNetworkAcl:
    type: azure:signalr:ServiceNetworkAcl
    properties:
      signalrServiceId: ${exampleService.id}
      defaultAction: Deny
      publicNetwork:
        allowedRequestTypes:
          - ClientConnection
      privateEndpoints:
        - id: ${exampleEndpoint.id}
          allowedRequestTypes:
            - ServerConnection

Create ServiceNetworkAcl Resource

new ServiceNetworkAcl(name: string, args: ServiceNetworkAclArgs, opts?: CustomResourceOptions);
@overload
def ServiceNetworkAcl(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      default_action: Optional[str] = None,
                      private_endpoints: Optional[Sequence[ServiceNetworkAclPrivateEndpointArgs]] = None,
                      public_network: Optional[ServiceNetworkAclPublicNetworkArgs] = None,
                      signalr_service_id: Optional[str] = None)
@overload
def ServiceNetworkAcl(resource_name: str,
                      args: ServiceNetworkAclArgs,
                      opts: Optional[ResourceOptions] = None)
func NewServiceNetworkAcl(ctx *Context, name string, args ServiceNetworkAclArgs, opts ...ResourceOption) (*ServiceNetworkAcl, error)
public ServiceNetworkAcl(string name, ServiceNetworkAclArgs args, CustomResourceOptions? opts = null)
public ServiceNetworkAcl(String name, ServiceNetworkAclArgs args)
public ServiceNetworkAcl(String name, ServiceNetworkAclArgs args, CustomResourceOptions options)
type: azure:signalr:ServiceNetworkAcl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ServiceNetworkAclArgs
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 ServiceNetworkAclArgs
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 ServiceNetworkAclArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ServiceNetworkAclArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ServiceNetworkAclArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

DefaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

PublicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

SignalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

PrivateEndpoints List<ServiceNetworkAclPrivateEndpointArgs>

A private_endpoint block as defined below.

DefaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

PublicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

SignalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

PrivateEndpoints []ServiceNetworkAclPrivateEndpointArgs

A private_endpoint block as defined below.

defaultAction String

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

publicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalrServiceId String

The ID of the SignalR service. Changing this forces a new resource to be created.

privateEndpoints List<ServiceNetworkAclPrivateEndpointArgs>

A private_endpoint block as defined below.

defaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

publicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

privateEndpoints ServiceNetworkAclPrivateEndpointArgs[]

A private_endpoint block as defined below.

default_action str

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

public_network ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalr_service_id str

The ID of the SignalR service. Changing this forces a new resource to be created.

private_endpoints Sequence[ServiceNetworkAclPrivateEndpointArgs]

A private_endpoint block as defined below.

defaultAction String

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

publicNetwork Property Map

A public_network block as defined below.

signalrServiceId String

The ID of the SignalR service. Changing this forces a new resource to be created.

privateEndpoints List<Property Map>

A private_endpoint block as defined below.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing ServiceNetworkAcl Resource

Get an existing ServiceNetworkAcl resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ServiceNetworkAclState, opts?: CustomResourceOptions): ServiceNetworkAcl
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        default_action: Optional[str] = None,
        private_endpoints: Optional[Sequence[ServiceNetworkAclPrivateEndpointArgs]] = None,
        public_network: Optional[ServiceNetworkAclPublicNetworkArgs] = None,
        signalr_service_id: Optional[str] = None) -> ServiceNetworkAcl
func GetServiceNetworkAcl(ctx *Context, name string, id IDInput, state *ServiceNetworkAclState, opts ...ResourceOption) (*ServiceNetworkAcl, error)
public static ServiceNetworkAcl Get(string name, Input<string> id, ServiceNetworkAclState? state, CustomResourceOptions? opts = null)
public static ServiceNetworkAcl get(String name, Output<String> id, ServiceNetworkAclState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DefaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

PrivateEndpoints List<ServiceNetworkAclPrivateEndpointArgs>

A private_endpoint block as defined below.

PublicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

SignalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

DefaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

PrivateEndpoints []ServiceNetworkAclPrivateEndpointArgs

A private_endpoint block as defined below.

PublicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

SignalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

defaultAction String

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

privateEndpoints List<ServiceNetworkAclPrivateEndpointArgs>

A private_endpoint block as defined below.

publicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalrServiceId String

The ID of the SignalR service. Changing this forces a new resource to be created.

defaultAction string

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

privateEndpoints ServiceNetworkAclPrivateEndpointArgs[]

A private_endpoint block as defined below.

publicNetwork ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalrServiceId string

The ID of the SignalR service. Changing this forces a new resource to be created.

default_action str

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

private_endpoints Sequence[ServiceNetworkAclPrivateEndpointArgs]

A private_endpoint block as defined below.

public_network ServiceNetworkAclPublicNetworkArgs

A public_network block as defined below.

signalr_service_id str

The ID of the SignalR service. Changing this forces a new resource to be created.

defaultAction String

The default action to control the network access when no other rule matches. Possible values are Allow and Deny.

privateEndpoints List<Property Map>

A private_endpoint block as defined below.

publicNetwork Property Map

A public_network block as defined below.

signalrServiceId String

The ID of the SignalR service. Changing this forces a new resource to be created.

Supporting Types

ServiceNetworkAclPrivateEndpoint

Id string

The ID of the Private Endpoint which is based on the SignalR service.

AllowedRequestTypes List<string>

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

DeniedRequestTypes List<string>

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

Id string

The ID of the Private Endpoint which is based on the SignalR service.

AllowedRequestTypes []string

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

DeniedRequestTypes []string

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

id String

The ID of the Private Endpoint which is based on the SignalR service.

allowedRequestTypes List<String>

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes List<String>

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

id string

The ID of the Private Endpoint which is based on the SignalR service.

allowedRequestTypes string[]

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes string[]

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

id str

The ID of the Private Endpoint which is based on the SignalR service.

allowed_request_types Sequence[str]

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

denied_request_types Sequence[str]

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

id String

The ID of the Private Endpoint which is based on the SignalR service.

allowedRequestTypes List<String>

The allowed request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes List<String>

The denied request types for the Private Endpoint Connection. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

ServiceNetworkAclPublicNetwork

AllowedRequestTypes List<string>

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

DeniedRequestTypes List<string>

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

AllowedRequestTypes []string

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

DeniedRequestTypes []string

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

allowedRequestTypes List<String>

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes List<String>

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

allowedRequestTypes string[]

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes string[]

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

allowed_request_types Sequence[str]

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

denied_request_types Sequence[str]

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

allowedRequestTypes List<String>

The allowed request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

deniedRequestTypes List<String>

The denied request types for the public network. Possible values are ClientConnection, ServerConnection, RESTAPI and Trace.

Import

Network ACLs for a SignalR service can be imported using the resource id, e.g.

 $ pulumi import azure:signalr/serviceNetworkAcl:ServiceNetworkAcl example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.SignalRService/signalR/signalr1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.