Azure Native
WebPubSub
A class represent a resource. API Version: 2021-04-01-preview.
Example Usage
WebPubSub_CreateOrUpdate
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var webPubSub = new AzureNative.WebPubSub.WebPubSub("webPubSub", new AzureNative.WebPubSub.WebPubSubArgs
{
EventHandler = new AzureNative.WebPubSub.Inputs.EventHandlerSettingsArgs
{
Items =
{
{ "hub1",
{
new AzureNative.WebPubSub.Inputs.EventHandlerTemplateArgs
{
UrlTemplate = "https://example.com/chat/api/hub1",
UserEventPattern = "*",
},
} },
{ "hub2",
{
new AzureNative.WebPubSub.Inputs.EventHandlerTemplateArgs
{
UrlTemplate = "https://example.com/chat/api/hub2/example1",
UserEventPattern = "example1",
},
new AzureNative.WebPubSub.Inputs.EventHandlerTemplateArgs
{
UrlTemplate = "https://example.com/chat/api/hub2/example2",
UserEventPattern = "example2",
},
} },
},
},
Features =
{
new AzureNative.WebPubSub.Inputs.WebPubSubFeatureArgs
{
Flag = "ServiceMode",
Properties = ,
Value = "Serverless",
},
new AzureNative.WebPubSub.Inputs.WebPubSubFeatureArgs
{
Flag = "EnableConnectivityLogs",
Properties = ,
Value = "True",
},
new AzureNative.WebPubSub.Inputs.WebPubSubFeatureArgs
{
Flag = "EnableMessagingLogs",
Properties = ,
Value = "False",
},
new AzureNative.WebPubSub.Inputs.WebPubSubFeatureArgs
{
Flag = "EnableLiveTrace",
Properties = ,
Value = "False",
},
},
Identity = new AzureNative.WebPubSub.Inputs.ManagedIdentityArgs
{
Type = "SystemAssigned",
},
Location = "eastus",
NetworkACLs = new AzureNative.WebPubSub.Inputs.WebPubSubNetworkACLsArgs
{
DefaultAction = "Deny",
PrivateEndpoints =
{
new AzureNative.WebPubSub.Inputs.PrivateEndpointACLArgs
{
Allow =
{
"ServerConnection",
},
Name = "mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
},
},
PublicNetwork = new AzureNative.WebPubSub.Inputs.NetworkACLArgs
{
Allow =
{
"ClientConnection",
},
},
},
ResourceGroupName = "myResourceGroup",
ResourceName = "myWebPubSubService",
Sku = new AzureNative.WebPubSub.Inputs.ResourceSkuArgs
{
Capacity = 1,
Name = "Standard_S1",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
Tls = new AzureNative.WebPubSub.Inputs.WebPubSubTlsSettingsArgs
{
ClientCertEnabled = false,
},
});
}
}
package main
import (
webpubsub "github.com/pulumi/pulumi-azure-native/sdk/go/azure/webpubsub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := webpubsub.NewWebPubSub(ctx, "webPubSub", &webpubsub.WebPubSubArgs{
EventHandler: &webpubsub.EventHandlerSettingsArgs{
Items: webpubsub.EventHandlerTemplateArrayMap{
"hub1": webpubsub.EventHandlerTemplateArray{
&webpubsub.EventHandlerTemplateArgs{
UrlTemplate: pulumi.String("https://example.com/chat/api/hub1"),
UserEventPattern: pulumi.String("*"),
},
},
"hub2": webpubsub.EventHandlerTemplateArray{
&webpubsub.EventHandlerTemplateArgs{
UrlTemplate: pulumi.String("https://example.com/chat/api/hub2/example1"),
UserEventPattern: pulumi.String("example1"),
},
&webpubsub.EventHandlerTemplateArgs{
UrlTemplate: pulumi.String("https://example.com/chat/api/hub2/example2"),
UserEventPattern: pulumi.String("example2"),
},
},
},
},
Features: []webpubsub.WebPubSubFeatureArgs{
&webpubsub.WebPubSubFeatureArgs{
Flag: pulumi.String("ServiceMode"),
Properties: nil,
Value: pulumi.String("Serverless"),
},
&webpubsub.WebPubSubFeatureArgs{
Flag: pulumi.String("EnableConnectivityLogs"),
Properties: nil,
Value: pulumi.String("True"),
},
&webpubsub.WebPubSubFeatureArgs{
Flag: pulumi.String("EnableMessagingLogs"),
Properties: nil,
Value: pulumi.String("False"),
},
&webpubsub.WebPubSubFeatureArgs{
Flag: pulumi.String("EnableLiveTrace"),
Properties: nil,
Value: pulumi.String("False"),
},
},
Identity: &webpubsub.ManagedIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
Location: pulumi.String("eastus"),
NetworkACLs: &webpubsub.WebPubSubNetworkACLsArgs{
DefaultAction: pulumi.String("Deny"),
PrivateEndpoints: webpubsub.PrivateEndpointACLArray{
&webpubsub.PrivateEndpointACLArgs{
Allow: pulumi.StringArray{
pulumi.String("ServerConnection"),
},
Name: pulumi.String("mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
},
},
PublicNetwork: &webpubsub.NetworkACLArgs{
Allow: pulumi.StringArray{
pulumi.String("ClientConnection"),
},
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
ResourceName: pulumi.String("myWebPubSubService"),
Sku: &webpubsub.ResourceSkuArgs{
Capacity: pulumi.Int(1),
Name: pulumi.String("Standard_S1"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
Tls: &webpubsub.WebPubSubTlsSettingsArgs{
ClientCertEnabled: pulumi.Bool(false),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var webPubSub = new WebPubSub("webPubSub", WebPubSubArgs.builder()
.eventHandler(Map.of("items", Map.ofEntries(
Map.entry("hub1", Map.ofEntries(
Map.entry("urlTemplate", "https://example.com/chat/api/hub1"),
Map.entry("userEventPattern", "*")
)),
Map.entry("hub2",
Map.ofEntries(
Map.entry("urlTemplate", "https://example.com/chat/api/hub2/example1"),
Map.entry("userEventPattern", "example1")
),
Map.ofEntries(
Map.entry("urlTemplate", "https://example.com/chat/api/hub2/example2"),
Map.entry("userEventPattern", "example2")
))
)))
.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")
),
Map.ofEntries(
Map.entry("flag", "EnableLiveTrace"),
Map.entry("properties", ),
Map.entry("value", "False")
))
.identity(Map.of("type", "SystemAssigned"))
.location("eastus")
.networkACLs(Map.ofEntries(
Map.entry("defaultAction", "Deny"),
Map.entry("privateEndpoints", Map.ofEntries(
Map.entry("allow", "ServerConnection"),
Map.entry("name", "mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e")
)),
Map.entry("publicNetwork", Map.of("allow", "ClientConnection"))
))
.resourceGroupName("myResourceGroup")
.resourceName("myWebPubSubService")
.sku(Map.ofEntries(
Map.entry("capacity", 1),
Map.entry("name", "Standard_S1"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.tls(Map.of("clientCertEnabled", false))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
web_pub_sub = azure_native.webpubsub.WebPubSub("webPubSub",
event_handler=azure_native.webpubsub.EventHandlerSettingsArgs(
items={
"hub1": [azure_native.webpubsub.EventHandlerTemplateArgs(
url_template="https://example.com/chat/api/hub1",
user_event_pattern="*",
)],
"hub2": [
azure_native.webpubsub.EventHandlerTemplateArgs(
url_template="https://example.com/chat/api/hub2/example1",
user_event_pattern="example1",
),
azure_native.webpubsub.EventHandlerTemplateArgs(
url_template="https://example.com/chat/api/hub2/example2",
user_event_pattern="example2",
),
],
},
),
features=[
azure_native.webpubsub.WebPubSubFeatureArgs(
flag="ServiceMode",
properties={},
value="Serverless",
),
azure_native.webpubsub.WebPubSubFeatureArgs(
flag="EnableConnectivityLogs",
properties={},
value="True",
),
azure_native.webpubsub.WebPubSubFeatureArgs(
flag="EnableMessagingLogs",
properties={},
value="False",
),
azure_native.webpubsub.WebPubSubFeatureArgs(
flag="EnableLiveTrace",
properties={},
value="False",
),
],
identity=azure_native.webpubsub.ManagedIdentityArgs(
type="SystemAssigned",
),
location="eastus",
network_acls=azure_native.webpubsub.WebPubSubNetworkACLsArgs(
default_action="Deny",
private_endpoints=[azure_native.webpubsub.PrivateEndpointACLArgs(
allow=["ServerConnection"],
name="mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
)],
public_network=azure_native.webpubsub.NetworkACLArgs(
allow=["ClientConnection"],
),
),
resource_group_name="myResourceGroup",
resource_name_="myWebPubSubService",
sku=azure_native.webpubsub.ResourceSkuArgs(
capacity=1,
name="Standard_S1",
tier="Standard",
),
tags={
"key1": "value1",
},
tls=azure_native.webpubsub.WebPubSubTlsSettingsArgs(
client_cert_enabled=False,
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const webPubSub = new azure_native.webpubsub.WebPubSub("webPubSub", {
eventHandler: {
items: {
hub1: [{
urlTemplate: "https://example.com/chat/api/hub1",
userEventPattern: "*",
}],
hub2: [
{
urlTemplate: "https://example.com/chat/api/hub2/example1",
userEventPattern: "example1",
},
{
urlTemplate: "https://example.com/chat/api/hub2/example2",
userEventPattern: "example2",
},
],
},
},
features: [
{
flag: "ServiceMode",
properties: {},
value: "Serverless",
},
{
flag: "EnableConnectivityLogs",
properties: {},
value: "True",
},
{
flag: "EnableMessagingLogs",
properties: {},
value: "False",
},
{
flag: "EnableLiveTrace",
properties: {},
value: "False",
},
],
identity: {
type: "SystemAssigned",
},
location: "eastus",
networkACLs: {
defaultAction: "Deny",
privateEndpoints: [{
allow: ["ServerConnection"],
name: "mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
}],
publicNetwork: {
allow: ["ClientConnection"],
},
},
resourceGroupName: "myResourceGroup",
resourceName: "myWebPubSubService",
sku: {
capacity: 1,
name: "Standard_S1",
tier: "Standard",
},
tags: {
key1: "value1",
},
tls: {
clientCertEnabled: false,
},
});
resources:
webPubSub:
type: azure-native:webpubsub:WebPubSub
properties:
eventHandler:
items:
hub1:
- urlTemplate: https://example.com/chat/api/hub1
userEventPattern: '*'
hub2:
- urlTemplate: https://example.com/chat/api/hub2/example1
userEventPattern: example1
- urlTemplate: https://example.com/chat/api/hub2/example2
userEventPattern: example2
features:
- flag: ServiceMode
properties: {}
value: Serverless
- flag: EnableConnectivityLogs
properties: {}
value: True
- flag: EnableMessagingLogs
properties: {}
value: False
- flag: EnableLiveTrace
properties: {}
value: False
identity:
type: SystemAssigned
location: eastus
networkACLs:
defaultAction: Deny
privateEndpoints:
- allow:
- ServerConnection
name: mywebpubsubservice.1fa229cd-bf3f-47f0-8c49-afb36723997e
publicNetwork:
allow:
- ClientConnection
resourceGroupName: myResourceGroup
resourceName: myWebPubSubService
sku:
capacity: 1
name: Standard_S1
tier: Standard
tags:
key1: value1
tls:
clientCertEnabled: false
Create a WebPubSub Resource
new WebPubSub(name: string, args: WebPubSubArgs, opts?: CustomResourceOptions);
@overload
def WebPubSub(resource_name: str,
opts: Optional[ResourceOptions] = None,
event_handler: Optional[EventHandlerSettingsArgs] = None,
features: Optional[Sequence[WebPubSubFeatureArgs]] = None,
identity: Optional[ManagedIdentityArgs] = None,
location: Optional[str] = None,
network_acls: Optional[WebPubSubNetworkACLsArgs] = None,
public_network_access: Optional[str] = None,
resource_group_name: Optional[str] = None,
resource_name_: Optional[str] = None,
sku: Optional[ResourceSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tls: Optional[WebPubSubTlsSettingsArgs] = None)
@overload
def WebPubSub(resource_name: str,
args: WebPubSubArgs,
opts: Optional[ResourceOptions] = None)
func NewWebPubSub(ctx *Context, name string, args WebPubSubArgs, opts ...ResourceOption) (*WebPubSub, error)
public WebPubSub(string name, WebPubSubArgs args, CustomResourceOptions? opts = null)
public WebPubSub(String name, WebPubSubArgs args)
public WebPubSub(String name, WebPubSubArgs args, CustomResourceOptions options)
type: azure-native:webpubsub:WebPubSub
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebPubSubArgs
- 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 WebPubSubArgs
- 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 WebPubSubArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebPubSubArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WebPubSubArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
WebPubSub 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 WebPubSub 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.
- Event
Handler Pulumi.Azure Native. Web Pub Sub. Inputs. Event Handler Settings Args The settings for event handler in webpubsub service.
- Features
List<Pulumi.
Azure Native. Web Pub Sub. Inputs. Web Pub Sub Feature 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
Pulumi.
Azure Native. Web Pub Sub. Inputs. Managed Identity Args The managed identity response
- Location string
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- Network
ACLs Pulumi.Azure Native. Web Pub Sub. Inputs. Web Pub Sub Network ACLs Args Network ACLs
- Public
Network 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.
- Resource
Name string The name of the resource.
- Sku
Pulumi.
Azure Native. Web Pub Sub. Inputs. Resource Sku Args 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.
- Tls
Pulumi.
Azure Native. Web Pub Sub. Inputs. Web Pub Sub Tls Settings Args TLS settings.
- 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.
- Event
Handler EventHandler Settings Args The settings for event handler in webpubsub service.
- Features
[]Web
Pub Sub Feature 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
Managed
Identity Args The managed identity response
- Location string
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- Network
ACLs WebPub Sub Network ACLs Args Network ACLs
- Public
Network 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.
- Resource
Name string The name of the 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.
- Tls
Web
Pub Sub Tls Settings Args TLS settings.
- 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.
- event
Handler EventHandler Settings Args The settings for event handler in webpubsub service.
- features
List
Pub Sub Feature 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
Managed
Identity Args The managed identity response
- location String
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- network
ACLs WebPub Sub Network ACLs Args Network ACLs
- public
Network 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.
- resource
Name String The name of the resource.
- sku
Resource
Sku Args The billing information of the resource.(e.g. Free, Standard)
- Map
Tags of the service which is a list of key value pairs that describe the resource.
- tls
Web
Pub Sub Tls Settings Args TLS settings.
- 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.
- event
Handler EventHandler Settings Args The settings for event handler in webpubsub service.
- features
Web
Pub Sub Feature 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
Managed
Identity Args The managed identity response
- location string
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- network
ACLs WebPub Sub Network ACLs Args Network ACLs
- public
Network 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.
- resource
Name string The name of the resource.
- sku
Resource
Sku Args 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.
- tls
Web
Pub Sub Tls Settings Args TLS settings.
- 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.
- event_
handler EventHandler Settings Args The settings for event handler in webpubsub service.
- features
Sequence[Web
Pub Sub Feature 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
Managed
Identity Args The managed identity response
- location str
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- network_
acls WebPub Sub Network ACLs Args Network ACLs
- 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_
name str The name of the 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.
- tls
Web
Pub Sub Tls Settings Args TLS settings.
- 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.
- event
Handler Property Map The settings for event handler in webpubsub service.
- features
List
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
The managed identity response
- location String
The GEO location of the resource. e.g. West US | East US | North Central US | South Central US.
- network
ACLs Property Map Network ACLs
- public
Network 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.
- resource
Name String The name of the resource.
- sku Property Map
The billing information of the resource.(e.g. Free, Standard)
- Map
Tags of the service which is a list of key value pairs that describe the resource.
- tls Property Map
TLS settings.
Outputs
All input properties are implicitly available as output properties. Additionally, the WebPubSub resource produces the following output properties:
- External
IP string The publicly accessible IP of the resource.
- Host
Name string FQDN of the service instance.
- 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. Web Pub Sub. Outputs. Private Endpoint Connection Response> Private endpoint connections to the resource.
- Provisioning
State string 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.
- List<Pulumi.
Azure Native. Web Pub Sub. Outputs. Shared Private Link Resource Response> The list of shared private link resources.
- System
Data Pulumi.Azure Native. Web Pub Sub. 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.
- External
IP string The publicly accessible IP of the resource.
- Host
Name string FQDN of the service instance.
- 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 resource.
- Provisioning
State string 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.
- []Shared
Private 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 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 String The publicly accessible IP of the resource.
- host
Name String FQDN of the service instance.
- id String
The provider-assigned unique ID for this managed resource.
- name String
The name of the resource.
- private
Endpoint ListConnections Endpoint Connection Response> Private endpoint connections to the resource.
- provisioning
State String Provisioning state of the resource.
- public
Port Integer The publicly accessible port of the resource which is designed for browser/client side usage.
- server
Port Integer The publicly accessible port of the resource which is designed for customer server side usage.
- List
Private 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 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 string The publicly accessible IP of the resource.
- host
Name string FQDN of the service instance.
- 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 resource.
- provisioning
State string Provisioning state of the resource.
- public
Port number The publicly accessible port of the resource which is designed for browser/client side usage.
- server
Port number The publicly accessible port of the resource which is designed for customer server side usage.
- Shared
Private 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 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.
- 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[Shared
Private 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.
- external
IP String The publicly accessible IP of the resource.
- host
Name String FQDN of the service instance.
- id String
The provider-assigned unique ID for this managed resource.
- name String
The name of the resource.
- private
Endpoint ListConnections Private endpoint connections to the resource.
- provisioning
State String Provisioning state of the resource.
- public
Port Number The publicly accessible port of the resource which is designed for browser/client side usage.
- server
Port Number The publicly accessible port of the resource which is designed for customer server side usage.
- List
The list of shared private link resources.
- system
Data 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
- 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
EventHandlerSettings
- Items
Dictionary<string, Immutable
Array<Pulumi. Azure Native. Web Pub Sub. Inputs. Event Handler Template>> Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- Items
map[string][]Event
Handler Template Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Map
Handler Template>> Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
{[key: string]: Event
Handler Template[]} Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Mapping[str, Sequence[Event
Handler Template]] Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Map
- >
Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
EventHandlerSettingsResponse
- Items
Dictionary<string, Immutable
Array<Pulumi. Azure Native. Web Pub Sub. Inputs. Event Handler Template Response>> Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- Items
map[string][]Event
Handler Template Response Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Map
Handler Template Response>> Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
{[key: string]: Event
Handler Template Response[]} Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Mapping[str, Sequence[Event
Handler Template Response]] Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
- items
Map
- >
Get or set the EventHandler items. The key is the hub name and the value is the corresponding EventHandlerTemplate.
EventHandlerTemplate
- Url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- Auth
Pulumi.
Azure Native. Web Pub Sub. Inputs. Upstream Auth Settings Gets or sets the auth settings for an event handler. If not set, no auth is used.
- System
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- User
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- Url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- Auth
Upstream
Auth Settings Gets or sets the auth settings for an event handler. If not set, no auth is used.
- System
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- User
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template String Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event StringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event StringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url_
template str Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system_
event_ strpattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user_
event_ strpattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template String Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth Property Map
Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event StringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event StringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
EventHandlerTemplateResponse
- Url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- Auth
Pulumi.
Azure Native. Web Pub Sub. Inputs. Upstream Auth Settings Response Gets or sets the auth settings for an event handler. If not set, no auth is used.
- System
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- User
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- Url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- Auth
Upstream
Auth Settings Response Gets or sets the auth settings for an event handler. If not set, no auth is used.
- System
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- User
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template String Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Response Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event StringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event StringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template string Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Response Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event stringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event stringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url_
template str Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth
Upstream
Auth Settings Response Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system_
event_ strpattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user_
event_ strpattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
- url
Template String Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be
http://example.com/api/{hub}/{event}
. The host part can't contains parameters.- auth Property Map
Gets or sets the auth settings for an event handler. If not set, no auth is used.
- system
Event StringPattern Gets ot sets the system event pattern. There are 2 kind of patterns supported: 1. The single event name, for example, "connect", it matches "connect" 2. Combine multiple events with ",", for example "connect,disconnected", it matches event "connect" and "disconnected"
- user
Event StringPattern Gets or sets the matching pattern for event names. There are 3 kind of patterns supported: 1. "*", it to matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2" 3. The single event name, for example, "event1", it matches "event1"
FeatureFlags
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- Enable
Live Trace - EnableLiveTrace
- Feature
Flags Enable Connectivity Logs - EnableConnectivityLogs
- Feature
Flags Enable Messaging Logs - EnableMessagingLogs
- Feature
Flags Enable Live Trace - EnableLiveTrace
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- Enable
Live Trace - EnableLiveTrace
- Enable
Connectivity Logs - EnableConnectivityLogs
- Enable
Messaging Logs - EnableMessagingLogs
- Enable
Live Trace - EnableLiveTrace
- ENABLE_CONNECTIVITY_LOGS
- EnableConnectivityLogs
- ENABLE_MESSAGING_LOGS
- EnableMessagingLogs
- ENABLE_LIVE_TRACE
- EnableLiveTrace
- "Enable
Connectivity Logs" - EnableConnectivityLogs
- "Enable
Messaging Logs" - EnableMessagingLogs
- "Enable
Live Trace" - EnableLiveTrace
ManagedIdentity
- Type
string | Pulumi.
Azure Native. Web Pub Sub. Managed Identity Type Represent the identity type: systemAssigned, userAssigned, None
- User
Assigned Dictionary<string, object>Identities Get or set the user assigned identities
- Type
string | Managed
Identity Type Represent the identity type: systemAssigned, userAssigned, None
- User
Assigned map[string]interface{}Identities Get or set the user assigned identities
- type
String | Managed
Identity Type Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned MapIdentities Get or set the user assigned identities
- type
string | Managed
Identity Type Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned {[key: string]: any}Identities Get or set the user assigned identities
- type
str | Managed
Identity Type Represent the identity type: systemAssigned, userAssigned, None
- user_
assigned_ Mapping[str, Any]identities Get or set the user assigned identities
- type
String | "None" | "System
Assigned" | "User Assigned" Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned MapIdentities Get or set the user assigned identities
ManagedIdentityResponse
- Principal
Id string Get the principal id for the system assigned identity. Only be used in response.
- Tenant
Id string Get the tenant id for the system assigned identity. Only be used in response
- Type string
Represent the identity type: systemAssigned, userAssigned, None
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Web Pub Sub. Inputs. User Assigned Identity Property Response> Get or set the user assigned identities
- Principal
Id string Get the principal id for the system assigned identity. Only be used in response.
- Tenant
Id string Get the tenant id for the system assigned identity. Only be used in response
- Type string
Represent the identity type: systemAssigned, userAssigned, None
- User
Assigned map[string]UserIdentities Assigned Identity Property Response Get or set the user assigned identities
- principal
Id String Get the principal id for the system assigned identity. Only be used in response.
- tenant
Id String Get the tenant id for the system assigned identity. Only be used in response
- type String
Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned MapIdentities Assigned Identity Property Response> Get or set the user assigned identities
- principal
Id string Get the principal id for the system assigned identity. Only be used in response.
- tenant
Id string Get the tenant id for the system assigned identity. Only be used in response
- type string
Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned {[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
Represent the identity type: systemAssigned, userAssigned, None
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Property Response] Get or set the user assigned identities
- principal
Id String Get the principal id for the system assigned identity. Only be used in response.
- tenant
Id String Get the tenant id for the system assigned identity. Only be used in response
- type String
Represent the identity type: systemAssigned, userAssigned, None
- user
Assigned MapIdentities Get or set the user assigned identities
ManagedIdentitySettings
- 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
- 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
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Managed
Identity Type None - None
- Managed
Identity Type System Assigned - SystemAssigned
- Managed
Identity Type User Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
NetworkACL
- Allow
List<Union<string, Pulumi.
Azure Native. Web Pub Sub. Web Pub Sub Request Type>> Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- Deny
List<Union<string, Pulumi.
Azure Native. Web Pub Sub. Web Pub Sub Request Type>> Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- allow
List
Connection" | "Server Connection" | "RESTAPI" | "Trace"> Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List
Connection" | "Server Connection" | "RESTAPI" | "Trace"> Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
NetworkACLResponse
PrivateEndpointACL
- Name string
Name of the private endpoint connection
- Allow
List<Union<string, Pulumi.
Azure Native. Web Pub Sub. Web Pub Sub Request Type>> Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- Deny
List<Union<string, Pulumi.
Azure Native. Web Pub Sub. Web Pub Sub Request 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
Pub Sub Request Type>> Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List
Pub Sub Request 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 | Web
Pub Sub Request Type)[] Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
(string | Web
Pub Sub Request 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, Web
Pub Sub Request Type]] Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
Sequence[Union[str, Web
Pub Sub Request 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
Connection" | "Server Connection" | "RESTAPI" | "Trace"> Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
- deny
List
Connection" | "Server Connection" | "RESTAPI" | "Trace"> Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
PrivateEndpointACLResponse
PrivateEndpointConnectionResponse
- 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
- System
Data Pulumi.Azure Native. Web Pub Sub. 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"
- Private
Endpoint Pulumi.Azure Native. Web Pub Sub. Inputs. Private Endpoint Response Private endpoint associated with the private endpoint connection
- Private
Link Pulumi.Service Connection State Azure Native. Web Pub Sub. 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
- System
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- 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
- system
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- 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
- system
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- 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
- 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 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
- system
Data Property Map Metadata pertaining to creation and last modification of the resource.
- 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
- 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
- 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
- Name string
The name of the SKU. Required.
Allowed values: Standard_S1, Free_F1
- Capacity int
Optional, integer. The unit count of the 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. Web Pub Sub. Web Pub Sub Sku 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 the resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- Tier
string | Web
Pub Sub Sku 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 the resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
String | Web
Pub Sub Sku 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 the resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
string | Web
Pub Sub Sku 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 the resource. 1 by default.
If present, following values are allowed: Free: 1 Standard: 1,2,5,10,20,50,100
- tier
str | Web
Pub Sub Sku 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 the 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
- 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 the 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 the 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 the 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 the 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 the 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 the 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.
SharedPrivateLinkResourceResponse
- Group
Id 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.
- Private
Link stringResource Id The resource id of the resource the shared private link resource is for
- Provisioning
State string Provisioning state of the shared private link resource
- Status string
Status of the shared private link resource
- System
Data Pulumi.Azure Native. Web Pub Sub. 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"
- Request
Message string The request message for requesting approval of the shared private link resource
- Group
Id 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.
- Private
Link stringResource Id The resource id of the resource the shared private link resource is for
- Provisioning
State string Provisioning state of the shared private link resource
- Status string
Status of the shared private link resource
- System
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- Type string
The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- Request
Message string The request message for requesting approval of the shared private link resource
- group
Id 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.
- private
Link StringResource Id The resource id of the resource the shared private link resource is for
- provisioning
State String Provisioning state of the shared private link resource
- status String
Status of the shared private link resource
- system
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- type String
The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- request
Message String The request message for requesting approval of the shared private link resource
- group
Id 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.
- private
Link stringResource Id The resource id of the resource the shared private link resource is for
- provisioning
State string Provisioning state of the shared private link resource
- status string
Status of the shared private link resource
- system
Data SystemData Response Metadata pertaining to creation and last modification of the resource.
- type string
The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- request
Message 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 shared private link 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
- group
Id 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.
- private
Link StringResource Id The resource id of the resource the shared private link resource is for
- provisioning
State String Provisioning state of the shared private link resource
- status String
Status of the shared private link resource
- system
Data Property Map Metadata pertaining to creation and last modification of the resource.
- type String
The type of the resource - e.g. "Microsoft.SignalRService/SignalR"
- request
Message String The request message for requesting approval of the shared private link resource
SystemDataResponse
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
- created
At string The timestamp of resource creation (UTC).
- created
By string The identity that created the resource.
- created
By stringType The type of identity that created the resource.
- last
Modified stringAt The timestamp of resource last modification (UTC)
- last
Modified stringBy The identity that last modified the resource.
- last
Modified 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.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
UpstreamAuthSettings
- Managed
Identity Pulumi.Azure Native. Web Pub Sub. Inputs. Managed Identity Settings Managed identity settings for upstream.
- Type
string | Pulumi.
Azure Native. Web Pub Sub. Upstream Auth Type Upstream auth type enum.
- Managed
Identity ManagedIdentity Settings Managed identity settings for upstream.
- Type
string | Upstream
Auth Type Upstream auth type enum.
- managed
Identity ManagedIdentity Settings Managed identity settings for upstream.
- type
String | Upstream
Auth Type Upstream auth type enum.
- managed
Identity ManagedIdentity Settings Managed identity settings for upstream.
- type
string | Upstream
Auth Type Upstream auth type enum.
- managed_
identity ManagedIdentity Settings Managed identity settings for upstream.
- type
str | Upstream
Auth Type Upstream auth type enum.
- managed
Identity Property Map Managed identity settings for upstream.
- type
String | "None" | "Managed
Identity" Upstream auth type enum.
UpstreamAuthSettingsResponse
- Managed
Identity Pulumi.Azure Native. Web Pub Sub. Inputs. Managed Identity Settings Response Managed identity settings for upstream.
- Type string
Upstream auth type enum.
- Managed
Identity 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 String
Upstream auth type enum.
- managed
Identity 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.
- managed
Identity Property Map Managed identity settings for upstream.
- type String
Upstream auth type enum.
UpstreamAuthType
- None
- None
- Managed
Identity - ManagedIdentity
- Upstream
Auth Type None - None
- Upstream
Auth Type Managed Identity - ManagedIdentity
- None
- None
- Managed
Identity - ManagedIdentity
- None
- None
- Managed
Identity - ManagedIdentity
- NONE
- None
- MANAGED_IDENTITY
- ManagedIdentity
- "None"
- None
- "Managed
Identity" - ManagedIdentity
UserAssignedIdentityPropertyResponse
- Client
Id string Get the client id for the user assigned identity
- Principal
Id string Get the principal id for the user assigned identity
- Client
Id string Get the client id for the user assigned identity
- Principal
Id string Get the principal id for the user assigned identity
- client
Id String Get the client id for the user assigned identity
- principal
Id String Get the principal id for the user assigned identity
- client
Id string Get the client id for the user assigned identity
- principal
Id 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
- client
Id String Get the client id for the user assigned identity
- principal
Id String Get the principal id for the user assigned identity
WebPubSubFeature
- Flag
string | Pulumi.
Azure Native. Web Pub Sub. Feature Flags FeatureFlags is the supported features of Azure SignalR service.
- 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 | Feature
Flags FeatureFlags is the supported features of Azure SignalR service.
- 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 | Feature
Flags FeatureFlags is the supported features of Azure SignalR service.
- 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
Optional properties related to this feature.
- flag
string | Feature
Flags FeatureFlags is the supported features of Azure SignalR service.
- 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 | Feature
Flags FeatureFlags is the supported features of Azure SignalR service.
- 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 | "Enable
Connectivity Logs" | "Enable Messaging Logs" | "Enable Live Trace" FeatureFlags is the supported features of Azure SignalR service.
- 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
Optional properties related to this feature.
WebPubSubFeatureResponse
- Flag string
FeatureFlags is the supported features of Azure SignalR service.
- 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.
- 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.
- 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
Optional properties related to this feature.
- flag string
FeatureFlags is the supported features of Azure SignalR service.
- 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.
- 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.
- 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
Optional properties related to this feature.
WebPubSubNetworkACLs
- Default
Action string | Pulumi.Azure Native. Web Pub Sub. ACLAction Default action when no other rule matches
- Private
Endpoints List<Pulumi.Azure Native. Web Pub Sub. Inputs. Private Endpoint ACL> ACLs for requests from private endpoints
- Public
Network Pulumi.Azure Native. Web Pub Sub. 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 ListEndpoint 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 ACLs for requests from private endpoints
- public
Network Property Map ACL for requests from public network
WebPubSubNetworkACLsResponse
- Default
Action string Default action when no other rule matches
- Private
Endpoints List<Pulumi.Azure Native. Web Pub Sub. Inputs. Private Endpoint ACLResponse> ACLs for requests from private endpoints
- Public
Network Pulumi.Azure Native. Web Pub Sub. 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 ListEndpoint 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 ACLs for requests from private endpoints
- public
Network Property Map ACL for requests from public network
WebPubSubRequestType
- Client
Connection - ClientConnection
- Server
Connection - ServerConnection
- RESTAPI
- RESTAPI
- Trace
- Trace
- Web
Pub Sub Request Type Client Connection - ClientConnection
- Web
Pub Sub Request Type Server Connection - ServerConnection
- Web
Pub Sub Request Type RESTAPI - RESTAPI
- Web
Pub Sub Request 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
WebPubSubSkuTier
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Web
Pub Sub Sku Tier Free - Free
- Web
Pub Sub Sku Tier Basic - Basic
- Web
Pub Sub Sku Tier Standard - Standard
- Web
Pub Sub Sku 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
WebPubSubTlsSettings
- Client
Cert boolEnabled Request client certificate during TLS handshake if enabled
- Client
Cert boolEnabled Request client certificate during TLS handshake if enabled
- client
Cert BooleanEnabled Request client certificate during TLS handshake if enabled
- client
Cert booleanEnabled Request client certificate during TLS handshake if enabled
- client_
cert_ boolenabled Request client certificate during TLS handshake if enabled
- client
Cert BooleanEnabled Request client certificate during TLS handshake if enabled
WebPubSubTlsSettingsResponse
- Client
Cert boolEnabled Request client certificate during TLS handshake if enabled
- Client
Cert boolEnabled Request client certificate during TLS handshake if enabled
- client
Cert BooleanEnabled Request client certificate during TLS handshake if enabled
- client
Cert booleanEnabled Request client certificate during TLS handshake if enabled
- client_
cert_ boolenabled Request client certificate during TLS handshake if enabled
- client
Cert BooleanEnabled Request client certificate during TLS handshake if enabled
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:webpubsub:WebPubSub myWebPubSubService /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/WebPubSub/myWebPubSubService
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure-native
- License
- Apache-2.0