azure-native.signalrservice.SignalR
Explore with Pulumi AI
A class represent a resource.
Uses Azure REST API version 2023-02-01. In version 1.x of the Azure Native provider, it used API version 2020-05-01.
Other available API versions: 2023-03-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2024-01-01-preview, 2024-03-01, 2024-04-01-preview, 2024-08-01-preview, 2024-10-01-preview.
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",
            },
        },
        DisableAadAuth = false,
        DisableLocalAuth = false,
        Features = new[]
        {
            new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
            {
                Flag = AzureNative.SignalRService.FeatureFlags.ServiceMode,
                Properties = null,
                Value = "Serverless",
            },
            new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
            {
                Flag = AzureNative.SignalRService.FeatureFlags.EnableConnectivityLogs,
                Properties = null,
                Value = "True",
            },
            new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
            {
                Flag = AzureNative.SignalRService.FeatureFlags.EnableMessagingLogs,
                Properties = null,
                Value = "False",
            },
            new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
            {
                Flag = AzureNative.SignalRService.FeatureFlags.EnableLiveTrace,
                Properties = null,
                Value = "False",
            },
        },
        Identity = new AzureNative.SignalRService.Inputs.ManagedIdentityArgs
        {
            Type = AzureNative.SignalRService.ManagedIdentityType.SystemAssigned,
        },
        Kind = AzureNative.SignalRService.ServiceKind.SignalR,
        LiveTraceConfiguration = new AzureNative.SignalRService.Inputs.LiveTraceConfigurationArgs
        {
            Categories = new[]
            {
                new AzureNative.SignalRService.Inputs.LiveTraceCategoryArgs
                {
                    Enabled = "true",
                    Name = "ConnectivityLogs",
                },
            },
            Enabled = "false",
        },
        Location = "eastus",
        NetworkACLs = new AzureNative.SignalRService.Inputs.SignalRNetworkACLsArgs
        {
            DefaultAction = AzureNative.SignalRService.ACLAction.Deny,
            PrivateEndpoints = new[]
            {
                new AzureNative.SignalRService.Inputs.PrivateEndpointACLArgs
                {
                    Allow = new[]
                    {
                        AzureNative.SignalRService.SignalRRequestType.ServerConnection,
                    },
                    Name = "mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
                },
            },
            PublicNetwork = new AzureNative.SignalRService.Inputs.NetworkACLArgs
            {
                Allow = new[]
                {
                    AzureNative.SignalRService.SignalRRequestType.ClientConnection,
                },
            },
        },
        PublicNetworkAccess = "Enabled",
        ResourceGroupName = "myResourceGroup",
        ResourceName = "mySignalRService",
        Serverless = new AzureNative.SignalRService.Inputs.ServerlessSettingsArgs
        {
            ConnectionTimeoutInSeconds = 5,
        },
        Sku = new AzureNative.SignalRService.Inputs.ResourceSkuArgs
        {
            Capacity = 1,
            Name = "Premium_P1",
            Tier = AzureNative.SignalRService.SignalRSkuTier.Premium,
        },
        Tags = 
        {
            { "key1", "value1" },
        },
        Tls = new AzureNative.SignalRService.Inputs.SignalRTlsSettingsArgs
        {
            ClientCertEnabled = false,
        },
        Upstream = new AzureNative.SignalRService.Inputs.ServerlessUpstreamSettingsArgs
        {
            Templates = new[]
            {
                new AzureNative.SignalRService.Inputs.UpstreamTemplateArgs
                {
                    Auth = new AzureNative.SignalRService.Inputs.UpstreamAuthSettingsArgs
                    {
                        ManagedIdentity = new AzureNative.SignalRService.Inputs.ManagedIdentitySettingsArgs
                        {
                            Resource = "api://example",
                        },
                        Type = AzureNative.SignalRService.UpstreamAuthType.ManagedIdentity,
                    },
                    CategoryPattern = "*",
                    EventPattern = "connect,disconnect",
                    HubPattern = "*",
                    UrlTemplate = "https://example.com/chat/api/connect",
                },
            },
        },
    });
});
package main
import (
	signalrservice "github.com/pulumi/pulumi-azure-native-sdk/signalrservice/v2"
	"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"),
				},
			},
			DisableAadAuth:   pulumi.Bool(false),
			DisableLocalAuth: pulumi.Bool(false),
			Features: signalrservice.SignalRFeatureArray{
				&signalrservice.SignalRFeatureArgs{
					Flag:       pulumi.String(signalrservice.FeatureFlagsServiceMode),
					Properties: pulumi.StringMap{},
					Value:      pulumi.String("Serverless"),
				},
				&signalrservice.SignalRFeatureArgs{
					Flag:       pulumi.String(signalrservice.FeatureFlagsEnableConnectivityLogs),
					Properties: pulumi.StringMap{},
					Value:      pulumi.String("True"),
				},
				&signalrservice.SignalRFeatureArgs{
					Flag:       pulumi.String(signalrservice.FeatureFlagsEnableMessagingLogs),
					Properties: pulumi.StringMap{},
					Value:      pulumi.String("False"),
				},
				&signalrservice.SignalRFeatureArgs{
					Flag:       pulumi.String(signalrservice.FeatureFlagsEnableLiveTrace),
					Properties: pulumi.StringMap{},
					Value:      pulumi.String("False"),
				},
			},
			Identity: &signalrservice.ManagedIdentityArgs{
				Type: pulumi.String(signalrservice.ManagedIdentityTypeSystemAssigned),
			},
			Kind: pulumi.String(signalrservice.ServiceKindSignalR),
			LiveTraceConfiguration: &signalrservice.LiveTraceConfigurationArgs{
				Categories: signalrservice.LiveTraceCategoryArray{
					&signalrservice.LiveTraceCategoryArgs{
						Enabled: pulumi.String("true"),
						Name:    pulumi.String("ConnectivityLogs"),
					},
				},
				Enabled: pulumi.String("false"),
			},
			Location: pulumi.String("eastus"),
			NetworkACLs: &signalrservice.SignalRNetworkACLsArgs{
				DefaultAction: pulumi.String(signalrservice.ACLActionDeny),
				PrivateEndpoints: signalrservice.PrivateEndpointACLArray{
					&signalrservice.PrivateEndpointACLArgs{
						Allow: pulumi.StringArray{
							pulumi.String(signalrservice.SignalRRequestTypeServerConnection),
						},
						Name: pulumi.String("mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
					},
				},
				PublicNetwork: &signalrservice.NetworkACLArgs{
					Allow: pulumi.StringArray{
						pulumi.String(signalrservice.SignalRRequestTypeClientConnection),
					},
				},
			},
			PublicNetworkAccess: pulumi.String("Enabled"),
			ResourceGroupName:   pulumi.String("myResourceGroup"),
			ResourceName:        pulumi.String("mySignalRService"),
			Serverless: &signalrservice.ServerlessSettingsArgs{
				ConnectionTimeoutInSeconds: pulumi.Int(5),
			},
			Sku: &signalrservice.ResourceSkuArgs{
				Capacity: pulumi.Int(1),
				Name:     pulumi.String("Premium_P1"),
				Tier:     pulumi.String(signalrservice.SignalRSkuTierPremium),
			},
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			Tls: &signalrservice.SignalRTlsSettingsArgs{
				ClientCertEnabled: pulumi.Bool(false),
			},
			Upstream: &signalrservice.ServerlessUpstreamSettingsArgs{
				Templates: signalrservice.UpstreamTemplateArray{
					&signalrservice.UpstreamTemplateArgs{
						Auth: &signalrservice.UpstreamAuthSettingsArgs{
							ManagedIdentity: &signalrservice.ManagedIdentitySettingsArgs{
								Resource: pulumi.String("api://example"),
							},
							Type: pulumi.String(signalrservice.UpstreamAuthTypeManagedIdentity),
						},
						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 com.pulumi.azurenative.signalrservice.inputs.SignalRCorsSettingsArgs;
import com.pulumi.azurenative.signalrservice.inputs.SignalRFeatureArgs;
import com.pulumi.azurenative.signalrservice.inputs.ManagedIdentityArgs;
import com.pulumi.azurenative.signalrservice.inputs.LiveTraceConfigurationArgs;
import com.pulumi.azurenative.signalrservice.inputs.SignalRNetworkACLsArgs;
import com.pulumi.azurenative.signalrservice.inputs.NetworkACLArgs;
import com.pulumi.azurenative.signalrservice.inputs.ServerlessSettingsArgs;
import com.pulumi.azurenative.signalrservice.inputs.ResourceSkuArgs;
import com.pulumi.azurenative.signalrservice.inputs.SignalRTlsSettingsArgs;
import com.pulumi.azurenative.signalrservice.inputs.ServerlessUpstreamSettingsArgs;
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(SignalRCorsSettingsArgs.builder()
                .allowedOrigins(                
                    "https://foo.com",
                    "https://bar.com")
                .build())
            .disableAadAuth(false)
            .disableLocalAuth(false)
            .features(            
                SignalRFeatureArgs.builder()
                    .flag("ServiceMode")
                    .properties()
                    .value("Serverless")
                    .build(),
                SignalRFeatureArgs.builder()
                    .flag("EnableConnectivityLogs")
                    .properties()
                    .value("True")
                    .build(),
                SignalRFeatureArgs.builder()
                    .flag("EnableMessagingLogs")
                    .properties()
                    .value("False")
                    .build(),
                SignalRFeatureArgs.builder()
                    .flag("EnableLiveTrace")
                    .properties()
                    .value("False")
                    .build())
            .identity(ManagedIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .kind("SignalR")
            .liveTraceConfiguration(LiveTraceConfigurationArgs.builder()
                .categories(LiveTraceCategoryArgs.builder()
                    .enabled("true")
                    .name("ConnectivityLogs")
                    .build())
                .enabled("false")
                .build())
            .location("eastus")
            .networkACLs(SignalRNetworkACLsArgs.builder()
                .defaultAction("Deny")
                .privateEndpoints(PrivateEndpointACLArgs.builder()
                    .allow("ServerConnection")
                    .name("mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e")
                    .build())
                .publicNetwork(NetworkACLArgs.builder()
                    .allow("ClientConnection")
                    .build())
                .build())
            .publicNetworkAccess("Enabled")
            .resourceGroupName("myResourceGroup")
            .resourceName("mySignalRService")
            .serverless(ServerlessSettingsArgs.builder()
                .connectionTimeoutInSeconds(5)
                .build())
            .sku(ResourceSkuArgs.builder()
                .capacity(1)
                .name("Premium_P1")
                .tier("Premium")
                .build())
            .tags(Map.of("key1", "value1"))
            .tls(SignalRTlsSettingsArgs.builder()
                .clientCertEnabled(false)
                .build())
            .upstream(ServerlessUpstreamSettingsArgs.builder()
                .templates(UpstreamTemplateArgs.builder()
                    .auth(UpstreamAuthSettingsArgs.builder()
                        .managedIdentity(ManagedIdentitySettingsArgs.builder()
                            .resource("api://example")
                            .build())
                        .type("ManagedIdentity")
                        .build())
                    .categoryPattern("*")
                    .eventPattern("connect,disconnect")
                    .hubPattern("*")
                    .urlTemplate("https://example.com/chat/api/connect")
                    .build())
                .build())
            .build());
    }
}
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",
        ],
    },
    disableAadAuth: false,
    disableLocalAuth: false,
    features: [
        {
            flag: azure_native.signalrservice.FeatureFlags.ServiceMode,
            properties: {},
            value: "Serverless",
        },
        {
            flag: azure_native.signalrservice.FeatureFlags.EnableConnectivityLogs,
            properties: {},
            value: "True",
        },
        {
            flag: azure_native.signalrservice.FeatureFlags.EnableMessagingLogs,
            properties: {},
            value: "False",
        },
        {
            flag: azure_native.signalrservice.FeatureFlags.EnableLiveTrace,
            properties: {},
            value: "False",
        },
    ],
    identity: {
        type: azure_native.signalrservice.ManagedIdentityType.SystemAssigned,
    },
    kind: azure_native.signalrservice.ServiceKind.SignalR,
    liveTraceConfiguration: {
        categories: [{
            enabled: "true",
            name: "ConnectivityLogs",
        }],
        enabled: "false",
    },
    location: "eastus",
    networkACLs: {
        defaultAction: azure_native.signalrservice.ACLAction.Deny,
        privateEndpoints: [{
            allow: [azure_native.signalrservice.SignalRRequestType.ServerConnection],
            name: "mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
        }],
        publicNetwork: {
            allow: [azure_native.signalrservice.SignalRRequestType.ClientConnection],
        },
    },
    publicNetworkAccess: "Enabled",
    resourceGroupName: "myResourceGroup",
    resourceName: "mySignalRService",
    serverless: {
        connectionTimeoutInSeconds: 5,
    },
    sku: {
        capacity: 1,
        name: "Premium_P1",
        tier: azure_native.signalrservice.SignalRSkuTier.Premium,
    },
    tags: {
        key1: "value1",
    },
    tls: {
        clientCertEnabled: false,
    },
    upstream: {
        templates: [{
            auth: {
                managedIdentity: {
                    resource: "api://example",
                },
                type: azure_native.signalrservice.UpstreamAuthType.ManagedIdentity,
            },
            categoryPattern: "*",
            eventPattern: "connect,disconnect",
            hubPattern: "*",
            urlTemplate: "https://example.com/chat/api/connect",
        }],
    },
});
import pulumi
import pulumi_azure_native as azure_native
signal_r = azure_native.signalrservice.SignalR("signalR",
    cors={
        "allowed_origins": [
            "https://foo.com",
            "https://bar.com",
        ],
    },
    disable_aad_auth=False,
    disable_local_auth=False,
    features=[
        {
            "flag": azure_native.signalrservice.FeatureFlags.SERVICE_MODE,
            "properties": {},
            "value": "Serverless",
        },
        {
            "flag": azure_native.signalrservice.FeatureFlags.ENABLE_CONNECTIVITY_LOGS,
            "properties": {},
            "value": "True",
        },
        {
            "flag": azure_native.signalrservice.FeatureFlags.ENABLE_MESSAGING_LOGS,
            "properties": {},
            "value": "False",
        },
        {
            "flag": azure_native.signalrservice.FeatureFlags.ENABLE_LIVE_TRACE,
            "properties": {},
            "value": "False",
        },
    ],
    identity={
        "type": azure_native.signalrservice.ManagedIdentityType.SYSTEM_ASSIGNED,
    },
    kind=azure_native.signalrservice.ServiceKind.SIGNAL_R,
    live_trace_configuration={
        "categories": [{
            "enabled": "true",
            "name": "ConnectivityLogs",
        }],
        "enabled": "false",
    },
    location="eastus",
    network_acls={
        "default_action": azure_native.signalrservice.ACLAction.DENY,
        "private_endpoints": [{
            "allow": [azure_native.signalrservice.SignalRRequestType.SERVER_CONNECTION],
            "name": "mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
        }],
        "public_network": {
            "allow": [azure_native.signalrservice.SignalRRequestType.CLIENT_CONNECTION],
        },
    },
    public_network_access="Enabled",
    resource_group_name="myResourceGroup",
    resource_name_="mySignalRService",
    serverless={
        "connection_timeout_in_seconds": 5,
    },
    sku={
        "capacity": 1,
        "name": "Premium_P1",
        "tier": azure_native.signalrservice.SignalRSkuTier.PREMIUM,
    },
    tags={
        "key1": "value1",
    },
    tls={
        "client_cert_enabled": False,
    },
    upstream={
        "templates": [{
            "auth": {
                "managed_identity": {
                    "resource": "api://example",
                },
                "type": azure_native.signalrservice.UpstreamAuthType.MANAGED_IDENTITY,
            },
            "category_pattern": "*",
            "event_pattern": "connect,disconnect",
            "hub_pattern": "*",
            "url_template": "https://example.com/chat/api/connect",
        }],
    })
resources:
  signalR:
    type: azure-native:signalrservice:SignalR
    properties:
      cors:
        allowedOrigins:
          - https://foo.com
          - https://bar.com
      disableAadAuth: false
      disableLocalAuth: false
      features:
        - flag: ServiceMode
          properties: {}
          value: Serverless
        - flag: EnableConnectivityLogs
          properties: {}
          value: True
        - flag: EnableMessagingLogs
          properties: {}
          value: False
        - flag: EnableLiveTrace
          properties: {}
          value: False
      identity:
        type: SystemAssigned
      kind: SignalR
      liveTraceConfiguration:
        categories:
          - enabled: 'true'
            name: ConnectivityLogs
        enabled: 'false'
      location: eastus
      networkACLs:
        defaultAction: Deny
        privateEndpoints:
          - allow:
              - ServerConnection
            name: mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e
        publicNetwork:
          allow:
            - ClientConnection
      publicNetworkAccess: Enabled
      resourceGroupName: myResourceGroup
      resourceName: mySignalRService
      serverless:
        connectionTimeoutInSeconds: 5
      sku:
        capacity: 1
        name: Premium_P1
        tier: Premium
      tags:
        key1: value1
      tls:
        clientCertEnabled: false
      upstream:
        templates:
          - auth:
              managedIdentity:
                resource: api://example
              type: ManagedIdentity
            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,
            network_acls: Optional[SignalRNetworkACLsArgs] = None,
            kind: Optional[Union[str, ServiceKind]] = None,
            public_network_access: Optional[str] = None,
            identity: Optional[ManagedIdentityArgs] = None,
            disable_aad_auth: Optional[bool] = None,
            live_trace_configuration: Optional[LiveTraceConfigurationArgs] = None,
            location: Optional[str] = None,
            resource_log_configuration: Optional[ResourceLogConfigurationArgs] = None,
            features: Optional[Sequence[SignalRFeatureArgs]] = None,
            disable_local_auth: Optional[bool] = None,
            cors: Optional[SignalRCorsSettingsArgs] = None,
            resource_name_: Optional[str] = None,
            serverless: Optional[ServerlessSettingsArgs] = None,
            sku: Optional[ResourceSkuArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            tls: Optional[SignalRTlsSettingsArgs] = 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",
    NetworkACLs = new AzureNative.SignalRService.Inputs.SignalRNetworkACLsArgs
    {
        DefaultAction = "string",
        PrivateEndpoints = new[]
        {
            new AzureNative.SignalRService.Inputs.PrivateEndpointACLArgs
            {
                Name = "string",
                Allow = new[]
                {
                    "string",
                },
                Deny = new[]
                {
                    "string",
                },
            },
        },
        PublicNetwork = new AzureNative.SignalRService.Inputs.NetworkACLArgs
        {
            Allow = new[]
            {
                "string",
            },
            Deny = new[]
            {
                "string",
            },
        },
    },
    Kind = "string",
    PublicNetworkAccess = "string",
    Identity = new AzureNative.SignalRService.Inputs.ManagedIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    DisableAadAuth = false,
    LiveTraceConfiguration = new AzureNative.SignalRService.Inputs.LiveTraceConfigurationArgs
    {
        Categories = new[]
        {
            new AzureNative.SignalRService.Inputs.LiveTraceCategoryArgs
            {
                Enabled = "string",
                Name = "string",
            },
        },
        Enabled = "string",
    },
    Location = "string",
    ResourceLogConfiguration = new AzureNative.SignalRService.Inputs.ResourceLogConfigurationArgs
    {
        Categories = new[]
        {
            new AzureNative.SignalRService.Inputs.ResourceLogCategoryArgs
            {
                Enabled = "string",
                Name = "string",
            },
        },
    },
    Features = new[]
    {
        new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
        {
            Flag = "string",
            Value = "string",
            Properties = 
            {
                { "string", "string" },
            },
        },
    },
    DisableLocalAuth = false,
    Cors = new AzureNative.SignalRService.Inputs.SignalRCorsSettingsArgs
    {
        AllowedOrigins = new[]
        {
            "string",
        },
    },
    ResourceName = "string",
    Serverless = new AzureNative.SignalRService.Inputs.ServerlessSettingsArgs
    {
        ConnectionTimeoutInSeconds = 0,
    },
    Sku = new AzureNative.SignalRService.Inputs.ResourceSkuArgs
    {
        Name = "string",
        Capacity = 0,
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    Tls = new AzureNative.SignalRService.Inputs.SignalRTlsSettingsArgs
    {
        ClientCertEnabled = false,
    },
    Upstream = new AzureNative.SignalRService.Inputs.ServerlessUpstreamSettingsArgs
    {
        Templates = new[]
        {
            new AzureNative.SignalRService.Inputs.UpstreamTemplateArgs
            {
                UrlTemplate = "string",
                Auth = new AzureNative.SignalRService.Inputs.UpstreamAuthSettingsArgs
                {
                    ManagedIdentity = new AzureNative.SignalRService.Inputs.ManagedIdentitySettingsArgs
                    {
                        Resource = "string",
                    },
                    Type = "string",
                },
                CategoryPattern = "string",
                EventPattern = "string",
                HubPattern = "string",
            },
        },
    },
});
example, err := signalrservice.NewSignalR(ctx, "signalRResource", &signalrservice.SignalRArgs{
	ResourceGroupName: pulumi.String("string"),
	NetworkACLs: &signalrservice.SignalRNetworkACLsArgs{
		DefaultAction: pulumi.String("string"),
		PrivateEndpoints: signalrservice.PrivateEndpointACLArray{
			&signalrservice.PrivateEndpointACLArgs{
				Name: pulumi.String("string"),
				Allow: pulumi.StringArray{
					pulumi.String("string"),
				},
				Deny: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
		PublicNetwork: &signalrservice.NetworkACLArgs{
			Allow: pulumi.StringArray{
				pulumi.String("string"),
			},
			Deny: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	Kind:                pulumi.String("string"),
	PublicNetworkAccess: pulumi.String("string"),
	Identity: &signalrservice.ManagedIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	DisableAadAuth: pulumi.Bool(false),
	LiveTraceConfiguration: &signalrservice.LiveTraceConfigurationArgs{
		Categories: signalrservice.LiveTraceCategoryArray{
			&signalrservice.LiveTraceCategoryArgs{
				Enabled: pulumi.String("string"),
				Name:    pulumi.String("string"),
			},
		},
		Enabled: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	ResourceLogConfiguration: &signalrservice.ResourceLogConfigurationArgs{
		Categories: signalrservice.ResourceLogCategoryArray{
			&signalrservice.ResourceLogCategoryArgs{
				Enabled: pulumi.String("string"),
				Name:    pulumi.String("string"),
			},
		},
	},
	Features: signalrservice.SignalRFeatureArray{
		&signalrservice.SignalRFeatureArgs{
			Flag:  pulumi.String("string"),
			Value: pulumi.String("string"),
			Properties: pulumi.StringMap{
				"string": pulumi.String("string"),
			},
		},
	},
	DisableLocalAuth: pulumi.Bool(false),
	Cors: &signalrservice.SignalRCorsSettingsArgs{
		AllowedOrigins: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	ResourceName: pulumi.String("string"),
	Serverless: &signalrservice.ServerlessSettingsArgs{
		ConnectionTimeoutInSeconds: pulumi.Int(0),
	},
	Sku: &signalrservice.ResourceSkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Tier:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Tls: &signalrservice.SignalRTlsSettingsArgs{
		ClientCertEnabled: pulumi.Bool(false),
	},
	Upstream: &signalrservice.ServerlessUpstreamSettingsArgs{
		Templates: signalrservice.UpstreamTemplateArray{
			&signalrservice.UpstreamTemplateArgs{
				UrlTemplate: pulumi.String("string"),
				Auth: &signalrservice.UpstreamAuthSettingsArgs{
					ManagedIdentity: &signalrservice.ManagedIdentitySettingsArgs{
						Resource: pulumi.String("string"),
					},
					Type: pulumi.String("string"),
				},
				CategoryPattern: pulumi.String("string"),
				EventPattern:    pulumi.String("string"),
				HubPattern:      pulumi.String("string"),
			},
		},
	},
})
var signalRResource = new SignalR("signalRResource", SignalRArgs.builder()
    .resourceGroupName("string")
    .networkACLs(SignalRNetworkACLsArgs.builder()
        .defaultAction("string")
        .privateEndpoints(PrivateEndpointACLArgs.builder()
            .name("string")
            .allow("string")
            .deny("string")
            .build())
        .publicNetwork(NetworkACLArgs.builder()
            .allow("string")
            .deny("string")
            .build())
        .build())
    .kind("string")
    .publicNetworkAccess("string")
    .identity(ManagedIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .disableAadAuth(false)
    .liveTraceConfiguration(LiveTraceConfigurationArgs.builder()
        .categories(LiveTraceCategoryArgs.builder()
            .enabled("string")
            .name("string")
            .build())
        .enabled("string")
        .build())
    .location("string")
    .resourceLogConfiguration(ResourceLogConfigurationArgs.builder()
        .categories(ResourceLogCategoryArgs.builder()
            .enabled("string")
            .name("string")
            .build())
        .build())
    .features(SignalRFeatureArgs.builder()
        .flag("string")
        .value("string")
        .properties(Map.of("string", "string"))
        .build())
    .disableLocalAuth(false)
    .cors(SignalRCorsSettingsArgs.builder()
        .allowedOrigins("string")
        .build())
    .resourceName("string")
    .serverless(ServerlessSettingsArgs.builder()
        .connectionTimeoutInSeconds(0)
        .build())
    .sku(ResourceSkuArgs.builder()
        .name("string")
        .capacity(0)
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .tls(SignalRTlsSettingsArgs.builder()
        .clientCertEnabled(false)
        .build())
    .upstream(ServerlessUpstreamSettingsArgs.builder()
        .templates(UpstreamTemplateArgs.builder()
            .urlTemplate("string")
            .auth(UpstreamAuthSettingsArgs.builder()
                .managedIdentity(ManagedIdentitySettingsArgs.builder()
                    .resource("string")
                    .build())
                .type("string")
                .build())
            .categoryPattern("string")
            .eventPattern("string")
            .hubPattern("string")
            .build())
        .build())
    .build());
signal_r_resource = azure_native.signalrservice.SignalR("signalRResource",
    resource_group_name="string",
    network_acls={
        "default_action": "string",
        "private_endpoints": [{
            "name": "string",
            "allow": ["string"],
            "deny": ["string"],
        }],
        "public_network": {
            "allow": ["string"],
            "deny": ["string"],
        },
    },
    kind="string",
    public_network_access="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    disable_aad_auth=False,
    live_trace_configuration={
        "categories": [{
            "enabled": "string",
            "name": "string",
        }],
        "enabled": "string",
    },
    location="string",
    resource_log_configuration={
        "categories": [{
            "enabled": "string",
            "name": "string",
        }],
    },
    features=[{
        "flag": "string",
        "value": "string",
        "properties": {
            "string": "string",
        },
    }],
    disable_local_auth=False,
    cors={
        "allowed_origins": ["string"],
    },
    resource_name_="string",
    serverless={
        "connection_timeout_in_seconds": 0,
    },
    sku={
        "name": "string",
        "capacity": 0,
        "tier": "string",
    },
    tags={
        "string": "string",
    },
    tls={
        "client_cert_enabled": False,
    },
    upstream={
        "templates": [{
            "url_template": "string",
            "auth": {
                "managed_identity": {
                    "resource": "string",
                },
                "type": "string",
            },
            "category_pattern": "string",
            "event_pattern": "string",
            "hub_pattern": "string",
        }],
    })
const signalRResource = new azure_native.signalrservice.SignalR("signalRResource", {
    resourceGroupName: "string",
    networkACLs: {
        defaultAction: "string",
        privateEndpoints: [{
            name: "string",
            allow: ["string"],
            deny: ["string"],
        }],
        publicNetwork: {
            allow: ["string"],
            deny: ["string"],
        },
    },
    kind: "string",
    publicNetworkAccess: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    disableAadAuth: false,
    liveTraceConfiguration: {
        categories: [{
            enabled: "string",
            name: "string",
        }],
        enabled: "string",
    },
    location: "string",
    resourceLogConfiguration: {
        categories: [{
            enabled: "string",
            name: "string",
        }],
    },
    features: [{
        flag: "string",
        value: "string",
        properties: {
            string: "string",
        },
    }],
    disableLocalAuth: false,
    cors: {
        allowedOrigins: ["string"],
    },
    resourceName: "string",
    serverless: {
        connectionTimeoutInSeconds: 0,
    },
    sku: {
        name: "string",
        capacity: 0,
        tier: "string",
    },
    tags: {
        string: "string",
    },
    tls: {
        clientCertEnabled: false,
    },
    upstream: {
        templates: [{
            urlTemplate: "string",
            auth: {
                managedIdentity: {
                    resource: "string",
                },
                type: "string",
            },
            categoryPattern: "string",
            eventPattern: "string",
            hubPattern: "string",
        }],
    },
});
type: azure-native:signalrservice:SignalR
properties:
    cors:
        allowedOrigins:
            - string
    disableAadAuth: false
    disableLocalAuth: false
    features:
        - flag: string
          properties:
            string: string
          value: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    kind: string
    liveTraceConfiguration:
        categories:
            - enabled: string
              name: string
        enabled: string
    location: string
    networkACLs:
        defaultAction: string
        privateEndpoints:
            - allow:
                - string
              deny:
                - string
              name: string
        publicNetwork:
            allow:
                - string
            deny:
                - string
    publicNetworkAccess: string
    resourceGroupName: string
    resourceLogConfiguration:
        categories:
            - enabled: string
              name: string
    resourceName: string
    serverless:
        connectionTimeoutInSeconds: 0
    sku:
        capacity: 0
        name: string
        tier: string
    tags:
        string: string
    tls:
        clientCertEnabled: false
    upstream:
        templates:
            - auth:
                managedIdentity:
                    resource: string
                type: string
              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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SignalR resource accepts the following input properties:
- ResourceGroup stringName 
- 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.Azure Native. Signal RService. Inputs. Signal RCors Settings 
- Cross-Origin Resource Sharing (CORS) settings.
- DisableAad boolAuth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- DisableLocal boolAuth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- Features
List<Pulumi.Azure Native. Signal RService. Inputs. Signal RFeature> 
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- Identity
Pulumi.Azure Native. Signal RService. Inputs. Managed Identity 
- A class represent managed identities used for request and response
- Kind
string | Pulumi.Azure Native. Signal RService. Service Kind 
- The kind of the service, it can be SignalR or RawWebSockets
- LiveTrace Pulumi.Configuration Azure Native. Signal RService. Inputs. Live Trace Configuration 
- Live trace configuration of a Microsoft.SignalRService resource.
- Location string
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- NetworkACLs Pulumi.Azure Native. Signal RService. Inputs. Signal RNetwork ACLs 
- Network ACLs for the resource
- PublicNetwork stringAccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- ResourceLog Pulumi.Configuration Azure Native. Signal RService. Inputs. Resource Log Configuration 
- Resource log configuration of a Microsoft.SignalRService resource.
- ResourceName string
- The name of the resource.
- Serverless
Pulumi.Azure Native. Signal RService. Inputs. Serverless Settings 
- Serverless settings.
- Sku
Pulumi.Azure Native. Signal RService. Inputs. Resource Sku 
- The billing information of the resource.
- Dictionary<string, string>
- Tags of the service which is a list of key value pairs that describe the resource.
- Tls
Pulumi.Azure Native. Signal RService. Inputs. Signal RTls Settings 
- TLS settings for the resource
- Upstream
Pulumi.Azure Native. Signal RService. Inputs. Serverless Upstream Settings 
- The settings for the Upstream when the service is in server-less mode.
- ResourceGroup stringName 
- 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
SignalRCors Settings Args 
- Cross-Origin Resource Sharing (CORS) settings.
- DisableAad boolAuth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- DisableLocal boolAuth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- Features
[]SignalRFeature Args 
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- Identity
ManagedIdentity Args 
- A class represent managed identities used for request and response
- Kind
string | ServiceKind 
- The kind of the service, it can be SignalR or RawWebSockets
- LiveTrace LiveConfiguration Trace Configuration Args 
- Live trace configuration of a Microsoft.SignalRService resource.
- Location string
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- NetworkACLs SignalRNetwork ACLs Args 
- Network ACLs for the resource
- PublicNetwork stringAccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- ResourceLog ResourceConfiguration Log Configuration Args 
- Resource log configuration of a Microsoft.SignalRService resource.
- ResourceName string
- The name of the resource.
- Serverless
ServerlessSettings Args 
- Serverless settings.
- Sku
ResourceSku Args 
- The billing information of the resource.
- map[string]string
- Tags of the service which is a list of key value pairs that describe the resource.
- Tls
SignalRTls Settings Args 
- TLS settings for the resource
- Upstream
ServerlessUpstream Settings Args 
- The settings for the Upstream when the service is in server-less mode.
- resourceGroup StringName 
- 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
SignalRCors Settings 
- Cross-Origin Resource Sharing (CORS) settings.
- disableAad BooleanAuth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- disableLocal BooleanAuth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- features
List<SignalRFeature> 
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- identity
ManagedIdentity 
- A class represent managed identities used for request and response
- kind
String | ServiceKind 
- The kind of the service, it can be SignalR or RawWebSockets
- liveTrace LiveConfiguration Trace Configuration 
- Live trace configuration of a Microsoft.SignalRService resource.
- location String
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- networkACLs SignalRNetwork ACLs 
- Network ACLs for the resource
- publicNetwork StringAccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- resourceLog ResourceConfiguration Log Configuration 
- Resource log configuration of a Microsoft.SignalRService resource.
- resourceName String
- The name of the resource.
- serverless
ServerlessSettings 
- Serverless settings.
- sku
ResourceSku 
- The billing information of the resource.
- Map<String,String>
- Tags of the service which is a list of key value pairs that describe the resource.
- tls
SignalRTls Settings 
- TLS settings for the resource
- upstream
ServerlessUpstream Settings 
- The settings for the Upstream when the service is in server-less mode.
- resourceGroup stringName 
- 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
SignalRCors Settings 
- Cross-Origin Resource Sharing (CORS) settings.
- disableAad booleanAuth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- disableLocal booleanAuth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- features
SignalRFeature[] 
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- identity
ManagedIdentity 
- A class represent managed identities used for request and response
- kind
string | ServiceKind 
- The kind of the service, it can be SignalR or RawWebSockets
- liveTrace LiveConfiguration Trace Configuration 
- Live trace configuration of a Microsoft.SignalRService resource.
- location string
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- networkACLs SignalRNetwork ACLs 
- Network ACLs for the resource
- publicNetwork stringAccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- resourceLog ResourceConfiguration Log Configuration 
- Resource log configuration of a Microsoft.SignalRService resource.
- resourceName string
- The name of the resource.
- serverless
ServerlessSettings 
- Serverless settings.
- sku
ResourceSku 
- The billing information of the resource.
- {[key: string]: string}
- Tags of the service which is a list of key value pairs that describe the resource.
- tls
SignalRTls Settings 
- TLS settings for the resource
- upstream
ServerlessUpstream Settings 
- The settings for the Upstream when the service is in server-less mode.
- resource_group_ strname 
- 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
SignalRCors Settings Args 
- Cross-Origin Resource Sharing (CORS) settings.
- disable_aad_ boolauth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- disable_local_ boolauth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- features
Sequence[SignalRFeature Args] 
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- identity
ManagedIdentity Args 
- A class represent managed identities used for request and response
- kind
str | ServiceKind 
- The kind of the service, it can be SignalR or RawWebSockets
- live_trace_ Liveconfiguration Trace Configuration Args 
- Live trace configuration of a Microsoft.SignalRService resource.
- location str
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- network_acls SignalRNetwork ACLs Args 
- Network ACLs for the resource
- public_network_ straccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- resource_log_ Resourceconfiguration Log Configuration Args 
- Resource log configuration of a Microsoft.SignalRService resource.
- resource_name str
- The name of the resource.
- serverless
ServerlessSettings Args 
- Serverless settings.
- sku
ResourceSku Args 
- The billing information of the resource.
- Mapping[str, str]
- Tags of the service which is a list of key value pairs that describe the resource.
- tls
SignalRTls Settings Args 
- TLS settings for the resource
- upstream
ServerlessUpstream Settings Args 
- The settings for the Upstream when the service is in server-less mode.
- resourceGroup StringName 
- 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.
- disableAad BooleanAuth 
- DisableLocalAuth Enable or disable aad auth When set as true, connection with AuthType=aad won't work.
- disableLocal BooleanAuth 
- DisableLocalAuth Enable or disable local auth with AccessKey When set as true, connection with AccessKey=xxx won't work.
- features List<Property Map>
- List of the featureFlags. - 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, its globally default value will be used But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags. 
- identity Property Map
- A class represent managed identities used for request and response
- kind
String | "SignalR" | "Raw Web Sockets" 
- The kind of the service, it can be SignalR or RawWebSockets
- liveTrace Property MapConfiguration 
- Live trace configuration of a Microsoft.SignalRService resource.
- location String
- The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- networkACLs Property Map
- Network ACLs for the resource
- publicNetwork StringAccess 
- Enable or disable public network access. Default to "Enabled". When it's Enabled, network ACLs still apply. When it's Disabled, public network access is always disabled no matter what you set in network ACLs.
- resourceLog Property MapConfiguration 
- Resource log configuration of a Microsoft.SignalRService resource.
- resourceName String
- The name of the resource.
- serverless Property Map
- Serverless settings.
- sku Property Map
- The billing information of the resource.
- Map<String>
- Tags of the service which is a list of key value pairs that describe the resource.
- tls Property Map
- TLS settings for the resource
- upstream Property Map
- The settings for the Upstream when the service 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 resource.
- HostName string
- FQDN of the service instance.
- HostName stringPrefix 
- Deprecated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Signal RService. Outputs. Private Endpoint Connection Response> 
- Private endpoint connections to the resource.
- ProvisioningState string
- Provisioning state of the resource.
- PublicPort int
- The publicly accessible port of the resource which is designed for browser/client side usage.
- ServerPort int
- The publicly accessible port of the resource which is designed for customer server side usage.
- 
List<Pulumi.Azure Native. Signal RService. Outputs. Shared Private Link Resource Response> 
- The list of shared private link resources.
- SystemData Pulumi.Azure Native. Signal RService. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Version string
- Version of the resource. Probably you need the same or higher version of client SDKs.
- ExternalIP string
- The publicly accessible IP of the resource.
- HostName string
- FQDN of the service instance.
- HostName stringPrefix 
- Deprecated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- PrivateEndpoint []PrivateConnections Endpoint Connection Response 
- Private endpoint connections to the resource.
- ProvisioningState string
- Provisioning state of the resource.
- PublicPort int
- The publicly accessible port of the resource which is designed for browser/client side usage.
- ServerPort int
- The publicly accessible port of the resource which is designed for customer server side usage.
- 
[]SharedPrivate Link Resource Response 
- The list of shared private link resources.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Version string
- Version of the resource. Probably you need the same or higher version of client SDKs.
- externalIP String
- The publicly accessible IP of the resource.
- hostName String
- FQDN of the service instance.
- hostName StringPrefix 
- Deprecated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- privateEndpoint List<PrivateConnections Endpoint Connection Response> 
- Private endpoint connections to the resource.
- provisioningState String
- Provisioning state of the resource.
- publicPort Integer
- The publicly accessible port of the resource which is designed for browser/client side usage.
- serverPort Integer
- The publicly accessible port of the resource which is designed for customer server side usage.
- 
List<SharedPrivate Link Resource Response> 
- The list of shared private link resources.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version String
- Version of the resource. Probably you need the same or higher version of client SDKs.
- externalIP string
- The publicly accessible IP of the resource.
- hostName string
- FQDN of the service instance.
- hostName stringPrefix 
- Deprecated.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- privateEndpoint PrivateConnections Endpoint Connection Response[] 
- Private endpoint connections to the resource.
- provisioningState string
- Provisioning state of the resource.
- publicPort number
- The publicly accessible port of the resource which is designed for browser/client side usage.
- serverPort number
- The publicly accessible port of the resource which is designed for customer server side usage.
- 
SharedPrivate Link Resource Response[] 
- The list of shared private link resources.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version string
- Version of the resource. Probably you need the same or higher version of client SDKs.
- external_ip str
- The publicly accessible IP of the resource.
- host_name str
- FQDN of the service instance.
- host_name_ strprefix 
- Deprecated.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Response] 
- Private endpoint connections to the resource.
- provisioning_state str
- Provisioning state of the resource.
- public_port int
- The publicly accessible port of the resource which is designed for browser/client side usage.
- server_port int
- The publicly accessible port of the resource which is designed for customer server side usage.
- 
Sequence[SharedPrivate Link Resource Response] 
- The list of shared private link resources.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version str
- Version of the resource. Probably you need the same or higher version of client SDKs.
- externalIP String
- The publicly accessible IP of the resource.
- hostName String
- FQDN of the service instance.
- hostName StringPrefix 
- Deprecated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- privateEndpoint List<Property Map>Connections 
- Private endpoint connections to the resource.
- provisioningState String
- Provisioning state of the resource.
- publicPort Number
- The publicly accessible port of the resource which is designed for browser/client side usage.
- serverPort Number
- The publicly accessible port of the resource which is designed for customer server side usage.
- List<Property Map>
- The list of shared private link resources.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version String
- Version of the 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
- EnableConnectivity Logs 
- EnableConnectivityLogs
- EnableMessaging Logs 
- EnableMessagingLogs
- EnableLive Trace 
- EnableLiveTrace
- FeatureFlags Service Mode 
- ServiceMode
- FeatureFlags Enable Connectivity Logs 
- EnableConnectivityLogs
- FeatureFlags Enable Messaging Logs 
- EnableMessagingLogs
- FeatureFlags Enable Live Trace 
- EnableLiveTrace
- ServiceMode 
- ServiceMode
- EnableConnectivity Logs 
- EnableConnectivityLogs
- EnableMessaging Logs 
- EnableMessagingLogs
- EnableLive Trace 
- EnableLiveTrace
- ServiceMode 
- ServiceMode
- EnableConnectivity Logs 
- EnableConnectivityLogs
- EnableMessaging Logs 
- EnableMessagingLogs
- EnableLive Trace 
- EnableLiveTrace
- SERVICE_MODE
- ServiceMode
- ENABLE_CONNECTIVITY_LOGS
- EnableConnectivityLogs
- ENABLE_MESSAGING_LOGS
- EnableMessagingLogs
- ENABLE_LIVE_TRACE
- EnableLiveTrace
- "ServiceMode" 
- ServiceMode
- "EnableConnectivity Logs" 
- EnableConnectivityLogs
- "EnableMessaging Logs" 
- EnableMessagingLogs
- "EnableLive Trace" 
- EnableLiveTrace
LiveTraceCategory, LiveTraceCategoryArgs      
LiveTraceCategoryResponse, LiveTraceCategoryResponseArgs        
LiveTraceConfiguration, LiveTraceConfigurationArgs      
- Categories
List<Pulumi.Azure Native. Signal RService. Inputs. Live Trace Category> 
- Gets or sets the list of category configurations.
- Enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- Categories
[]LiveTrace Category 
- Gets or sets the list of category configurations.
- Enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
List<LiveTrace Category> 
- Gets or sets the list of category configurations.
- enabled String
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
LiveTrace Category[] 
- Gets or sets the list of category configurations.
- enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
Sequence[LiveTrace Category] 
- Gets or sets the list of category configurations.
- enabled str
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories List<Property Map>
- Gets or sets the list of category configurations.
- enabled String
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
LiveTraceConfigurationResponse, LiveTraceConfigurationResponseArgs        
- Categories
List<Pulumi.Azure Native. Signal RService. Inputs. Live Trace Category Response> 
- Gets or sets the list of category configurations.
- Enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- Categories
[]LiveTrace Category Response 
- Gets or sets the list of category configurations.
- Enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
List<LiveTrace Category Response> 
- Gets or sets the list of category configurations.
- enabled String
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
LiveTrace Category Response[] 
- Gets or sets the list of category configurations.
- enabled string
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories
Sequence[LiveTrace Category Response] 
- Gets or sets the list of category configurations.
- enabled str
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
- categories List<Property Map>
- Gets or sets the list of category configurations.
- enabled String
- Indicates whether or not enable live trace. When it's set to true, live trace client can connect to the service. Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories". Available values: true, false. Case insensitive.
ManagedIdentity, ManagedIdentityArgs    
- Type
string | Pulumi.Azure Native. Signal RService. Managed Identity Type 
- Represents the identity type: systemAssigned, userAssigned, None
- UserAssigned List<string>Identities 
- Get or set the user assigned identities
- Type
string | ManagedIdentity Type 
- Represents the identity type: systemAssigned, userAssigned, None
- UserAssigned []stringIdentities 
- Get or set the user assigned identities
- type
String | ManagedIdentity Type 
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned List<String>Identities 
- Get or set the user assigned identities
- type
string | ManagedIdentity Type 
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned string[]Identities 
- Get or set the user assigned identities
- type
str | ManagedIdentity Type 
- Represents the identity type: systemAssigned, userAssigned, None
- user_assigned_ Sequence[str]identities 
- Get or set the user assigned identities
- type
String | "None" | "SystemAssigned" | "User Assigned" 
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned List<String>Identities 
- Get or set the user assigned identities
ManagedIdentityResponse, ManagedIdentityResponseArgs      
- PrincipalId string
- Get the principal id for the system assigned identity. Only be used in response.
- TenantId string
- Get the tenant id for the system assigned identity. Only be used in response
- Type string
- Represents the identity type: systemAssigned, userAssigned, None
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Signal RService. Inputs. User Assigned Identity Property Response> 
- Get or set the user assigned identities
- PrincipalId string
- Get the principal id for the system assigned identity. Only be used in response.
- TenantId string
- Get the tenant id for the system assigned identity. Only be used in response
- Type string
- Represents the identity type: systemAssigned, userAssigned, None
- UserAssigned map[string]UserIdentities Assigned Identity Property Response 
- Get or set the user assigned identities
- principalId String
- Get the principal id for the system assigned identity. Only be used in response.
- tenantId String
- Get the tenant id for the system assigned identity. Only be used in response
- type String
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned Map<String,UserIdentities Assigned Identity Property Response> 
- Get or set the user assigned identities
- principalId string
- Get the principal id for the system assigned identity. Only be used in response.
- tenantId string
- Get the tenant id for the system assigned identity. Only be used in response
- type string
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned {[key: string]: UserIdentities Assigned Identity Property Response} 
- Get or set the user assigned identities
- principal_id str
- Get the principal id for the system assigned identity. Only be used in response.
- tenant_id str
- Get the tenant id for the system assigned identity. Only be used in response
- type str
- Represents the identity type: systemAssigned, userAssigned, None
- user_assigned_ Mapping[str, Useridentities Assigned Identity Property Response] 
- Get or set the user assigned identities
- principalId String
- Get the principal id for the system assigned identity. Only be used in response.
- tenantId String
- Get the tenant id for the system assigned identity. Only be used in response
- type String
- Represents the identity type: systemAssigned, userAssigned, None
- userAssigned Map<Property Map>Identities 
- Get or set the user assigned identities
ManagedIdentitySettings, ManagedIdentitySettingsArgs      
- Resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- Resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource String
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource str
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource String
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
ManagedIdentitySettingsResponse, ManagedIdentitySettingsResponseArgs        
- Resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- Resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource String
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource string
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource str
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
- resource String
- The Resource indicating the App ID URI of the target resource. It also appears in the aud (audience) claim of the issued token.
ManagedIdentityType, ManagedIdentityTypeArgs      
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- ManagedIdentity Type None 
- None
- ManagedIdentity Type System Assigned 
- SystemAssigned
- ManagedIdentity Type User Assigned 
- UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
NetworkACL, NetworkACLArgs    
- Allow
List<Union<string, Pulumi.Azure Native. Signal RService. Signal RRequest Type>> 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- Deny
List<Union<string, Pulumi.Azure Native. Signal RService. Signal RRequest Type>> 
- Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- allow
List<String | "ClientConnection" | "Server Connection" | "RESTAPI" | "Trace"> 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<String | "ClientConnection" | "Server Connection" | "RESTAPI" | "Trace"> 
- Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
NetworkACLResponse, NetworkACLResponseArgs    
PrivateEndpointACL, PrivateEndpointACLArgs      
- Name string
- Name of the private endpoint connection
- Allow
List<Union<string, Pulumi.Azure Native. Signal RService. Signal RRequest Type>> 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- Deny
List<Union<string, Pulumi.Azure Native. Signal RService. Signal RRequest Type>> 
- 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,SignalRRequest Type>> 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<Either<String,SignalRRequest Type>> 
- Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- name string
- Name of the private endpoint connection
- allow
(string | SignalRRequest Type)[] 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
(string | SignalRRequest Type)[] 
- 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, SignalRRequest Type]] 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
Sequence[Union[str, SignalRRequest Type]] 
- 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" | "Server Connection" | "RESTAPI" | "Trace"> 
- Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<String | "ClientConnection" | "Server Connection" | "RESTAPI" | "Trace"> 
- Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
PrivateEndpointACLResponse, PrivateEndpointACLResponseArgs      
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
- GroupIds List<string>
- Group IDs
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- ProvisioningState string
- Provisioning state of the resource.
- SystemData Pulumi.Azure Native. Signal RService. Inputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- PrivateEndpoint Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint Response 
- Private endpoint
- PrivateLink Pulumi.Service Connection State Azure Native. Signal RService. Inputs. Private Link Service Connection State Response 
- Connection state of the private endpoint connection
- GroupIds []string
- Group IDs
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- ProvisioningState string
- Provisioning state of the resource.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- PrivateEndpoint PrivateEndpoint Response 
- Private endpoint
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- Connection state of the private endpoint connection
- groupIds List<String>
- Group IDs
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- provisioningState String
- Provisioning state of the resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- privateEndpoint PrivateEndpoint Response 
- Private endpoint
- privateLink PrivateService Connection State Link Service Connection State Response 
- Connection state of the private endpoint connection
- groupIds string[]
- Group IDs
- id string
- Fully qualified resource Id for the resource.
- name string
- The name of the resource.
- provisioningState string
- Provisioning state of the resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- privateEndpoint PrivateEndpoint Response 
- Private endpoint
- privateLink PrivateService Connection State Link Service Connection State Response 
- Connection state of the private endpoint connection
- group_ids Sequence[str]
- Group IDs
- id str
- Fully qualified resource Id for the resource.
- name str
- The name of the resource.
- provisioning_state str
- Provisioning state of the resource.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- private_endpoint PrivateEndpoint Response 
- Private endpoint
- private_link_ Privateservice_ connection_ state Link Service Connection State Response 
- Connection state of the private endpoint connection
- groupIds List<String>
- Group IDs
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- provisioningState String
- Provisioning state of the resource.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- privateEndpoint Property Map
- Private endpoint
- privateLink Property MapService Connection State 
- Connection state of the private endpoint connection
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.
ResourceLogCategory, ResourceLogCategoryArgs      
ResourceLogCategoryResponse, ResourceLogCategoryResponseArgs        
ResourceLogConfiguration, ResourceLogConfigurationArgs      
- Categories
List<Pulumi.Azure Native. Signal RService. Inputs. Resource Log Category> 
- Gets or sets the list of category configurations.
- Categories
[]ResourceLog Category 
- Gets or sets the list of category configurations.
- categories
List<ResourceLog Category> 
- Gets or sets the list of category configurations.
- categories
ResourceLog Category[] 
- Gets or sets the list of category configurations.
- categories
Sequence[ResourceLog Category] 
- Gets or sets the list of category configurations.
- categories List<Property Map>
- Gets or sets the list of category configurations.
ResourceLogConfigurationResponse, ResourceLogConfigurationResponseArgs        
- Categories
List<Pulumi.Azure Native. Signal RService. Inputs. Resource Log Category Response> 
- Gets or sets the list of category configurations.
- Categories
[]ResourceLog Category Response 
- Gets or sets the list of category configurations.
- categories
List<ResourceLog Category Response> 
- Gets or sets the list of category configurations.
- categories
ResourceLog Category Response[] 
- Gets or sets the list of category configurations.
- categories
Sequence[ResourceLog Category Response] 
- Gets or sets the list of category configurations.
- categories List<Property Map>
- Gets or sets the list of category configurations.
ResourceSku, ResourceSkuArgs    
- Name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- Capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- Tier
string | Pulumi.Azure Native. Signal RService. Signal RSku Tier 
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- Name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- Capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- Tier
string | SignalRSku Tier 
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- name String
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- capacity Integer
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier
String | SignalRSku Tier 
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- capacity number
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier
string | SignalRSku Tier 
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- name str
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier
str | SignalRSku Tier 
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- name String
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- capacity Number
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier String | "Free" | "Basic" | "Standard" | "Premium"
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
ResourceSkuResponse, ResourceSkuResponseArgs      
- Family string
- Not used. Retained for future use.
- Name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- Size string
- Not used. Retained for future use.
- Capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- Tier string
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- Family string
- Not used. Retained for future use.
- Name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- Size string
- Not used. Retained for future use.
- Capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- Tier string
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- family String
- Not used. Retained for future use.
- name String
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- size String
- Not used. Retained for future use.
- capacity Integer
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier String
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- family string
- Not used. Retained for future use.
- name string
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- size string
- Not used. Retained for future use.
- capacity number
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier string
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- family str
- Not used. Retained for future use.
- name str
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- size str
- Not used. Retained for future use.
- capacity int
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier str
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
- family String
- Not used. Retained for future use.
- name String
- The name of the SKU. Required. - Allowed values: Standard_S1, Free_F1, Premium_P1 
- size String
- Not used. Retained for future use.
- capacity Number
- Optional, integer. The unit count of the resource. 1 by default. - If present, following values are allowed: Free: 1; Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; 
- tier String
- Optional tier of this particular SKU. 'Standard' or 'Free'. - Basicis deprecated, use- Standardinstead.
ServerlessSettings, ServerlessSettingsArgs    
- ConnectionTimeout intIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- ConnectionTimeout intIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout IntegerIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout numberIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connection_timeout_ intin_ seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout NumberIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
ServerlessSettingsResponse, ServerlessSettingsResponseArgs      
- ConnectionTimeout intIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- ConnectionTimeout intIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout IntegerIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout numberIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connection_timeout_ intin_ seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
- connectionTimeout NumberIn Seconds 
- Gets or sets Client Connection Timeout. Optional to be set. Value in seconds. Default value is 30 seconds. Customer should set the timeout to a shorter period if messages are expected to be sent in shorter intervals, and want the client to disconnect more quickly after the last message is sent. You can set the timeout to a longer period if messages are expected to be sent in longer intervals, and they want to keep the same client connection alive during this session. The service considers the client disconnected if it hasn't received a message (including keep-alive) in this interval.
ServerlessUpstreamSettings, ServerlessUpstreamSettingsArgs      
- Templates
List<Pulumi.Azure Native. Signal RService. Inputs. Upstream Template> 
- 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.Azure Native. Signal RService. Inputs. Upstream Template Response> 
- Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- Templates
[]UpstreamTemplate Response 
- Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
List<UpstreamTemplate Response> 
- Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
UpstreamTemplate Response[] 
- Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
Sequence[UpstreamTemplate Response] 
- 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
- RawWeb Sockets 
- RawWebSockets
- ServiceKind Signal R 
- SignalR
- ServiceKind Raw Web Sockets 
- RawWebSockets
- SignalR 
- SignalR
- RawWeb Sockets 
- RawWebSockets
- SignalR 
- SignalR
- RawWeb Sockets 
- RawWebSockets
- SIGNAL_R
- SignalR
- RAW_WEB_SOCKETS
- RawWebSockets
- "SignalR" 
- SignalR
- "RawWeb Sockets" 
- RawWebSockets
SharedPrivateLinkResourceResponse, SharedPrivateLinkResourceResponseArgs          
- GroupId string
- The group id from the provider of resource the shared private link resource is for
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- PrivateLink stringResource Id 
- The resource id of the resource the shared private link resource is for
- ProvisioningState string
- Provisioning state of the resource.
- Status string
- Status of the shared private link resource
- SystemData Pulumi.Azure Native. Signal RService. Inputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- RequestMessage string
- The request message for requesting approval of the shared private link resource
- GroupId string
- The group id from the provider of resource the shared private link resource is for
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- PrivateLink stringResource Id 
- The resource id of the resource the shared private link resource is for
- ProvisioningState string
- Provisioning state of the resource.
- Status string
- Status of the shared private link resource
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- RequestMessage string
- The request message for requesting approval of the shared private link resource
- groupId String
- The group id from the provider of resource the shared private link resource is for
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- privateLink StringResource Id 
- The resource id of the resource the shared private link resource is for
- provisioningState String
- Provisioning state of the resource.
- status String
- Status of the shared private link resource
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- requestMessage String
- The request message for requesting approval of the shared private link resource
- groupId string
- The group id from the provider of resource the shared private link resource is for
- id string
- Fully qualified resource Id for the resource.
- name string
- The name of the resource.
- privateLink stringResource Id 
- The resource id of the resource the shared private link resource is for
- provisioningState string
- Provisioning state of the resource.
- status string
- Status of the shared private link resource
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- requestMessage string
- The request message for requesting approval of the shared private link resource
- group_id str
- The group id from the provider of resource the shared private link resource is for
- id str
- Fully qualified resource Id for the resource.
- name str
- The name of the resource.
- private_link_ strresource_ id 
- The resource id of the resource the shared private link resource is for
- provisioning_state str
- Provisioning state of the resource.
- status str
- Status of the shared private link resource
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- request_message str
- The request message for requesting approval of the shared private link resource
- groupId String
- The group id from the provider of resource the shared private link resource is for
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- privateLink StringResource Id 
- The resource id of the resource the shared private link resource is for
- provisioningState String
- Provisioning state of the resource.
- status String
- Status of the shared private link resource
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- requestMessage String
- The request message for requesting approval of the shared private link resource
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.Azure Native. Signal RService. Feature Flags 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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" | "Enable Connectivity Logs" | "Enable Messaging Logs" | "Enable Live Trace" 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
 
- 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 | Pulumi.Azure Native. Signal RService. ACLAction 
- Azure Networking ACL Action.
- PrivateEndpoints List<Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint ACL> 
- ACLs for requests from private endpoints
- PublicNetwork Pulumi.Azure Native. Signal RService. Inputs. Network ACL 
- Network ACL
- DefaultAction string | ACLAction
- Azure Networking ACL Action.
- PrivateEndpoints []PrivateEndpoint ACL 
- ACLs for requests from private endpoints
- PublicNetwork NetworkACL 
- Network ACL
- defaultAction String | ACLAction
- Azure Networking ACL Action.
- privateEndpoints List<PrivateEndpoint ACL> 
- ACLs for requests from private endpoints
- publicNetwork NetworkACL 
- Network ACL
- defaultAction string | ACLAction
- Azure Networking ACL Action.
- privateEndpoints PrivateEndpoint ACL[] 
- ACLs for requests from private endpoints
- publicNetwork NetworkACL 
- Network ACL
- default_action str | ACLAction
- Azure Networking ACL Action.
- private_endpoints Sequence[PrivateEndpoint ACL] 
- ACLs for requests from private endpoints
- public_network NetworkACL 
- Network ACL
- defaultAction String | "Allow" | "Deny"
- Azure Networking ACL Action.
- privateEndpoints List<Property Map>
- ACLs for requests from private endpoints
- publicNetwork Property Map
- Network ACL
SignalRNetworkACLsResponse, SignalRNetworkACLsResponseArgs        
- DefaultAction string
- Azure Networking ACL Action.
- PrivateEndpoints List<Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint ACLResponse> 
- ACLs for requests from private endpoints
- PublicNetwork Pulumi.Azure Native. Signal RService. Inputs. Network ACLResponse 
- Network ACL
- DefaultAction string
- Azure Networking ACL Action.
- PrivateEndpoints []PrivateEndpoint ACLResponse 
- ACLs for requests from private endpoints
- PublicNetwork NetworkACLResponse 
- Network ACL
- defaultAction String
- Azure Networking ACL Action.
- privateEndpoints List<PrivateEndpoint ACLResponse> 
- ACLs for requests from private endpoints
- publicNetwork NetworkACLResponse 
- Network ACL
- defaultAction string
- Azure Networking ACL Action.
- privateEndpoints PrivateEndpoint ACLResponse[] 
- ACLs for requests from private endpoints
- publicNetwork NetworkACLResponse 
- Network ACL
- default_action str
- Azure Networking ACL Action.
- private_endpoints Sequence[PrivateEndpoint ACLResponse] 
- ACLs for requests from private endpoints
- public_network NetworkACLResponse 
- Network ACL
- defaultAction String
- Azure Networking ACL Action.
- privateEndpoints List<Property Map>
- ACLs for requests from private endpoints
- publicNetwork Property Map
- Network ACL
SignalRRequestType, SignalRRequestTypeArgs      
- ClientConnection 
- ClientConnection
- ServerConnection 
- ServerConnection
- RESTAPI
- RESTAPI
- Trace
- Trace
- SignalRRequest Type Client Connection 
- ClientConnection
- SignalRRequest Type Server Connection 
- ServerConnection
- SignalRRequest Type RESTAPI 
- RESTAPI
- SignalRRequest Type Trace 
- 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
- SignalRSku Tier Free 
- Free
- SignalRSku Tier Basic 
- Basic
- SignalRSku Tier Standard 
- Standard
- SignalRSku Tier 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
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SignalRTlsSettings, SignalRTlsSettingsArgs      
- ClientCert boolEnabled 
- Request client certificate during TLS handshake if enabled
- ClientCert boolEnabled 
- Request client certificate during TLS handshake if enabled
- clientCert BooleanEnabled 
- Request client certificate during TLS handshake if enabled
- clientCert booleanEnabled 
- Request client certificate during TLS handshake if enabled
- client_cert_ boolenabled 
- Request client certificate during TLS handshake if enabled
- clientCert BooleanEnabled 
- Request client certificate during TLS handshake if enabled
SignalRTlsSettingsResponse, SignalRTlsSettingsResponseArgs        
- ClientCert boolEnabled 
- Request client certificate during TLS handshake if enabled
- ClientCert boolEnabled 
- Request client certificate during TLS handshake if enabled
- clientCert BooleanEnabled 
- Request client certificate during TLS handshake if enabled
- clientCert booleanEnabled 
- Request client certificate during TLS handshake if enabled
- client_cert_ boolenabled 
- Request client certificate during TLS handshake if enabled
- clientCert BooleanEnabled 
- Request client certificate during TLS handshake if enabled
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UpstreamAuthSettings, UpstreamAuthSettingsArgs      
- ManagedIdentity Pulumi.Azure Native. Signal RService. Inputs. Managed Identity Settings 
- Managed identity settings for upstream.
- Type
string | Pulumi.Azure Native. Signal RService. Upstream Auth Type 
- Upstream auth type enum.
- ManagedIdentity ManagedIdentity Settings 
- Managed identity settings for upstream.
- Type
string | UpstreamAuth Type 
- Upstream auth type enum.
- managedIdentity ManagedIdentity Settings 
- Managed identity settings for upstream.
- type
String | UpstreamAuth Type 
- Upstream auth type enum.
- managedIdentity ManagedIdentity Settings 
- Managed identity settings for upstream.
- type
string | UpstreamAuth Type 
- Upstream auth type enum.
- managed_identity ManagedIdentity Settings 
- Managed identity settings for upstream.
- type
str | UpstreamAuth Type 
- Upstream auth type enum.
- managedIdentity Property Map
- Managed identity settings for upstream.
- type
String | "None" | "ManagedIdentity" 
- Upstream auth type enum.
UpstreamAuthSettingsResponse, UpstreamAuthSettingsResponseArgs        
- ManagedIdentity Pulumi.Azure Native. Signal RService. Inputs. Managed Identity Settings Response 
- Managed identity settings for upstream.
- Type string
- Upstream auth type enum.
- ManagedIdentity ManagedIdentity Settings Response 
- Managed identity settings for upstream.
- Type string
- Upstream auth type enum.
- managedIdentity ManagedIdentity Settings Response 
- Managed identity settings for upstream.
- type String
- Upstream auth type enum.
- managedIdentity ManagedIdentity Settings Response 
- Managed identity settings for upstream.
- type string
- Upstream auth type enum.
- managed_identity ManagedIdentity Settings Response 
- Managed identity settings for upstream.
- type str
- Upstream auth type enum.
- managedIdentity Property Map
- Managed identity settings for upstream.
- type String
- Upstream auth type enum.
UpstreamAuthType, UpstreamAuthTypeArgs      
- None
- None
- ManagedIdentity 
- ManagedIdentity
- UpstreamAuth Type None 
- None
- UpstreamAuth Type Managed Identity 
- ManagedIdentity
- None
- None
- ManagedIdentity 
- ManagedIdentity
- None
- None
- ManagedIdentity 
- ManagedIdentity
- NONE
- None
- MANAGED_IDENTITY
- ManagedIdentity
- "None"
- None
- "ManagedIdentity" 
- ManagedIdentity
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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- Auth
Pulumi.Azure Native. Signal RService. Inputs. Upstream Auth Settings 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- Auth
UpstreamAuth Settings 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth Property Map
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- Auth
Pulumi.Azure Native. Signal RService. Inputs. Upstream Auth Settings Response 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- Auth
UpstreamAuth Settings Response 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings Response 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings Response 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth
UpstreamAuth Settings Response 
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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 hubchatconnects, it will first POST to this URL:http://example.com/chat/api/connect.
- auth Property Map
- Upstream auth settings. If not set, no auth is used for upstream messages.
- 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".
UserAssignedIdentityPropertyResponse, UserAssignedIdentityPropertyResponseArgs          
- ClientId string
- Get the client id for the user assigned identity
- PrincipalId string
- Get the principal id for the user assigned identity
- ClientId string
- Get the client id for the user assigned identity
- PrincipalId string
- Get the principal id for the user assigned identity
- clientId String
- Get the client id for the user assigned identity
- principalId String
- Get the principal id for the user assigned identity
- clientId string
- Get the client id for the user assigned identity
- principalId string
- Get the principal id for the user assigned identity
- client_id str
- Get the client id for the user assigned identity
- principal_id str
- Get the principal id for the user assigned identity
- clientId String
- Get the client id for the user assigned identity
- principalId String
- Get the principal id for the user assigned identity
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:signalrservice:SignalR mySignalRService /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0