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

azure-native.signalrservice.SignalR

Explore with Pulumi AI

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

    A class represent a SignalR service resource. API Version: 2020-05-01.

    Example Usage

    SignalR_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var signalR = new AzureNative.SignalRService.SignalR("signalR", new()
        {
            Cors = new AzureNative.SignalRService.Inputs.SignalRCorsSettingsArgs
            {
                AllowedOrigins = new[]
                {
                    "https://foo.com",
                    "https://bar.com",
                },
            },
            Features = new[]
            {
                new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
                {
                    Flag = "ServiceMode",
                    Properties = null,
                    Value = "Serverless",
                },
                new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
                {
                    Flag = "EnableConnectivityLogs",
                    Properties = null,
                    Value = "True",
                },
                new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
                {
                    Flag = "EnableMessagingLogs",
                    Properties = null,
                    Value = "False",
                },
            },
            Kind = "SignalR",
            Location = "eastus",
            NetworkACLs = new AzureNative.SignalRService.Inputs.SignalRNetworkACLsArgs
            {
                DefaultAction = "Deny",
                PrivateEndpoints = new[]
                {
                    new AzureNative.SignalRService.Inputs.PrivateEndpointACLArgs
                    {
                        Allow = new[]
                        {
                            "ServerConnection",
                        },
                        Name = "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
                    },
                },
                PublicNetwork = new AzureNative.SignalRService.Inputs.NetworkACLArgs
                {
                    Allow = new[]
                    {
                        "ClientConnection",
                    },
                },
            },
            ResourceGroupName = "myResourceGroup",
            ResourceName = "mySignalRService",
            Sku = new AzureNative.SignalRService.Inputs.ResourceSkuArgs
            {
                Capacity = 1,
                Name = "Standard_S1",
                Tier = "Standard",
            },
            Tags = 
            {
                { "key1", "value1" },
            },
            Upstream = new AzureNative.SignalRService.Inputs.ServerlessUpstreamSettingsArgs
            {
                Templates = new[]
                {
                    new AzureNative.SignalRService.Inputs.UpstreamTemplateArgs
                    {
                        CategoryPattern = "*",
                        EventPattern = "connect,disconnect",
                        HubPattern = "*",
                        UrlTemplate = "https://example.com/chat/api/connect",
                    },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	signalrservice "github.com/pulumi/pulumi-azure-native-sdk/signalrservice"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signalrservice.NewSignalR(ctx, "signalR", &signalrservice.SignalRArgs{
    			Cors: &signalrservice.SignalRCorsSettingsArgs{
    				AllowedOrigins: pulumi.StringArray{
    					pulumi.String("https://foo.com"),
    					pulumi.String("https://bar.com"),
    				},
    			},
    			Features: []signalrservice.SignalRFeatureArgs{
    				{
    					Flag:       pulumi.String("ServiceMode"),
    					Properties: nil,
    					Value:      pulumi.String("Serverless"),
    				},
    				{
    					Flag:       pulumi.String("EnableConnectivityLogs"),
    					Properties: nil,
    					Value:      pulumi.String("True"),
    				},
    				{
    					Flag:       pulumi.String("EnableMessagingLogs"),
    					Properties: nil,
    					Value:      pulumi.String("False"),
    				},
    			},
    			Kind:     pulumi.String("SignalR"),
    			Location: pulumi.String("eastus"),
    			NetworkACLs: signalrservice.SignalRNetworkACLsResponse{
    				DefaultAction: pulumi.String("Deny"),
    				PrivateEndpoints: signalrservice.PrivateEndpointACLArray{
    					&signalrservice.PrivateEndpointACLArgs{
    						Allow: pulumi.StringArray{
    							pulumi.String("ServerConnection"),
    						},
    						Name: pulumi.String("mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
    					},
    				},
    				PublicNetwork: &signalrservice.NetworkACLArgs{
    					Allow: pulumi.StringArray{
    						pulumi.String("ClientConnection"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			ResourceName:      pulumi.String("mySignalRService"),
    			Sku: &signalrservice.ResourceSkuArgs{
    				Capacity: pulumi.Int(1),
    				Name:     pulumi.String("Standard_S1"),
    				Tier:     pulumi.String("Standard"),
    			},
    			Tags: pulumi.StringMap{
    				"key1": pulumi.String("value1"),
    			},
    			Upstream: signalrservice.ServerlessUpstreamSettingsResponse{
    				Templates: signalrservice.UpstreamTemplateArray{
    					&signalrservice.UpstreamTemplateArgs{
    						CategoryPattern: pulumi.String("*"),
    						EventPattern:    pulumi.String("connect,disconnect"),
    						HubPattern:      pulumi.String("*"),
    						UrlTemplate:     pulumi.String("https://example.com/chat/api/connect"),
    					},
    				},
    			},
    		})
    		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.signalrservice.SignalR;
    import com.pulumi.azurenative.signalrservice.SignalRArgs;
    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 signalR = new SignalR("signalR", SignalRArgs.builder()        
                .cors(Map.of("allowedOrigins",             
                    "https://foo.com",
                    "https://bar.com"))
                .features(            
                    Map.ofEntries(
                        Map.entry("flag", "ServiceMode"),
                        Map.entry("properties", ),
                        Map.entry("value", "Serverless")
                    ),
                    Map.ofEntries(
                        Map.entry("flag", "EnableConnectivityLogs"),
                        Map.entry("properties", ),
                        Map.entry("value", "True")
                    ),
                    Map.ofEntries(
                        Map.entry("flag", "EnableMessagingLogs"),
                        Map.entry("properties", ),
                        Map.entry("value", "False")
                    ))
                .kind("SignalR")
                .location("eastus")
                .networkACLs(Map.ofEntries(
                    Map.entry("defaultAction", "Deny"),
                    Map.entry("privateEndpoints", Map.ofEntries(
                        Map.entry("allow", "ServerConnection"),
                        Map.entry("name", "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e")
                    )),
                    Map.entry("publicNetwork", Map.of("allow", "ClientConnection"))
                ))
                .resourceGroupName("myResourceGroup")
                .resourceName("mySignalRService")
                .sku(Map.ofEntries(
                    Map.entry("capacity", 1),
                    Map.entry("name", "Standard_S1"),
                    Map.entry("tier", "Standard")
                ))
                .tags(Map.of("key1", "value1"))
                .upstream(Map.of("templates", Map.ofEntries(
                    Map.entry("categoryPattern", "*"),
                    Map.entry("eventPattern", "connect,disconnect"),
                    Map.entry("hubPattern", "*"),
                    Map.entry("urlTemplate", "https://example.com/chat/api/connect")
                )))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    signal_r = azure_native.signalrservice.SignalR("signalR",
        cors=azure_native.signalrservice.SignalRCorsSettingsArgs(
            allowed_origins=[
                "https://foo.com",
                "https://bar.com",
            ],
        ),
        features=[
            azure_native.signalrservice.SignalRFeatureArgs(
                flag="ServiceMode",
                properties={},
                value="Serverless",
            ),
            azure_native.signalrservice.SignalRFeatureArgs(
                flag="EnableConnectivityLogs",
                properties={},
                value="True",
            ),
            azure_native.signalrservice.SignalRFeatureArgs(
                flag="EnableMessagingLogs",
                properties={},
                value="False",
            ),
        ],
        kind="SignalR",
        location="eastus",
        network_acls=azure_native.signalrservice.SignalRNetworkACLsResponseArgs(
            default_action="Deny",
            private_endpoints=[azure_native.signalrservice.PrivateEndpointACLArgs(
                allow=["ServerConnection"],
                name="mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
            )],
            public_network=azure_native.signalrservice.NetworkACLArgs(
                allow=["ClientConnection"],
            ),
        ),
        resource_group_name="myResourceGroup",
        resource_name_="mySignalRService",
        sku=azure_native.signalrservice.ResourceSkuArgs(
            capacity=1,
            name="Standard_S1",
            tier="Standard",
        ),
        tags={
            "key1": "value1",
        },
        upstream=azure_native.signalrservice.ServerlessUpstreamSettingsResponseArgs(
            templates=[azure_native.signalrservice.UpstreamTemplateArgs(
                category_pattern="*",
                event_pattern="connect,disconnect",
                hub_pattern="*",
                url_template="https://example.com/chat/api/connect",
            )],
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const signalR = new azure_native.signalrservice.SignalR("signalR", {
        cors: {
            allowedOrigins: [
                "https://foo.com",
                "https://bar.com",
            ],
        },
        features: [
            {
                flag: "ServiceMode",
                properties: {},
                value: "Serverless",
            },
            {
                flag: "EnableConnectivityLogs",
                properties: {},
                value: "True",
            },
            {
                flag: "EnableMessagingLogs",
                properties: {},
                value: "False",
            },
        ],
        kind: "SignalR",
        location: "eastus",
        networkACLs: {
            defaultAction: "Deny",
            privateEndpoints: [{
                allow: ["ServerConnection"],
                name: "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
            }],
            publicNetwork: {
                allow: ["ClientConnection"],
            },
        },
        resourceGroupName: "myResourceGroup",
        resourceName: "mySignalRService",
        sku: {
            capacity: 1,
            name: "Standard_S1",
            tier: "Standard",
        },
        tags: {
            key1: "value1",
        },
        upstream: {
            templates: [{
                categoryPattern: "*",
                eventPattern: "connect,disconnect",
                hubPattern: "*",
                urlTemplate: "https://example.com/chat/api/connect",
            }],
        },
    });
    
    resources:
      signalR:
        type: azure-native:signalrservice:SignalR
        properties:
          cors:
            allowedOrigins:
              - https://foo.com
              - https://bar.com
          features:
            - flag: ServiceMode
              properties: {}
              value: Serverless
            - flag: EnableConnectivityLogs
              properties: {}
              value: True
            - flag: EnableMessagingLogs
              properties: {}
              value: False
          kind: SignalR
          location: eastus
          networkACLs:
            defaultAction: Deny
            privateEndpoints:
              - allow:
                  - ServerConnection
                name: mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e
            publicNetwork:
              allow:
                - ClientConnection
          resourceGroupName: myResourceGroup
          resourceName: mySignalRService
          sku:
            capacity: 1
            name: Standard_S1
            tier: Standard
          tags:
            key1: value1
          upstream:
            templates:
              - categoryPattern: '*'
                eventPattern: connect,disconnect
                hubPattern: '*'
                urlTemplate: https://example.com/chat/api/connect
    

    Create SignalR Resource

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

    Constructor syntax

    new SignalR(name: string, args: SignalRArgs, opts?: CustomResourceOptions);
    @overload
    def SignalR(resource_name: str,
                args: SignalRArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def SignalR(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                cors: Optional[SignalRCorsSettingsArgs] = None,
                features: Optional[Sequence[SignalRFeatureArgs]] = None,
                kind: Optional[Union[str, ServiceKind]] = None,
                location: Optional[str] = None,
                network_acls: Optional[SignalRNetworkACLsArgs] = None,
                resource_name_: Optional[str] = None,
                sku: Optional[ResourceSkuArgs] = None,
                tags: Optional[Mapping[str, str]] = None,
                upstream: Optional[ServerlessUpstreamSettingsArgs] = None)
    func NewSignalR(ctx *Context, name string, args SignalRArgs, opts ...ResourceOption) (*SignalR, error)
    public SignalR(string name, SignalRArgs args, CustomResourceOptions? opts = null)
    public SignalR(String name, SignalRArgs args)
    public SignalR(String name, SignalRArgs args, CustomResourceOptions options)
    
    type: azure-native:signalrservice:SignalR
    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 SignalRArgs
    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 SignalRArgs
    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 SignalRArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SignalRArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SignalRArgs
    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 signalRResource = new AzureNative.Signalrservice.SignalR("signalRResource", new()
    {
        ResourceGroupName = "string",
        Cors = 
        {
            { "allowedOrigins", new[]
            {
                "string",
            } },
        },
        Features = new[]
        {
            
            {
                { "flag", "string" },
                { "value", "string" },
                { "properties", 
                {
                    { "string", "string" },
                } },
            },
        },
        Kind = "string",
        Location = "string",
        NetworkACLs = 
        {
            { "defaultAction", "string" },
            { "privateEndpoints", new[]
            {
                
                {
                    { "name", "string" },
                    { "allow", new[]
                    {
                        "string",
                    } },
                    { "deny", new[]
                    {
                        "string",
                    } },
                },
            } },
            { "publicNetwork", 
            {
                { "allow", new[]
                {
                    "string",
                } },
                { "deny", new[]
                {
                    "string",
                } },
            } },
        },
        ResourceName = "string",
        Sku = 
        {
            { "name", "string" },
            { "capacity", 0 },
            { "tier", "string" },
        },
        Tags = 
        {
            { "string", "string" },
        },
        Upstream = 
        {
            { "templates", new[]
            {
                
                {
                    { "urlTemplate", "string" },
                    { "categoryPattern", "string" },
                    { "eventPattern", "string" },
                    { "hubPattern", "string" },
                },
            } },
        },
    });
    
    example, err := signalrservice.NewSignalR(ctx, "signalRResource", &signalrservice.SignalRArgs{
    	ResourceGroupName: "string",
    	Cors: map[string]interface{}{
    		"allowedOrigins": []string{
    			"string",
    		},
    	},
    	Features: []map[string]interface{}{
    		map[string]interface{}{
    			"flag":  "string",
    			"value": "string",
    			"properties": map[string]interface{}{
    				"string": "string",
    			},
    		},
    	},
    	Kind:     "string",
    	Location: "string",
    	NetworkACLs: map[string]interface{}{
    		"defaultAction": "string",
    		"privateEndpoints": []map[string]interface{}{
    			map[string]interface{}{
    				"name": "string",
    				"allow": []string{
    					"string",
    				},
    				"deny": []string{
    					"string",
    				},
    			},
    		},
    		"publicNetwork": map[string]interface{}{
    			"allow": []string{
    				"string",
    			},
    			"deny": []string{
    				"string",
    			},
    		},
    	},
    	ResourceName: "string",
    	Sku: map[string]interface{}{
    		"name":     "string",
    		"capacity": 0,
    		"tier":     "string",
    	},
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	Upstream: map[string]interface{}{
    		"templates": []map[string]interface{}{
    			map[string]interface{}{
    				"urlTemplate":     "string",
    				"categoryPattern": "string",
    				"eventPattern":    "string",
    				"hubPattern":      "string",
    			},
    		},
    	},
    })
    
    var signalRResource = new SignalR("signalRResource", SignalRArgs.builder()
        .resourceGroupName("string")
        .cors(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .features(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .kind("string")
        .location("string")
        .networkACLs(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .resourceName("string")
        .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .upstream(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    signal_r_resource = azure_native.signalrservice.SignalR("signalRResource",
        resource_group_name=string,
        cors={
            allowedOrigins: [string],
        },
        features=[{
            flag: string,
            value: string,
            properties: {
                string: string,
            },
        }],
        kind=string,
        location=string,
        network_acls={
            defaultAction: string,
            privateEndpoints: [{
                name: string,
                allow: [string],
                deny: [string],
            }],
            publicNetwork: {
                allow: [string],
                deny: [string],
            },
        },
        resource_name_=string,
        sku={
            name: string,
            capacity: 0,
            tier: string,
        },
        tags={
            string: string,
        },
        upstream={
            templates: [{
                urlTemplate: string,
                categoryPattern: string,
                eventPattern: string,
                hubPattern: string,
            }],
        })
    
    const signalRResource = new azure_native.signalrservice.SignalR("signalRResource", {
        resourceGroupName: "string",
        cors: {
            allowedOrigins: ["string"],
        },
        features: [{
            flag: "string",
            value: "string",
            properties: {
                string: "string",
            },
        }],
        kind: "string",
        location: "string",
        networkACLs: {
            defaultAction: "string",
            privateEndpoints: [{
                name: "string",
                allow: ["string"],
                deny: ["string"],
            }],
            publicNetwork: {
                allow: ["string"],
                deny: ["string"],
            },
        },
        resourceName: "string",
        sku: {
            name: "string",
            capacity: 0,
            tier: "string",
        },
        tags: {
            string: "string",
        },
        upstream: {
            templates: [{
                urlTemplate: "string",
                categoryPattern: "string",
                eventPattern: "string",
                hubPattern: "string",
            }],
        },
    });
    
    type: azure-native:signalrservice:SignalR
    properties:
        cors:
            allowedOrigins:
                - string
        features:
            - flag: string
              properties:
                string: string
              value: string
        kind: string
        location: string
        networkACLs:
            defaultAction: string
            privateEndpoints:
                - allow:
                    - string
                  deny:
                    - string
                  name: string
            publicNetwork:
                allow:
                    - string
                deny:
                    - string
        resourceGroupName: string
        resourceName: string
        sku:
            capacity: 0
            name: string
            tier: string
        tags:
            string: string
        upstream:
            templates:
                - categoryPattern: string
                  eventPattern: string
                  hubPattern: string
                  urlTemplate: string
    

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

    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    Cors Pulumi.AzureNative.SignalRService.Inputs.SignalRCorsSettings
    Cross-Origin Resource Sharing (CORS) settings.
    Features List<Pulumi.AzureNative.SignalRService.Inputs.SignalRFeature>

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    Kind string | Pulumi.AzureNative.SignalRService.ServiceKind
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    Location string
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    NetworkACLs Pulumi.AzureNative.SignalRService.Inputs.SignalRNetworkACLs
    Network ACLs
    ResourceName string
    The name of the SignalR resource.
    Sku Pulumi.AzureNative.SignalRService.Inputs.ResourceSku
    The billing information of the resource.(e.g. Free, Standard)
    Tags Dictionary<string, string>
    Tags of the service which is a list of key value pairs that describe the resource.
    Upstream Pulumi.AzureNative.SignalRService.Inputs.ServerlessUpstreamSettings
    Upstream settings when the Azure SignalR is in server-less mode.
    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    Cors SignalRCorsSettingsArgs
    Cross-Origin Resource Sharing (CORS) settings.
    Features []SignalRFeatureArgs

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    Kind string | ServiceKind
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    Location string
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    NetworkACLs SignalRNetworkACLsArgs
    Network ACLs
    ResourceName string
    The name of the SignalR resource.
    Sku ResourceSkuArgs
    The billing information of the resource.(e.g. Free, Standard)
    Tags map[string]string
    Tags of the service which is a list of key value pairs that describe the resource.
    Upstream ServerlessUpstreamSettingsArgs
    Upstream settings when the Azure SignalR is in server-less mode.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    cors SignalRCorsSettings
    Cross-Origin Resource Sharing (CORS) settings.
    features List<SignalRFeature>

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    kind String | ServiceKind
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    location String
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    networkACLs SignalRNetworkACLs
    Network ACLs
    resourceName String
    The name of the SignalR resource.
    sku ResourceSku
    The billing information of the resource.(e.g. Free, Standard)
    tags Map<String,String>
    Tags of the service which is a list of key value pairs that describe the resource.
    upstream ServerlessUpstreamSettings
    Upstream settings when the Azure SignalR is in server-less mode.
    resourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    cors SignalRCorsSettings
    Cross-Origin Resource Sharing (CORS) settings.
    features SignalRFeature[]

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    kind string | ServiceKind
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    location string
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    networkACLs SignalRNetworkACLs
    Network ACLs
    resourceName string
    The name of the SignalR resource.
    sku ResourceSku
    The billing information of the resource.(e.g. Free, Standard)
    tags {[key: string]: string}
    Tags of the service which is a list of key value pairs that describe the resource.
    upstream ServerlessUpstreamSettings
    Upstream settings when the Azure SignalR is in server-less mode.
    resource_group_name str
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    cors SignalRCorsSettingsArgs
    Cross-Origin Resource Sharing (CORS) settings.
    features Sequence[SignalRFeatureArgs]

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    kind str | ServiceKind
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    location str
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    network_acls SignalRNetworkACLsArgs
    Network ACLs
    resource_name str
    The name of the SignalR resource.
    sku ResourceSkuArgs
    The billing information of the resource.(e.g. Free, Standard)
    tags Mapping[str, str]
    Tags of the service which is a list of key value pairs that describe the resource.
    upstream ServerlessUpstreamSettingsArgs
    Upstream settings when the Azure SignalR is in server-less mode.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    cors Property Map
    Cross-Origin Resource Sharing (CORS) settings.
    features List<Property Map>

    List of SignalR featureFlags. e.g. ServiceMode.

    FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.

    kind String | "SignalR" | "RawWebSockets"
    The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
    location String
    The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
    networkACLs Property Map
    Network ACLs
    resourceName String
    The name of the SignalR resource.
    sku Property Map
    The billing information of the resource.(e.g. Free, Standard)
    tags Map<String>
    Tags of the service which is a list of key value pairs that describe the resource.
    upstream Property Map
    Upstream settings when the Azure SignalR is in server-less mode.

    Outputs

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

    ExternalIP string
    The publicly accessible IP of the SignalR service.
    HostName string
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    HostNamePrefix string
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    PrivateEndpointConnections List<Pulumi.AzureNative.SignalRService.Outputs.PrivateEndpointConnectionResponse>
    Private endpoint connections to the SignalR resource.
    ProvisioningState string
    Provisioning state of the resource.
    PublicPort int
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    ServerPort int
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    Type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    Version string
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
    ExternalIP string
    The publicly accessible IP of the SignalR service.
    HostName string
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    HostNamePrefix string
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    Private endpoint connections to the SignalR resource.
    ProvisioningState string
    Provisioning state of the resource.
    PublicPort int
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    ServerPort int
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    Type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    Version string
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
    externalIP String
    The publicly accessible IP of the SignalR service.
    hostName String
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    hostNamePrefix String
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    Private endpoint connections to the SignalR resource.
    provisioningState String
    Provisioning state of the resource.
    publicPort Integer
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    serverPort Integer
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    type String
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    version String
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
    externalIP string
    The publicly accessible IP of the SignalR service.
    hostName string
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    hostNamePrefix string
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    Private endpoint connections to the SignalR resource.
    provisioningState string
    Provisioning state of the resource.
    publicPort number
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    serverPort number
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    version string
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
    external_ip str
    The publicly accessible IP of the SignalR service.
    host_name str
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    host_name_prefix str
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    Private endpoint connections to the SignalR resource.
    provisioning_state str
    Provisioning state of the resource.
    public_port int
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    server_port int
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    type str
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    version str
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
    externalIP String
    The publicly accessible IP of the SignalR service.
    hostName String
    FQDN of the SignalR service instance. Format: xxx.service.signalr.net
    hostNamePrefix String
    Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    privateEndpointConnections List<Property Map>
    Private endpoint connections to the SignalR resource.
    provisioningState String
    Provisioning state of the resource.
    publicPort Number
    The publicly accessible port of the SignalR service which is designed for browser/client side usage.
    serverPort Number
    The publicly accessible port of the SignalR service which is designed for customer server side usage.
    type String
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    version String
    Version of the SignalR resource. Probably you need the same or higher version of client SDKs.

    Supporting Types

    ACLAction, ACLActionArgs

    Allow
    Allow
    Deny
    Deny
    ACLActionAllow
    Allow
    ACLActionDeny
    Deny
    Allow
    Allow
    Deny
    Deny
    Allow
    Allow
    Deny
    Deny
    ALLOW
    Allow
    DENY
    Deny
    "Allow"
    Allow
    "Deny"
    Deny

    FeatureFlags, FeatureFlagsArgs

    ServiceMode
    ServiceMode
    EnableConnectivityLogs
    EnableConnectivityLogs
    EnableMessagingLogs
    EnableMessagingLogs
    FeatureFlagsServiceMode
    ServiceMode
    FeatureFlagsEnableConnectivityLogs
    EnableConnectivityLogs
    FeatureFlagsEnableMessagingLogs
    EnableMessagingLogs
    ServiceMode
    ServiceMode
    EnableConnectivityLogs
    EnableConnectivityLogs
    EnableMessagingLogs
    EnableMessagingLogs
    ServiceMode
    ServiceMode
    EnableConnectivityLogs
    EnableConnectivityLogs
    EnableMessagingLogs
    EnableMessagingLogs
    SERVICE_MODE
    ServiceMode
    ENABLE_CONNECTIVITY_LOGS
    EnableConnectivityLogs
    ENABLE_MESSAGING_LOGS
    EnableMessagingLogs
    "ServiceMode"
    ServiceMode
    "EnableConnectivityLogs"
    EnableConnectivityLogs
    "EnableMessagingLogs"
    EnableMessagingLogs

    NetworkACL, NetworkACLArgs

    Allow List<Union<string, Pulumi.AzureNative.SignalRService.SignalRRequestType>>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny List<Union<string, Pulumi.AzureNative.SignalRService.SignalRRequestType>>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Allow []string
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny []string
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow List<Either<String,SignalRRequestType>>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<Either<String,SignalRRequestType>>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow (string | SignalRRequestType)[]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny (string | SignalRRequestType)[]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow Sequence[Union[str, SignalRRequestType]]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny Sequence[Union[str, SignalRRequestType]]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow List<String | "ClientConnection" | "ServerConnection" | "RESTAPI" | "Trace">
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String | "ClientConnection" | "ServerConnection" | "RESTAPI" | "Trace">
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

    NetworkACLResponse, NetworkACLResponseArgs

    Allow List<string>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny List<string>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Allow []string
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny []string
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow List<String>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow string[]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny string[]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow Sequence[str]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny Sequence[str]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    allow List<String>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

    PrivateEndpointACL, PrivateEndpointACLArgs

    Name string
    Name of the private endpoint connection
    Allow List<Union<string, Pulumi.AzureNative.SignalRService.SignalRRequestType>>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny List<Union<string, Pulumi.AzureNative.SignalRService.SignalRRequestType>>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Name string
    Name of the private endpoint connection
    Allow []string
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny []string
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name String
    Name of the private endpoint connection
    allow List<Either<String,SignalRRequestType>>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<Either<String,SignalRRequestType>>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name string
    Name of the private endpoint connection
    allow (string | SignalRRequestType)[]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny (string | SignalRRequestType)[]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name str
    Name of the private endpoint connection
    allow Sequence[Union[str, SignalRRequestType]]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny Sequence[Union[str, SignalRRequestType]]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name String
    Name of the private endpoint connection
    allow List<String | "ClientConnection" | "ServerConnection" | "RESTAPI" | "Trace">
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String | "ClientConnection" | "ServerConnection" | "RESTAPI" | "Trace">
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

    PrivateEndpointACLResponse, PrivateEndpointACLResponseArgs

    Name string
    Name of the private endpoint connection
    Allow List<string>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny List<string>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Name string
    Name of the private endpoint connection
    Allow []string
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    Deny []string
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name String
    Name of the private endpoint connection
    allow List<String>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name string
    Name of the private endpoint connection
    allow string[]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny string[]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name str
    Name of the private endpoint connection
    allow Sequence[str]
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny Sequence[str]
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    name String
    Name of the private endpoint connection
    allow List<String>
    Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
    deny List<String>
    Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    Id string
    Fully qualified resource Id for the resource.
    Name string
    The name of the resource.
    ProvisioningState string
    Provisioning state of the private endpoint connection
    Type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    PrivateEndpoint Pulumi.AzureNative.SignalRService.Inputs.PrivateEndpointResponse
    Private endpoint associated with the private endpoint connection
    PrivateLinkServiceConnectionState Pulumi.AzureNative.SignalRService.Inputs.PrivateLinkServiceConnectionStateResponse
    Connection state
    Id string
    Fully qualified resource Id for the resource.
    Name string
    The name of the resource.
    ProvisioningState string
    Provisioning state of the private endpoint connection
    Type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    PrivateEndpoint PrivateEndpointResponse
    Private endpoint associated with the private endpoint connection
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Connection state
    id String
    Fully qualified resource Id for the resource.
    name String
    The name of the resource.
    provisioningState String
    Provisioning state of the private endpoint connection
    type String
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    privateEndpoint PrivateEndpointResponse
    Private endpoint associated with the private endpoint connection
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Connection state
    id string
    Fully qualified resource Id for the resource.
    name string
    The name of the resource.
    provisioningState string
    Provisioning state of the private endpoint connection
    type string
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    privateEndpoint PrivateEndpointResponse
    Private endpoint associated with the private endpoint connection
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Connection state
    id str
    Fully qualified resource Id for the resource.
    name str
    The name of the resource.
    provisioning_state str
    Provisioning state of the private endpoint connection
    type str
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    private_endpoint PrivateEndpointResponse
    Private endpoint associated with the private endpoint connection
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    Connection state
    id String
    Fully qualified resource Id for the resource.
    name String
    The name of the resource.
    provisioningState String
    Provisioning state of the private endpoint connection
    type String
    The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
    privateEndpoint Property Map
    Private endpoint associated with the private endpoint connection
    privateLinkServiceConnectionState Property Map
    Connection state

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    Id string
    Full qualified Id of the private endpoint
    Id string
    Full qualified Id of the private endpoint
    id String
    Full qualified Id of the private endpoint
    id string
    Full qualified Id of the private endpoint
    id str
    Full qualified Id of the private endpoint
    id String
    Full qualified Id of the private endpoint

    PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs

    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    description string
    The reason for approval/rejection of the connection.
    status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actions_required str
    A message indicating if changes on the service provider require any updates on the consumer.
    description str
    The reason for approval/rejection of the connection.
    status str
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

    ResourceSku, ResourceSkuArgs

    Name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    Capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    Tier string | Pulumi.AzureNative.SignalRService.SignalRSkuTier

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    Name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    Capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    Tier string | SignalRSkuTier

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    name String

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    capacity Integer

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier String | SignalRSkuTier

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    capacity number

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier string | SignalRSkuTier

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    name str

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier str | SignalRSkuTier

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    name String

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    capacity Number

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier String | "Free" | "Basic" | "Standard" | "Premium"

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    ResourceSkuResponse, ResourceSkuResponseArgs

    Family string
    Not used. Retained for future use.
    Name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    Size string
    Not used. Retained for future use.
    Capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    Tier string

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    Family string
    Not used. Retained for future use.
    Name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    Size string
    Not used. Retained for future use.
    Capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    Tier string

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    family String
    Not used. Retained for future use.
    name String

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    size String
    Not used. Retained for future use.
    capacity Integer

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier String

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    family string
    Not used. Retained for future use.
    name string

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    size string
    Not used. Retained for future use.
    capacity number

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier string

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    family str
    Not used. Retained for future use.
    name str

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    size str
    Not used. Retained for future use.
    capacity int

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier str

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    family String
    Not used. Retained for future use.
    name String

    The name of the SKU. Required.

    Allowed values: Standard_S1, Free_F1

    size String
    Not used. Retained for future use.
    capacity Number

    Optional, integer. The unit count of SignalR resource. 1 by default.

    If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100

    tier String

    Optional tier of this particular SKU. 'Standard' or 'Free'.

    Basic is deprecated, use Standard instead.

    ServerlessUpstreamSettings, ServerlessUpstreamSettingsArgs

    Templates List<Pulumi.AzureNative.SignalRService.Inputs.UpstreamTemplate>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    Templates []UpstreamTemplate
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates List<UpstreamTemplate>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates UpstreamTemplate[]
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates Sequence[UpstreamTemplate]
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates List<Property Map>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.

    ServerlessUpstreamSettingsResponse, ServerlessUpstreamSettingsResponseArgs

    Templates List<Pulumi.AzureNative.SignalRService.Inputs.UpstreamTemplateResponse>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    Templates []UpstreamTemplateResponse
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates List<UpstreamTemplateResponse>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates UpstreamTemplateResponse[]
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates Sequence[UpstreamTemplateResponse]
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
    templates List<Property Map>
    Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.

    ServiceKind, ServiceKindArgs

    SignalR
    SignalR
    RawWebSockets
    RawWebSockets
    ServiceKindSignalR
    SignalR
    ServiceKindRawWebSockets
    RawWebSockets
    SignalR
    SignalR
    RawWebSockets
    RawWebSockets
    SignalR
    SignalR
    RawWebSockets
    RawWebSockets
    SIGNAL_R
    SignalR
    RAW_WEB_SOCKETS
    RawWebSockets
    "SignalR"
    SignalR
    "RawWebSockets"
    RawWebSockets

    SignalRCorsSettings, SignalRCorsSettingsArgs

    AllowedOrigins List<string>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    AllowedOrigins []string
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins List<String>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins string[]
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowed_origins Sequence[str]
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins List<String>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.

    SignalRCorsSettingsResponse, SignalRCorsSettingsResponseArgs

    AllowedOrigins List<string>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    AllowedOrigins []string
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins List<String>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins string[]
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowed_origins Sequence[str]
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
    allowedOrigins List<String>
    Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.

    SignalRFeature, SignalRFeatureArgs

    Flag string | Pulumi.AzureNative.SignalRService.FeatureFlags
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    Value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    Properties Dictionary<string, string>
    Optional properties related to this feature.
    Flag string | FeatureFlags
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    Value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    Properties map[string]string
    Optional properties related to this feature.
    flag String | FeatureFlags
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value String
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Map<String,String>
    Optional properties related to this feature.
    flag string | FeatureFlags
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties {[key: string]: string}
    Optional properties related to this feature.
    flag str | FeatureFlags
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value str
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Mapping[str, str]
    Optional properties related to this feature.
    flag String | "ServiceMode" | "EnableConnectivityLogs" | "EnableMessagingLogs"
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value String
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Map<String>
    Optional properties related to this feature.

    SignalRFeatureResponse, SignalRFeatureResponseArgs

    Flag string
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    Value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    Properties Dictionary<string, string>
    Optional properties related to this feature.
    Flag string
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    Value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    Properties map[string]string
    Optional properties related to this feature.
    flag String
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value String
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Map<String,String>
    Optional properties related to this feature.
    flag string
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value string
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties {[key: string]: string}
    Optional properties related to this feature.
    flag str
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value str
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Mapping[str, str]
    Optional properties related to this feature.
    flag String
    FeatureFlags is the supported features of Azure SignalR service.

    • ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
    • EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
    value String
    Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
    properties Map<String>
    Optional properties related to this feature.

    SignalRNetworkACLs, SignalRNetworkACLsArgs

    DefaultAction string | ACLAction
    Default action when no other rule matches
    PrivateEndpoints []PrivateEndpointACL
    ACLs for requests from private endpoints
    PublicNetwork NetworkACL
    ACL for requests from public network
    defaultAction String | ACLAction
    Default action when no other rule matches
    privateEndpoints List<PrivateEndpointACL>
    ACLs for requests from private endpoints
    publicNetwork NetworkACL
    ACL for requests from public network
    defaultAction string | ACLAction
    Default action when no other rule matches
    privateEndpoints PrivateEndpointACL[]
    ACLs for requests from private endpoints
    publicNetwork NetworkACL
    ACL for requests from public network
    default_action str | ACLAction
    Default action when no other rule matches
    private_endpoints Sequence[PrivateEndpointACL]
    ACLs for requests from private endpoints
    public_network NetworkACL
    ACL for requests from public network
    defaultAction String | "Allow" | "Deny"
    Default action when no other rule matches
    privateEndpoints List<Property Map>
    ACLs for requests from private endpoints
    publicNetwork Property Map
    ACL for requests from public network

    SignalRNetworkACLsResponse, SignalRNetworkACLsResponseArgs

    DefaultAction string
    Default action when no other rule matches
    PrivateEndpoints List<Pulumi.AzureNative.SignalRService.Inputs.PrivateEndpointACLResponse>
    ACLs for requests from private endpoints
    PublicNetwork Pulumi.AzureNative.SignalRService.Inputs.NetworkACLResponse
    ACL for requests from public network
    DefaultAction string
    Default action when no other rule matches
    PrivateEndpoints []PrivateEndpointACLResponse
    ACLs for requests from private endpoints
    PublicNetwork NetworkACLResponse
    ACL for requests from public network
    defaultAction String
    Default action when no other rule matches
    privateEndpoints List<PrivateEndpointACLResponse>
    ACLs for requests from private endpoints
    publicNetwork NetworkACLResponse
    ACL for requests from public network
    defaultAction string
    Default action when no other rule matches
    privateEndpoints PrivateEndpointACLResponse[]
    ACLs for requests from private endpoints
    publicNetwork NetworkACLResponse
    ACL for requests from public network
    default_action str
    Default action when no other rule matches
    private_endpoints Sequence[PrivateEndpointACLResponse]
    ACLs for requests from private endpoints
    public_network NetworkACLResponse
    ACL for requests from public network
    defaultAction String
    Default action when no other rule matches
    privateEndpoints List<Property Map>
    ACLs for requests from private endpoints
    publicNetwork Property Map
    ACL for requests from public network

    SignalRRequestType, SignalRRequestTypeArgs

    ClientConnection
    ClientConnection
    ServerConnection
    ServerConnection
    RESTAPI
    RESTAPI
    Trace
    Trace
    SignalRRequestTypeClientConnection
    ClientConnection
    SignalRRequestTypeServerConnection
    ServerConnection
    SignalRRequestTypeRESTAPI
    RESTAPI
    SignalRRequestTypeTrace
    Trace
    ClientConnection
    ClientConnection
    ServerConnection
    ServerConnection
    RESTAPI
    RESTAPI
    Trace
    Trace
    ClientConnection
    ClientConnection
    ServerConnection
    ServerConnection
    RESTAPI
    RESTAPI
    Trace
    Trace
    CLIENT_CONNECTION
    ClientConnection
    SERVER_CONNECTION
    ServerConnection
    RESTAPI
    RESTAPI
    TRACE
    Trace
    "ClientConnection"
    ClientConnection
    "ServerConnection"
    ServerConnection
    "RESTAPI"
    RESTAPI
    "Trace"
    Trace

    SignalRSkuTier, SignalRSkuTierArgs

    Free
    Free
    Basic
    Basic
    Standard
    Standard
    Premium
    Premium
    SignalRSkuTierFree
    Free
    SignalRSkuTierBasic
    Basic
    SignalRSkuTierStandard
    Standard
    SignalRSkuTierPremium
    Premium
    Free
    Free
    Basic
    Basic
    Standard
    Standard
    Premium
    Premium
    Free
    Free
    Basic
    Basic
    Standard
    Standard
    Premium
    Premium
    FREE
    Free
    BASIC
    Basic
    STANDARD
    Standard
    PREMIUM
    Premium
    "Free"
    Free
    "Basic"
    Basic
    "Standard"
    Standard
    "Premium"
    Premium

    UpstreamTemplate, UpstreamTemplateArgs

    UrlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    CategoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    EventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    HubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    UrlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    CategoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    EventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    HubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate String
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern String
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern String
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern String
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    url_template str
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    category_pattern str
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    event_pattern str
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hub_pattern str
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate String
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern String
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern String
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern String
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"

    UpstreamTemplateResponse, UpstreamTemplateResponseArgs

    UrlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    CategoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    EventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    HubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    UrlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    CategoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    EventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    HubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate String
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern String
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern String
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern String
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate string
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern string
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern string
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern string
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    url_template str
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    category_pattern str
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    event_pattern str
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hub_pattern str
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
    urlTemplate String
    Gets or sets the Upstream URL template. You can use 3 predefined parameters {hub}, {category} {event} inside the template, the value of the Upstream URL is dynamically calculated when the client request comes in. For example, if the urlTemplate is http://example.com/{hub}/api/{event}, with a client request from hub chat connects, it will first POST to this URL: http://example.com/chat/api/connect.
    categoryPattern String
    Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
    eventPattern String
    Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
    hubPattern String
    Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"

    Import

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

    $ pulumi import azure-native:signalrservice:SignalR mySignalRService /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService 
    

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

    Package Details

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