azure-native.signalrservice.SignalR
Explore with Pulumi AI
A class represent a SignalR service resource. API Version: 2020-05-01.
Example Usage
SignalR_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var signalR = new AzureNative.SignalRService.SignalR("signalR", new()
{
Cors = new AzureNative.SignalRService.Inputs.SignalRCorsSettingsArgs
{
AllowedOrigins = new[]
{
"https://foo.com",
"https://bar.com",
},
},
Features = new[]
{
new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
{
Flag = "ServiceMode",
Properties = null,
Value = "Serverless",
},
new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
{
Flag = "EnableConnectivityLogs",
Properties = null,
Value = "True",
},
new AzureNative.SignalRService.Inputs.SignalRFeatureArgs
{
Flag = "EnableMessagingLogs",
Properties = null,
Value = "False",
},
},
Kind = "SignalR",
Location = "eastus",
NetworkACLs = new AzureNative.SignalRService.Inputs.SignalRNetworkACLsArgs
{
DefaultAction = "Deny",
PrivateEndpoints = new[]
{
new AzureNative.SignalRService.Inputs.PrivateEndpointACLArgs
{
Allow = new[]
{
"ServerConnection",
},
Name = "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
},
},
PublicNetwork = new AzureNative.SignalRService.Inputs.NetworkACLArgs
{
Allow = new[]
{
"ClientConnection",
},
},
},
ResourceGroupName = "myResourceGroup",
ResourceName = "mySignalRService",
Sku = new AzureNative.SignalRService.Inputs.ResourceSkuArgs
{
Capacity = 1,
Name = "Standard_S1",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
Upstream = new AzureNative.SignalRService.Inputs.ServerlessUpstreamSettingsArgs
{
Templates = new[]
{
new AzureNative.SignalRService.Inputs.UpstreamTemplateArgs
{
CategoryPattern = "*",
EventPattern = "connect,disconnect",
HubPattern = "*",
UrlTemplate = "https://example.com/chat/api/connect",
},
},
},
});
});
package main
import (
signalrservice "github.com/pulumi/pulumi-azure-native-sdk/signalrservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := signalrservice.NewSignalR(ctx, "signalR", &signalrservice.SignalRArgs{
Cors: &signalrservice.SignalRCorsSettingsArgs{
AllowedOrigins: pulumi.StringArray{
pulumi.String("https://foo.com"),
pulumi.String("https://bar.com"),
},
},
Features: []signalrservice.SignalRFeatureArgs{
{
Flag: pulumi.String("ServiceMode"),
Properties: nil,
Value: pulumi.String("Serverless"),
},
{
Flag: pulumi.String("EnableConnectivityLogs"),
Properties: nil,
Value: pulumi.String("True"),
},
{
Flag: pulumi.String("EnableMessagingLogs"),
Properties: nil,
Value: pulumi.String("False"),
},
},
Kind: pulumi.String("SignalR"),
Location: pulumi.String("eastus"),
NetworkACLs: signalrservice.SignalRNetworkACLsResponse{
DefaultAction: pulumi.String("Deny"),
PrivateEndpoints: signalrservice.PrivateEndpointACLArray{
&signalrservice.PrivateEndpointACLArgs{
Allow: pulumi.StringArray{
pulumi.String("ServerConnection"),
},
Name: pulumi.String("mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
},
},
PublicNetwork: &signalrservice.NetworkACLArgs{
Allow: pulumi.StringArray{
pulumi.String("ClientConnection"),
},
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
ResourceName: pulumi.String("mySignalRService"),
Sku: &signalrservice.ResourceSkuArgs{
Capacity: pulumi.Int(1),
Name: pulumi.String("Standard_S1"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
Upstream: signalrservice.ServerlessUpstreamSettingsResponse{
Templates: signalrservice.UpstreamTemplateArray{
&signalrservice.UpstreamTemplateArgs{
CategoryPattern: pulumi.String("*"),
EventPattern: pulumi.String("connect,disconnect"),
HubPattern: pulumi.String("*"),
UrlTemplate: pulumi.String("https://example.com/chat/api/connect"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.signalrservice.SignalR;
import com.pulumi.azurenative.signalrservice.SignalRArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var signalR = new SignalR("signalR", SignalRArgs.builder()
.cors(Map.of("allowedOrigins",
"https://foo.com",
"https://bar.com"))
.features(
Map.ofEntries(
Map.entry("flag", "ServiceMode"),
Map.entry("properties", ),
Map.entry("value", "Serverless")
),
Map.ofEntries(
Map.entry("flag", "EnableConnectivityLogs"),
Map.entry("properties", ),
Map.entry("value", "True")
),
Map.ofEntries(
Map.entry("flag", "EnableMessagingLogs"),
Map.entry("properties", ),
Map.entry("value", "False")
))
.kind("SignalR")
.location("eastus")
.networkACLs(Map.ofEntries(
Map.entry("defaultAction", "Deny"),
Map.entry("privateEndpoints", Map.ofEntries(
Map.entry("allow", "ServerConnection"),
Map.entry("name", "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e")
)),
Map.entry("publicNetwork", Map.of("allow", "ClientConnection"))
))
.resourceGroupName("myResourceGroup")
.resourceName("mySignalRService")
.sku(Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_S1"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.upstream(Map.of("templates", Map.ofEntries(
Map.entry("categoryPattern", "*"),
Map.entry("eventPattern", "connect,disconnect"),
Map.entry("hubPattern", "*"),
Map.entry("urlTemplate", "https://example.com/chat/api/connect")
)))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
signal_r = azure_native.signalrservice.SignalR("signalR",
cors=azure_native.signalrservice.SignalRCorsSettingsArgs(
allowed_origins=[
"https://foo.com",
"https://bar.com",
],
),
features=[
azure_native.signalrservice.SignalRFeatureArgs(
flag="ServiceMode",
properties={},
value="Serverless",
),
azure_native.signalrservice.SignalRFeatureArgs(
flag="EnableConnectivityLogs",
properties={},
value="True",
),
azure_native.signalrservice.SignalRFeatureArgs(
flag="EnableMessagingLogs",
properties={},
value="False",
),
],
kind="SignalR",
location="eastus",
network_acls=azure_native.signalrservice.SignalRNetworkACLsResponseArgs(
default_action="Deny",
private_endpoints=[azure_native.signalrservice.PrivateEndpointACLArgs(
allow=["ServerConnection"],
name="mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
)],
public_network=azure_native.signalrservice.NetworkACLArgs(
allow=["ClientConnection"],
),
),
resource_group_name="myResourceGroup",
resource_name_="mySignalRService",
sku=azure_native.signalrservice.ResourceSkuArgs(
capacity=1,
name="Standard_S1",
tier="Standard",
),
tags={
"key1": "value1",
},
upstream=azure_native.signalrservice.ServerlessUpstreamSettingsResponseArgs(
templates=[azure_native.signalrservice.UpstreamTemplateArgs(
category_pattern="*",
event_pattern="connect,disconnect",
hub_pattern="*",
url_template="https://example.com/chat/api/connect",
)],
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const signalR = new azure_native.signalrservice.SignalR("signalR", {
cors: {
allowedOrigins: [
"https://foo.com",
"https://bar.com",
],
},
features: [
{
flag: "ServiceMode",
properties: {},
value: "Serverless",
},
{
flag: "EnableConnectivityLogs",
properties: {},
value: "True",
},
{
flag: "EnableMessagingLogs",
properties: {},
value: "False",
},
],
kind: "SignalR",
location: "eastus",
networkACLs: {
defaultAction: "Deny",
privateEndpoints: [{
allow: ["ServerConnection"],
name: "mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e",
}],
publicNetwork: {
allow: ["ClientConnection"],
},
},
resourceGroupName: "myResourceGroup",
resourceName: "mySignalRService",
sku: {
capacity: 1,
name: "Standard_S1",
tier: "Standard",
},
tags: {
key1: "value1",
},
upstream: {
templates: [{
categoryPattern: "*",
eventPattern: "connect,disconnect",
hubPattern: "*",
urlTemplate: "https://example.com/chat/api/connect",
}],
},
});
resources:
signalR:
type: azure-native:signalrservice:SignalR
properties:
cors:
allowedOrigins:
- https://foo.com
- https://bar.com
features:
- flag: ServiceMode
properties: {}
value: Serverless
- flag: EnableConnectivityLogs
properties: {}
value: True
- flag: EnableMessagingLogs
properties: {}
value: False
kind: SignalR
location: eastus
networkACLs:
defaultAction: Deny
privateEndpoints:
- allow:
- ServerConnection
name: mySignalRService.1fa229cd-bf3f-47f0-8c49-afb36723997e
publicNetwork:
allow:
- ClientConnection
resourceGroupName: myResourceGroup
resourceName: mySignalRService
sku:
capacity: 1
name: Standard_S1
tier: Standard
tags:
key1: value1
upstream:
templates:
- categoryPattern: '*'
eventPattern: connect,disconnect
hubPattern: '*'
urlTemplate: https://example.com/chat/api/connect
Create SignalR Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SignalR(name: string, args: SignalRArgs, opts?: CustomResourceOptions);
@overload
def SignalR(resource_name: str,
args: SignalRArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SignalR(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cors: Optional[SignalRCorsSettingsArgs] = None,
features: Optional[Sequence[SignalRFeatureArgs]] = None,
kind: Optional[Union[str, ServiceKind]] = None,
location: Optional[str] = None,
network_acls: Optional[SignalRNetworkACLsArgs] = None,
resource_name_: Optional[str] = None,
sku: Optional[ResourceSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
upstream: Optional[ServerlessUpstreamSettingsArgs] = None)
func NewSignalR(ctx *Context, name string, args SignalRArgs, opts ...ResourceOption) (*SignalR, error)
public SignalR(string name, SignalRArgs args, CustomResourceOptions? opts = null)
public SignalR(String name, SignalRArgs args)
public SignalR(String name, SignalRArgs args, CustomResourceOptions options)
type: azure-native:signalrservice:SignalR
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SignalRArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SignalRArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SignalRArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SignalRArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SignalRArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var signalRResource = new AzureNative.Signalrservice.SignalR("signalRResource", new()
{
ResourceGroupName = "string",
Cors =
{
{ "allowedOrigins", new[]
{
"string",
} },
},
Features = new[]
{
{
{ "flag", "string" },
{ "value", "string" },
{ "properties",
{
{ "string", "string" },
} },
},
},
Kind = "string",
Location = "string",
NetworkACLs =
{
{ "defaultAction", "string" },
{ "privateEndpoints", new[]
{
{
{ "name", "string" },
{ "allow", new[]
{
"string",
} },
{ "deny", new[]
{
"string",
} },
},
} },
{ "publicNetwork",
{
{ "allow", new[]
{
"string",
} },
{ "deny", new[]
{
"string",
} },
} },
},
ResourceName = "string",
Sku =
{
{ "name", "string" },
{ "capacity", 0 },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
Upstream =
{
{ "templates", new[]
{
{
{ "urlTemplate", "string" },
{ "categoryPattern", "string" },
{ "eventPattern", "string" },
{ "hubPattern", "string" },
},
} },
},
});
example, err := signalrservice.NewSignalR(ctx, "signalRResource", &signalrservice.SignalRArgs{
ResourceGroupName: "string",
Cors: map[string]interface{}{
"allowedOrigins": []string{
"string",
},
},
Features: []map[string]interface{}{
map[string]interface{}{
"flag": "string",
"value": "string",
"properties": map[string]interface{}{
"string": "string",
},
},
},
Kind: "string",
Location: "string",
NetworkACLs: map[string]interface{}{
"defaultAction": "string",
"privateEndpoints": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"allow": []string{
"string",
},
"deny": []string{
"string",
},
},
},
"publicNetwork": map[string]interface{}{
"allow": []string{
"string",
},
"deny": []string{
"string",
},
},
},
ResourceName: "string",
Sku: map[string]interface{}{
"name": "string",
"capacity": 0,
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
Upstream: map[string]interface{}{
"templates": []map[string]interface{}{
map[string]interface{}{
"urlTemplate": "string",
"categoryPattern": "string",
"eventPattern": "string",
"hubPattern": "string",
},
},
},
})
var signalRResource = new SignalR("signalRResource", SignalRArgs.builder()
.resourceGroupName("string")
.cors(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.features(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.kind("string")
.location("string")
.networkACLs(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceName("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.upstream(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
signal_r_resource = azure_native.signalrservice.SignalR("signalRResource",
resource_group_name=string,
cors={
allowedOrigins: [string],
},
features=[{
flag: string,
value: string,
properties: {
string: string,
},
}],
kind=string,
location=string,
network_acls={
defaultAction: string,
privateEndpoints: [{
name: string,
allow: [string],
deny: [string],
}],
publicNetwork: {
allow: [string],
deny: [string],
},
},
resource_name_=string,
sku={
name: string,
capacity: 0,
tier: string,
},
tags={
string: string,
},
upstream={
templates: [{
urlTemplate: string,
categoryPattern: string,
eventPattern: string,
hubPattern: string,
}],
})
const signalRResource = new azure_native.signalrservice.SignalR("signalRResource", {
resourceGroupName: "string",
cors: {
allowedOrigins: ["string"],
},
features: [{
flag: "string",
value: "string",
properties: {
string: "string",
},
}],
kind: "string",
location: "string",
networkACLs: {
defaultAction: "string",
privateEndpoints: [{
name: "string",
allow: ["string"],
deny: ["string"],
}],
publicNetwork: {
allow: ["string"],
deny: ["string"],
},
},
resourceName: "string",
sku: {
name: "string",
capacity: 0,
tier: "string",
},
tags: {
string: "string",
},
upstream: {
templates: [{
urlTemplate: "string",
categoryPattern: "string",
eventPattern: "string",
hubPattern: "string",
}],
},
});
type: azure-native:signalrservice:SignalR
properties:
cors:
allowedOrigins:
- string
features:
- flag: string
properties:
string: string
value: string
kind: string
location: string
networkACLs:
defaultAction: string
privateEndpoints:
- allow:
- string
deny:
- string
name: string
publicNetwork:
allow:
- string
deny:
- string
resourceGroupName: string
resourceName: string
sku:
capacity: 0
name: string
tier: string
tags:
string: string
upstream:
templates:
- categoryPattern: string
eventPattern: string
hubPattern: string
urlTemplate: string
SignalR Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SignalR resource accepts the following input properties:
- Resource
Group 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.
- Features
List<Pulumi.
Azure Native. Signal RService. Inputs. Signal RFeature> List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- Kind
string | Pulumi.
Azure Native. Signal RService. Service Kind - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- Location string
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- Network
ACLs Pulumi.Azure Native. Signal RService. Inputs. Signal RNetwork ACLs - Network ACLs
- Resource
Name string - The name of the SignalR resource.
- Sku
Pulumi.
Azure Native. Signal RService. Inputs. Resource Sku - The billing information of the resource.(e.g. Free, Standard)
- Dictionary<string, string>
- Tags of the service which is a list of key value pairs that describe the resource.
- Upstream
Pulumi.
Azure Native. Signal RService. Inputs. Serverless Upstream Settings - Upstream settings when the Azure SignalR is in server-less mode.
- Resource
Group 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
Signal
RCors Settings Args - Cross-Origin Resource Sharing (CORS) settings.
- Features
[]Signal
RFeature Args List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- Kind
string | Service
Kind - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- Location string
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- Network
ACLs SignalRNetwork ACLs Args - Network ACLs
- Resource
Name string - The name of the SignalR resource.
- Sku
Resource
Sku Args - The billing information of the resource.(e.g. Free, Standard)
- map[string]string
- Tags of the service which is a list of key value pairs that describe the resource.
- Upstream
Serverless
Upstream Settings Args - Upstream settings when the Azure SignalR is in server-less mode.
- resource
Group 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
Signal
RCors Settings - Cross-Origin Resource Sharing (CORS) settings.
- features
List<Signal
RFeature> List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- kind
String | Service
Kind - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- location String
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- network
ACLs SignalRNetwork ACLs - Network ACLs
- resource
Name String - The name of the SignalR resource.
- sku
Resource
Sku - The billing information of the resource.(e.g. Free, Standard)
- Map<String,String>
- Tags of the service which is a list of key value pairs that describe the resource.
- upstream
Serverless
Upstream Settings - Upstream settings when the Azure SignalR is in server-less mode.
- resource
Group 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
Signal
RCors Settings - Cross-Origin Resource Sharing (CORS) settings.
- features
Signal
RFeature[] List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- kind
string | Service
Kind - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- location string
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- network
ACLs SignalRNetwork ACLs - Network ACLs
- resource
Name string - The name of the SignalR resource.
- sku
Resource
Sku - The billing information of the resource.(e.g. Free, Standard)
- {[key: string]: string}
- Tags of the service which is a list of key value pairs that describe the resource.
- upstream
Serverless
Upstream Settings - Upstream settings when the Azure SignalR 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
Signal
RCors Settings Args - Cross-Origin Resource Sharing (CORS) settings.
- features
Sequence[Signal
RFeature Args] List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- kind
str | Service
Kind - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- location str
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- network_
acls SignalRNetwork ACLs Args - Network ACLs
- resource_
name str - The name of the SignalR resource.
- sku
Resource
Sku Args - The billing information of the resource.(e.g. Free, Standard)
- Mapping[str, str]
- Tags of the service which is a list of key value pairs that describe the resource.
- upstream
Serverless
Upstream Settings Args - Upstream settings when the Azure SignalR is in server-less mode.
- resource
Group 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.
- features List<Property Map>
List of SignalR featureFlags. e.g. ServiceMode.
FeatureFlags that are not included in the parameters for the update operation will not be modified. And the response will only include featureFlags that are explicitly set. When a featureFlag is not explicitly set, SignalR service will use its globally default value. But keep in mind, the default value doesn't mean "false". It varies in terms of different FeatureFlags.
- kind
String | "Signal
R" | "Raw Web Sockets" - The kind of the service - e.g. "SignalR", or "RawWebSockets" for "Microsoft.SignalRService/SignalR"
- location String
- The GEO location of the SignalR service. e.g. West US | East US | North Central US | South Central US.
- network
ACLs Property Map - Network ACLs
- resource
Name String - The name of the SignalR resource.
- sku Property Map
- The billing information of the resource.(e.g. Free, Standard)
- Map<String>
- Tags of the service which is a list of key value pairs that describe the resource.
- upstream Property Map
- Upstream settings when the Azure SignalR is in server-less mode.
Outputs
All input properties are implicitly available as output properties. Additionally, the SignalR resource produces the following output properties:
- External
IP string - The publicly accessible IP of the SignalR service.
- Host
Name string - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- Host
Name stringPrefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Private
Endpoint List<Pulumi.Connections Azure Native. Signal RService. Outputs. Private Endpoint Connection Response> - Private endpoint connections to the SignalR resource.
- Provisioning
State string - Provisioning state of the resource.
- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Version string
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
- External
IP string - The publicly accessible IP of the SignalR service.
- Host
Name string - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- Host
Name stringPrefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - Private endpoint connections to the SignalR resource.
- Provisioning
State string - Provisioning state of the resource.
- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Version string
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
- external
IP String - The publicly accessible IP of the SignalR service.
- host
Name String - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- host
Name StringPrefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - Private endpoint connections to the SignalR resource.
- provisioning
State String - Provisioning state of the resource.
- public
Port Integer - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- server
Port Integer - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version String
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
- external
IP string - The publicly accessible IP of the SignalR service.
- host
Name string - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- host
Name stringPrefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - Private endpoint connections to the SignalR resource.
- provisioning
State string - Provisioning state of the resource.
- public
Port number - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- server
Port number - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version string
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
- external_
ip str - The publicly accessible IP of the SignalR service.
- host_
name str - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- host_
name_ strprefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - Private endpoint connections to the SignalR resource.
- provisioning_
state str - Provisioning state of the resource.
- public_
port int - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- server_
port int - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- type str
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version str
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
- external
IP String - The publicly accessible IP of the SignalR service.
- host
Name String - FQDN of the SignalR service instance. Format: xxx.service.signalr.net
- host
Name StringPrefix - Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- private
Endpoint List<Property Map>Connections - Private endpoint connections to the SignalR resource.
- provisioning
State String - Provisioning state of the resource.
- public
Port Number - The publicly accessible port of the SignalR service which is designed for browser/client side usage.
- server
Port Number - The publicly accessible port of the SignalR service which is designed for customer server side usage.
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- version String
- Version of the SignalR resource. Probably you need the same or higher version of client SDKs.
Supporting Types
ACLAction, ACLActionArgs
- Allow
- Allow
- Deny
- Deny
- ACLAction
Allow - Allow
- ACLAction
Deny - Deny
- Allow
- Allow
- Deny
- Deny
- Allow
- Allow
- Deny
- Deny
- ALLOW
- Allow
- DENY
- Deny
- "Allow"
- Allow
- "Deny"
- Deny
FeatureFlags, FeatureFlagsArgs
- Service
Mode - ServiceMode
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- Feature
Flags Service Mode - ServiceMode
- Feature
Flags Enable Connectivity Logs - EnableConnectivityLogs
- Feature
Flags Enable Messaging Logs - EnableMessagingLogs
- Service
Mode - ServiceMode
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- Service
Mode - ServiceMode
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- SERVICE_MODE
- ServiceMode
- ENABLE_CONNECTIVITY_LOGS
- EnableConnectivityLogs
- ENABLE_MESSAGING_LOGS
- EnableMessagingLogs
- "Service
Mode" - ServiceMode
- "Enable
Connectivity Logs" - EnableConnectivityLogs
- "Enable
Messaging Logs" - EnableMessagingLogs
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 | "Client
Connection" | "Server Connection" | "RESTAPI" | "Trace"> - Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<String | "Client
Connection" | "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,Signal
RRequest Type>> - Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<Either<String,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
(string | Signal
RRequest Type)[] - Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
(string | Signal
RRequest 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, Signal
RRequest Type]] - Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
Sequence[Union[str, 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<String | "Client
Connection" | "Server Connection" | "RESTAPI" | "Trace"> - Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List<String | "Client
Connection" | "Server Connection" | "RESTAPI" | "Trace"> - Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
PrivateEndpointACLResponse, PrivateEndpointACLResponseArgs
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- Provisioning
State string - Provisioning state of the private endpoint connection
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Private
Endpoint Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint Response - Private endpoint associated with the private endpoint connection
- Private
Link Pulumi.Service Connection State Azure Native. Signal RService. Inputs. Private Link Service Connection State Response - Connection state
- Id string
- Fully qualified resource Id for the resource.
- Name string
- The name of the resource.
- Provisioning
State string - Provisioning state of the private endpoint connection
- Type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Private
Endpoint PrivateEndpoint Response - Private endpoint associated with the private endpoint connection
- Private
Link PrivateService Connection State Link Service Connection State Response - Connection state
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- provisioning
State String - Provisioning state of the private endpoint connection
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- private
Endpoint PrivateEndpoint Response - Private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State Response - Connection state
- id string
- Fully qualified resource Id for the resource.
- name string
- The name of the resource.
- provisioning
State string - Provisioning state of the private endpoint connection
- type string
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- private
Endpoint PrivateEndpoint Response - Private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State Response - Connection state
- id str
- Fully qualified resource Id for the resource.
- name str
- The name of the resource.
- provisioning_
state str - Provisioning state of the private endpoint connection
- type str
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- private_
endpoint PrivateEndpoint Response - Private endpoint associated with the private endpoint connection
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - Connection state
- id String
- Fully qualified resource Id for the resource.
- name String
- The name of the resource.
- provisioning
State String - Provisioning state of the private endpoint connection
- type String
- The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- private
Endpoint Property Map - Private endpoint associated with the private endpoint connection
- private
Link Property MapService Connection State - Connection state
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- Full qualified Id of the private endpoint
- Id string
- Full qualified Id of the private endpoint
- id String
- Full qualified Id of the private endpoint
- id string
- Full qualified Id of the private endpoint
- id str
- Full qualified Id of the private endpoint
- id String
- Full qualified Id of the private endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required 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 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 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 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.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ResourceSku, ResourceSkuArgs
- Name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- Capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- Tier
string | Pulumi.
Azure Native. Signal RService. Signal RSku Tier Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- Name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- Capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- Tier
string | Signal
RSku Tier Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- name String
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- capacity Integer
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
String | Signal
RSku Tier Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- capacity number
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
string | Signal
RSku Tier Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- name str
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
str | Signal
RSku Tier Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- name String
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- capacity Number
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier String | "Free" | "Basic" | "Standard" | "Premium"
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
ResourceSkuResponse, ResourceSkuResponseArgs
- Family string
- Not used. Retained for future use.
- Name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- Size string
- Not used. Retained for future use.
- Capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- Tier string
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- Family string
- Not used. Retained for future use.
- Name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- Size string
- Not used. Retained for future use.
- Capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- Tier string
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- family String
- Not used. Retained for future use.
- name String
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- size String
- Not used. Retained for future use.
- capacity Integer
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier String
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- family string
- Not used. Retained for future use.
- name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- size string
- Not used. Retained for future use.
- capacity number
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier string
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- family str
- Not used. Retained for future use.
- name str
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- size str
- Not used. Retained for future use.
- capacity int
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier str
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
- family String
- Not used. Retained for future use.
- name String
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- size String
- Not used. Retained for future use.
- capacity Number
Optional, integer. The unit count of SignalR resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier String
Optional tier of this particular SKU. 'Standard' or 'Free'.
Basic
is deprecated, useStandard
instead.
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
[]Upstream
Template - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
List<Upstream
Template> - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
Upstream
Template[] - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
Sequence[Upstream
Template] - 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
[]Upstream
Template Response - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
List<Upstream
Template Response> - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
Upstream
Template Response[] - Gets or sets the list of Upstream URL templates. Order matters, and the first matching template takes effects.
- templates
Sequence[Upstream
Template 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
- Signal
R - SignalR
- Raw
Web Sockets - RawWebSockets
- Service
Kind Signal R - SignalR
- Service
Kind Raw Web Sockets - RawWebSockets
- Signal
R - SignalR
- Raw
Web Sockets - RawWebSockets
- Signal
R - SignalR
- Raw
Web Sockets - RawWebSockets
- SIGNAL_R
- SignalR
- RAW_WEB_SOCKETS
- RawWebSockets
- "Signal
R" - SignalR
- "Raw
Web Sockets" - RawWebSockets
SignalRCorsSettings, SignalRCorsSettingsArgs
- Allowed
Origins 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.
- Allowed
Origins []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 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.
- allowed
Origins 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.
- allowed
Origins 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
- Allowed
Origins 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.
- Allowed
Origins []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 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.
- allowed
Origins 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.
- allowed
Origins 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.
- 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 | 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.
- 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 | 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.
- 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 | 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.
- 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 | 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.
- 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 | "Service
Mode" | "Enable Connectivity Logs" | "Enable Messaging Logs" - FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- value String
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- properties Map<String>
- Optional properties related to this feature.
SignalRFeatureResponse, SignalRFeatureResponseArgs
- Flag string
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- Value string
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- Properties Dictionary<string, string>
- Optional properties related to this feature.
- Flag string
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- Value string
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- Properties map[string]string
- Optional properties related to this feature.
- flag String
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- value String
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- properties Map<String,String>
- Optional properties related to this feature.
- flag string
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- value string
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- properties {[key: string]: string}
- Optional properties related to this feature.
- flag str
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- value str
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- properties Mapping[str, str]
- Optional properties related to this feature.
- flag String
- FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- value String
- Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.
- properties Map<String>
- Optional properties related to this feature.
SignalRNetworkACLs, SignalRNetworkACLsArgs
- Default
Action string | Pulumi.Azure Native. Signal RService. ACLAction - Default action when no other rule matches
- Private
Endpoints List<Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint ACL> - ACLs for requests from private endpoints
- Public
Network Pulumi.Azure Native. Signal RService. Inputs. Network ACL - ACL for requests from public network
- Default
Action string | ACLAction - Default action when no other rule matches
- Private
Endpoints []PrivateEndpoint ACL - ACLs for requests from private endpoints
- Public
Network NetworkACL - ACL for requests from public network
- default
Action String | ACLAction - Default action when no other rule matches
- private
Endpoints List<PrivateEndpoint ACL> - ACLs for requests from private endpoints
- public
Network NetworkACL - ACL for requests from public network
- default
Action string | ACLAction - Default action when no other rule matches
- private
Endpoints PrivateEndpoint ACL[] - ACLs for requests from private endpoints
- public
Network NetworkACL - ACL for requests from public network
- default_
action str | ACLAction - Default action when no other rule matches
- private_
endpoints Sequence[PrivateEndpoint ACL] - ACLs for requests from private endpoints
- public_
network NetworkACL - ACL for requests from public network
- default
Action String | "Allow" | "Deny" - Default action when no other rule matches
- private
Endpoints List<Property Map> - ACLs for requests from private endpoints
- public
Network Property Map - ACL for requests from public network
SignalRNetworkACLsResponse, SignalRNetworkACLsResponseArgs
- Default
Action string - Default action when no other rule matches
- Private
Endpoints List<Pulumi.Azure Native. Signal RService. Inputs. Private Endpoint ACLResponse> - ACLs for requests from private endpoints
- Public
Network Pulumi.Azure Native. Signal RService. Inputs. Network ACLResponse - ACL for requests from public network
- Default
Action string - Default action when no other rule matches
- Private
Endpoints []PrivateEndpoint ACLResponse - ACLs for requests from private endpoints
- Public
Network NetworkACLResponse - ACL for requests from public network
- default
Action String - Default action when no other rule matches
- private
Endpoints List<PrivateEndpoint ACLResponse> - ACLs for requests from private endpoints
- public
Network NetworkACLResponse - ACL for requests from public network
- default
Action string - Default action when no other rule matches
- private
Endpoints PrivateEndpoint ACLResponse[] - ACLs for requests from private endpoints
- public
Network NetworkACLResponse - ACL for requests from public network
- default_
action str - Default action when no other rule matches
- private_
endpoints Sequence[PrivateEndpoint ACLResponse] - ACLs for requests from private endpoints
- public_
network NetworkACLResponse - ACL for requests from public network
- default
Action String - Default action when no other rule matches
- private
Endpoints List<Property Map> - ACLs for requests from private endpoints
- public
Network Property Map - ACL for requests from public network
SignalRRequestType, SignalRRequestTypeArgs
- Client
Connection - ClientConnection
- Server
Connection - ServerConnection
- RESTAPI
- RESTAPI
- Trace
- Trace
- Signal
RRequest Type Client Connection - ClientConnection
- Signal
RRequest Type Server Connection - ServerConnection
- Signal
RRequest Type RESTAPI - RESTAPI
- Signal
RRequest Type Trace - Trace
- Client
Connection - ClientConnection
- Server
Connection - ServerConnection
- RESTAPI
- RESTAPI
- Trace
- Trace
- Client
Connection - ClientConnection
- Server
Connection - ServerConnection
- RESTAPI
- RESTAPI
- Trace
- Trace
- CLIENT_CONNECTION
- ClientConnection
- SERVER_CONNECTION
- ServerConnection
- RESTAPI
- RESTAPI
- TRACE
- Trace
- "Client
Connection" - ClientConnection
- "Server
Connection" - ServerConnection
- "RESTAPI"
- RESTAPI
- "Trace"
- Trace
SignalRSkuTier, SignalRSkuTierArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Signal
RSku Tier Free - Free
- Signal
RSku Tier Basic - Basic
- Signal
RSku Tier Standard - Standard
- Signal
RSku 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
UpstreamTemplate, UpstreamTemplateArgs
- Url
Template 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - Category
Pattern 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"
- Event
Pattern 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"
- Hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - Category
Pattern 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"
- Event
Pattern 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"
- Hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category_
pattern str - Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
- event_
pattern str - Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
- hub_
pattern str - Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
- url
Template 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern 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
- Url
Template 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - Category
Pattern 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"
- Event
Pattern 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"
- Hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - Category
Pattern 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"
- Event
Pattern 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"
- Hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern 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 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category_
pattern str - Gets or sets the matching pattern for category names. If not set, it matches any category. There are 3 kind of patterns supported: 1. "*", it to matches any category name 2. Combine multiple categories with ",", for example "connections,messages", it matches category "connections" and "messages" 3. The single category name, for example, "connections", it matches the category "connections"
- event_
pattern str - Gets or sets the matching pattern for event names. If not set, it matches any event. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "connect,disconnect", it matches event "connect" and "disconnect" 3. The single event name, for example, "connect", it matches "connect"
- hub_
pattern str - Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
- url
Template 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 hubchat
connects, it will first POST to this URL:http://example.com/chat/api/connect
. - category
Pattern 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"
- event
Pattern 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"
- hub
Pattern String - Gets or sets the matching pattern for hub names. If not set, it matches any hub. There are 3 kind of patterns supported: 1. "*", it to matches any hub name 2. Combine multiple hubs with ",", for example "hub1,hub2", it matches "hub1" and "hub2" 3. The single hub name, for example, "hub1", it matches "hub1"
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:signalrservice:SignalR mySignalRService /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0