1. Packages
  2. Azure Classic
  3. API Docs
  4. webpubsub
  5. NetworkAcl

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.webpubsub.NetworkAcl

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages the Network ACL for a Web Pubsub.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "terraform-webpubsub",
        location: "east us",
    });
    const exampleService = new azure.webpubsub.Service("example", {
        name: "tfex-webpubsub",
        location: example.location,
        resourceGroupName: example.name,
        sku: "Standard_S1",
        capacity: 1,
    });
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
        name: "example-vnet",
        resourceGroupName: example.name,
        location: example.location,
        addressSpaces: ["10.5.0.0/16"],
    });
    const exampleSubnet = new azure.network.Subnet("example", {
        name: "example-subnet",
        resourceGroupName: example.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.5.2.0/24"],
        enforcePrivateLinkEndpointNetworkPolicies: true,
    });
    const exampleEndpoint = new azure.privatelink.Endpoint("example", {
        name: "example-privateendpoint",
        resourceGroupName: example.name,
        location: example.location,
        subnetId: exampleSubnet.id,
        privateServiceConnection: {
            name: "psc-sig-test",
            isManualConnection: false,
            privateConnectionResourceId: exampleService.id,
            subresourceNames: ["webpubsub"],
        },
    });
    const exampleNetworkAcl = new azure.webpubsub.NetworkAcl("example", {
        webPubsubId: exampleService.id,
        defaultAction: "Allow",
        publicNetwork: {
            deniedRequestTypes: ["ClientConnection"],
        },
        privateEndpoints: [{
            id: exampleEndpoint.id,
            deniedRequestTypes: [
                "RESTAPI",
                "ClientConnection",
            ],
        }],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="terraform-webpubsub",
        location="east us")
    example_service = azure.webpubsub.Service("example",
        name="tfex-webpubsub",
        location=example.location,
        resource_group_name=example.name,
        sku="Standard_S1",
        capacity=1)
    example_virtual_network = azure.network.VirtualNetwork("example",
        name="example-vnet",
        resource_group_name=example.name,
        location=example.location,
        address_spaces=["10.5.0.0/16"])
    example_subnet = azure.network.Subnet("example",
        name="example-subnet",
        resource_group_name=example.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("example",
        name="example-privateendpoint",
        resource_group_name=example.name,
        location=example.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=["webpubsub"],
        ))
    example_network_acl = azure.webpubsub.NetworkAcl("example",
        web_pubsub_id=example_service.id,
        default_action="Allow",
        public_network=azure.webpubsub.NetworkAclPublicNetworkArgs(
            denied_request_types=["ClientConnection"],
        ),
        private_endpoints=[azure.webpubsub.NetworkAclPrivateEndpointArgs(
            id=example_endpoint.id,
            denied_request_types=[
                "RESTAPI",
                "ClientConnection",
            ],
        )])
    
    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/webpubsub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("terraform-webpubsub"),
    			Location: pulumi.String("east us"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleService, err := webpubsub.NewService(ctx, "example", &webpubsub.ServiceArgs{
    			Name:              pulumi.String("tfex-webpubsub"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			Sku:               pulumi.String("Standard_S1"),
    			Capacity:          pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
    			Name:              pulumi.String("example-vnet"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.5.0.0/16"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
    			Name:               pulumi.String("example-subnet"),
    			ResourceGroupName:  example.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, "example", &privatelink.EndpointArgs{
    			Name:              pulumi.String("example-privateendpoint"),
    			ResourceGroupName: example.Name,
    			Location:          example.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("webpubsub"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = webpubsub.NewNetworkAcl(ctx, "example", &webpubsub.NetworkAclArgs{
    			WebPubsubId:   exampleService.ID(),
    			DefaultAction: pulumi.String("Allow"),
    			PublicNetwork: &webpubsub.NetworkAclPublicNetworkArgs{
    				DeniedRequestTypes: pulumi.StringArray{
    					pulumi.String("ClientConnection"),
    				},
    			},
    			PrivateEndpoints: webpubsub.NetworkAclPrivateEndpointArray{
    				&webpubsub.NetworkAclPrivateEndpointArgs{
    					Id: exampleEndpoint.ID(),
    					DeniedRequestTypes: pulumi.StringArray{
    						pulumi.String("RESTAPI"),
    						pulumi.String("ClientConnection"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "terraform-webpubsub",
            Location = "east us",
        });
    
        var exampleService = new Azure.WebPubSub.Service("example", new()
        {
            Name = "tfex-webpubsub",
            Location = example.Location,
            ResourceGroupName = example.Name,
            Sku = "Standard_S1",
            Capacity = 1,
        });
    
        var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
        {
            Name = "example-vnet",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AddressSpaces = new[]
            {
                "10.5.0.0/16",
            },
        });
    
        var exampleSubnet = new Azure.Network.Subnet("example", new()
        {
            Name = "example-subnet",
            ResourceGroupName = example.Name,
            VirtualNetworkName = exampleVirtualNetwork.Name,
            AddressPrefixes = new[]
            {
                "10.5.2.0/24",
            },
            EnforcePrivateLinkEndpointNetworkPolicies = true,
        });
    
        var exampleEndpoint = new Azure.PrivateLink.Endpoint("example", new()
        {
            Name = "example-privateendpoint",
            ResourceGroupName = example.Name,
            Location = example.Location,
            SubnetId = exampleSubnet.Id,
            PrivateServiceConnection = new Azure.PrivateLink.Inputs.EndpointPrivateServiceConnectionArgs
            {
                Name = "psc-sig-test",
                IsManualConnection = false,
                PrivateConnectionResourceId = exampleService.Id,
                SubresourceNames = new[]
                {
                    "webpubsub",
                },
            },
        });
    
        var exampleNetworkAcl = new Azure.WebPubSub.NetworkAcl("example", new()
        {
            WebPubsubId = exampleService.Id,
            DefaultAction = "Allow",
            PublicNetwork = new Azure.WebPubSub.Inputs.NetworkAclPublicNetworkArgs
            {
                DeniedRequestTypes = new[]
                {
                    "ClientConnection",
                },
            },
            PrivateEndpoints = new[]
            {
                new Azure.WebPubSub.Inputs.NetworkAclPrivateEndpointArgs
                {
                    Id = exampleEndpoint.Id,
                    DeniedRequestTypes = new[]
                    {
                        "RESTAPI",
                        "ClientConnection",
                    },
                },
            },
        });
    
    });
    
    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.webpubsub.Service;
    import com.pulumi.azure.webpubsub.ServiceArgs;
    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.webpubsub.NetworkAcl;
    import com.pulumi.azure.webpubsub.NetworkAclArgs;
    import com.pulumi.azure.webpubsub.inputs.NetworkAclPublicNetworkArgs;
    import com.pulumi.azure.webpubsub.inputs.NetworkAclPrivateEndpointArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("terraform-webpubsub")
                .location("east us")
                .build());
    
            var exampleService = new Service("exampleService", ServiceArgs.builder()        
                .name("tfex-webpubsub")
                .location(example.location())
                .resourceGroupName(example.name())
                .sku("Standard_S1")
                .capacity(1)
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
                .name("example-vnet")
                .resourceGroupName(example.name())
                .location(example.location())
                .addressSpaces("10.5.0.0/16")
                .build());
    
            var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
                .name("example-subnet")
                .resourceGroupName(example.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.5.2.0/24")
                .enforcePrivateLinkEndpointNetworkPolicies(true)
                .build());
    
            var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()        
                .name("example-privateendpoint")
                .resourceGroupName(example.name())
                .location(example.location())
                .subnetId(exampleSubnet.id())
                .privateServiceConnection(EndpointPrivateServiceConnectionArgs.builder()
                    .name("psc-sig-test")
                    .isManualConnection(false)
                    .privateConnectionResourceId(exampleService.id())
                    .subresourceNames("webpubsub")
                    .build())
                .build());
    
            var exampleNetworkAcl = new NetworkAcl("exampleNetworkAcl", NetworkAclArgs.builder()        
                .webPubsubId(exampleService.id())
                .defaultAction("Allow")
                .publicNetwork(NetworkAclPublicNetworkArgs.builder()
                    .deniedRequestTypes("ClientConnection")
                    .build())
                .privateEndpoints(NetworkAclPrivateEndpointArgs.builder()
                    .id(exampleEndpoint.id())
                    .deniedRequestTypes(                
                        "RESTAPI",
                        "ClientConnection")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: terraform-webpubsub
          location: east us
      exampleService:
        type: azure:webpubsub:Service
        name: example
        properties:
          name: tfex-webpubsub
          location: ${example.location}
          resourceGroupName: ${example.name}
          sku: Standard_S1
          capacity: 1
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        name: example
        properties:
          name: example-vnet
          resourceGroupName: ${example.name}
          location: ${example.location}
          addressSpaces:
            - 10.5.0.0/16
      exampleSubnet:
        type: azure:network:Subnet
        name: example
        properties:
          name: example-subnet
          resourceGroupName: ${example.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.5.2.0/24
          enforcePrivateLinkEndpointNetworkPolicies: true
      exampleEndpoint:
        type: azure:privatelink:Endpoint
        name: example
        properties:
          name: example-privateendpoint
          resourceGroupName: ${example.name}
          location: ${example.location}
          subnetId: ${exampleSubnet.id}
          privateServiceConnection:
            name: psc-sig-test
            isManualConnection: false
            privateConnectionResourceId: ${exampleService.id}
            subresourceNames:
              - webpubsub
      exampleNetworkAcl:
        type: azure:webpubsub:NetworkAcl
        name: example
        properties:
          webPubsubId: ${exampleService.id}
          defaultAction: Allow
          publicNetwork:
            deniedRequestTypes:
              - ClientConnection
          privateEndpoints:
            - id: ${exampleEndpoint.id}
              deniedRequestTypes:
                - RESTAPI
                - ClientConnection
    

    Create NetworkAcl Resource

    new NetworkAcl(name: string, args: NetworkAclArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkAcl(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   default_action: Optional[str] = None,
                   private_endpoints: Optional[Sequence[NetworkAclPrivateEndpointArgs]] = None,
                   public_network: Optional[NetworkAclPublicNetworkArgs] = None,
                   web_pubsub_id: Optional[str] = None)
    @overload
    def NetworkAcl(resource_name: str,
                   args: NetworkAclArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewNetworkAcl(ctx *Context, name string, args NetworkAclArgs, opts ...ResourceOption) (*NetworkAcl, error)
    public NetworkAcl(string name, NetworkAclArgs args, CustomResourceOptions? opts = null)
    public NetworkAcl(String name, NetworkAclArgs args)
    public NetworkAcl(String name, NetworkAclArgs args, CustomResourceOptions options)
    
    type: azure:webpubsub:NetworkAcl
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NetworkAclArgs
    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 NetworkAclArgs
    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 NetworkAclArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkAclArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkAclArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    PublicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    WebPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    PrivateEndpoints List<NetworkAclPrivateEndpoint>
    A private_endpoint block as defined below.
    PublicNetwork NetworkAclPublicNetworkArgs
    A public_network block as defined below.
    WebPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    PrivateEndpoints []NetworkAclPrivateEndpointArgs
    A private_endpoint block as defined below.
    publicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    webPubsubId String
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints List<NetworkAclPrivateEndpoint>
    A private_endpoint block as defined below.
    publicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    webPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints NetworkAclPrivateEndpoint[]
    A private_endpoint block as defined below.
    public_network NetworkAclPublicNetworkArgs
    A public_network block as defined below.
    web_pubsub_id str
    The ID of the Web Pubsub 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. Defaults to Deny.
    private_endpoints Sequence[NetworkAclPrivateEndpointArgs]
    A private_endpoint block as defined below.
    publicNetwork Property Map
    A public_network block as defined below.
    webPubsubId String
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints List<Property Map>
    A private_endpoint block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkAcl 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 NetworkAcl Resource

    Get an existing NetworkAcl 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?: NetworkAclState, opts?: CustomResourceOptions): NetworkAcl
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            default_action: Optional[str] = None,
            private_endpoints: Optional[Sequence[NetworkAclPrivateEndpointArgs]] = None,
            public_network: Optional[NetworkAclPublicNetworkArgs] = None,
            web_pubsub_id: Optional[str] = None) -> NetworkAcl
    func GetNetworkAcl(ctx *Context, name string, id IDInput, state *NetworkAclState, opts ...ResourceOption) (*NetworkAcl, error)
    public static NetworkAcl Get(string name, Input<string> id, NetworkAclState? state, CustomResourceOptions? opts = null)
    public static NetworkAcl get(String name, Output<String> id, NetworkAclState 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. Defaults to Deny.
    PrivateEndpoints List<NetworkAclPrivateEndpoint>
    A private_endpoint block as defined below.
    PublicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    WebPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    PrivateEndpoints []NetworkAclPrivateEndpointArgs
    A private_endpoint block as defined below.
    PublicNetwork NetworkAclPublicNetworkArgs
    A public_network block as defined below.
    WebPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints List<NetworkAclPrivateEndpoint>
    A private_endpoint block as defined below.
    publicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    webPubsubId String
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints NetworkAclPrivateEndpoint[]
    A private_endpoint block as defined below.
    publicNetwork NetworkAclPublicNetwork
    A public_network block as defined below.
    webPubsubId string
    The ID of the Web Pubsub 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. Defaults to Deny.
    private_endpoints Sequence[NetworkAclPrivateEndpointArgs]
    A private_endpoint block as defined below.
    public_network NetworkAclPublicNetworkArgs
    A public_network block as defined below.
    web_pubsub_id str
    The ID of the Web Pubsub 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. Defaults to Deny.
    privateEndpoints List<Property Map>
    A private_endpoint block as defined below.
    publicNetwork Property Map
    A public_network block as defined below.
    webPubsubId String
    The ID of the Web Pubsub service. Changing this forces a new resource to be created.

    Supporting Types

    NetworkAclPrivateEndpoint, NetworkAclPrivateEndpointArgs

    Id string
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    Id string
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    id String
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    id string
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    id str
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    id String
    The ID of the Private Endpoint which is based on the Web Pubsub 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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    NetworkAclPublicNetwork, NetworkAclPublicNetworkArgs

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    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.

    NOTE: When default_action is Allow, allowed_request_typescannot be set. When default_action is Deny, denied_request_typescannot be set.

    Import

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

    $ pulumi import azure:webpubsub/networkAcl:NetworkAcl example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.SignalRService/webPubSub/webpubsub1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi