azure-native.notificationhubs.Namespace
Explore with Pulumi AI
Notification Hubs Namespace Resource.
Uses Azure REST API version 2023-10-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
Other available API versions: 2023-01-01-preview, 2023-09-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native notificationhubs [ApiVersion]
. See the version guide for details.
Example Usage
Namespaces_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var @namespace = new AzureNative.NotificationHubs.Namespace("namespace", new()
{
Location = "South Central US",
NamespaceName = "nh-sdk-ns",
NetworkAcls = new AzureNative.NotificationHubs.Inputs.NetworkAclsArgs
{
IpRules = new[]
{
new AzureNative.NotificationHubs.Inputs.IpRuleArgs
{
IpMask = "185.48.100.00/24",
Rights = new[]
{
AzureNative.NotificationHubs.AccessRights.Manage,
AzureNative.NotificationHubs.AccessRights.Send,
AzureNative.NotificationHubs.AccessRights.Listen,
},
},
},
PublicNetworkRule = new AzureNative.NotificationHubs.Inputs.PublicInternetAuthorizationRuleArgs
{
Rights = new[]
{
AzureNative.NotificationHubs.AccessRights.Listen,
},
},
},
ResourceGroupName = "5ktrial",
Sku = new AzureNative.NotificationHubs.Inputs.SkuArgs
{
Name = AzureNative.NotificationHubs.SkuName.Standard,
Tier = "Standard",
},
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value2" },
},
ZoneRedundancy = AzureNative.NotificationHubs.ZoneRedundancyPreference.Enabled,
});
});
package main
import (
notificationhubs "github.com/pulumi/pulumi-azure-native-sdk/notificationhubs/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := notificationhubs.NewNamespace(ctx, "namespace", ¬ificationhubs.NamespaceArgs{
Location: pulumi.String("South Central US"),
NamespaceName: pulumi.String("nh-sdk-ns"),
NetworkAcls: ¬ificationhubs.NetworkAclsArgs{
IpRules: notificationhubs.IpRuleArray{
¬ificationhubs.IpRuleArgs{
IpMask: pulumi.String("185.48.100.00/24"),
Rights: pulumi.StringArray{
pulumi.String(notificationhubs.AccessRightsManage),
pulumi.String(notificationhubs.AccessRightsSend),
pulumi.String(notificationhubs.AccessRightsListen),
},
},
},
PublicNetworkRule: ¬ificationhubs.PublicInternetAuthorizationRuleArgs{
Rights: pulumi.StringArray{
pulumi.String(notificationhubs.AccessRightsListen),
},
},
},
ResourceGroupName: pulumi.String("5ktrial"),
Sku: ¬ificationhubs.SkuArgs{
Name: pulumi.String(notificationhubs.SkuNameStandard),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"tag1": pulumi.String("value1"),
"tag2": pulumi.String("value2"),
},
ZoneRedundancy: pulumi.String(notificationhubs.ZoneRedundancyPreferenceEnabled),
})
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.notificationhubs.Namespace;
import com.pulumi.azurenative.notificationhubs.NamespaceArgs;
import com.pulumi.azurenative.notificationhubs.inputs.NetworkAclsArgs;
import com.pulumi.azurenative.notificationhubs.inputs.PublicInternetAuthorizationRuleArgs;
import com.pulumi.azurenative.notificationhubs.inputs.SkuArgs;
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 namespace = new Namespace("namespace", NamespaceArgs.builder()
.location("South Central US")
.namespaceName("nh-sdk-ns")
.networkAcls(NetworkAclsArgs.builder()
.ipRules(IpRuleArgs.builder()
.ipMask("185.48.100.00/24")
.rights(
"Manage",
"Send",
"Listen")
.build())
.publicNetworkRule(PublicInternetAuthorizationRuleArgs.builder()
.rights("Listen")
.build())
.build())
.resourceGroupName("5ktrial")
.sku(SkuArgs.builder()
.name("Standard")
.tier("Standard")
.build())
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.zoneRedundancy("Enabled")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const namespace = new azure_native.notificationhubs.Namespace("namespace", {
location: "South Central US",
namespaceName: "nh-sdk-ns",
networkAcls: {
ipRules: [{
ipMask: "185.48.100.00/24",
rights: [
azure_native.notificationhubs.AccessRights.Manage,
azure_native.notificationhubs.AccessRights.Send,
azure_native.notificationhubs.AccessRights.Listen,
],
}],
publicNetworkRule: {
rights: [azure_native.notificationhubs.AccessRights.Listen],
},
},
resourceGroupName: "5ktrial",
sku: {
name: azure_native.notificationhubs.SkuName.Standard,
tier: "Standard",
},
tags: {
tag1: "value1",
tag2: "value2",
},
zoneRedundancy: azure_native.notificationhubs.ZoneRedundancyPreference.Enabled,
});
import pulumi
import pulumi_azure_native as azure_native
namespace = azure_native.notificationhubs.Namespace("namespace",
location="South Central US",
namespace_name="nh-sdk-ns",
network_acls={
"ip_rules": [{
"ip_mask": "185.48.100.00/24",
"rights": [
azure_native.notificationhubs.AccessRights.MANAGE,
azure_native.notificationhubs.AccessRights.SEND,
azure_native.notificationhubs.AccessRights.LISTEN,
],
}],
"public_network_rule": {
"rights": [azure_native.notificationhubs.AccessRights.LISTEN],
},
},
resource_group_name="5ktrial",
sku={
"name": azure_native.notificationhubs.SkuName.STANDARD,
"tier": "Standard",
},
tags={
"tag1": "value1",
"tag2": "value2",
},
zone_redundancy=azure_native.notificationhubs.ZoneRedundancyPreference.ENABLED)
resources:
namespace:
type: azure-native:notificationhubs:Namespace
properties:
location: South Central US
namespaceName: nh-sdk-ns
networkAcls:
ipRules:
- ipMask: 185.48.100.00/24
rights:
- Manage
- Send
- Listen
publicNetworkRule:
rights:
- Listen
resourceGroupName: 5ktrial
sku:
name: Standard
tier: Standard
tags:
tag1: value1
tag2: value2
zoneRedundancy: Enabled
Create Namespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
@overload
def Namespace(resource_name: str,
args: NamespaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Namespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
namespace_type: Optional[Union[str, NamespaceType]] = None,
data_center: Optional[str] = None,
network_acls: Optional[NetworkAclsArgs] = None,
pns_credentials: Optional[PnsCredentialsArgs] = None,
provisioning_state: Optional[Union[str, OperationProvisioningState]] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
replication_region: Optional[Union[str, ReplicationRegion]] = None,
namespace_name: Optional[str] = None,
scale_unit: Optional[str] = None,
location: Optional[str] = None,
status: Optional[Union[str, NamespaceStatus]] = None,
tags: Optional[Mapping[str, str]] = None,
zone_redundancy: Optional[Union[str, ZoneRedundancyPreference]] = None)
func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: azure-native:notificationhubs:Namespace
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 NamespaceArgs
- 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 NamespaceArgs
- 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 NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceArgs
- 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 examplenamespaceResourceResourceFromNotificationhubs = new AzureNative.NotificationHubs.Namespace("examplenamespaceResourceResourceFromNotificationhubs", new()
{
ResourceGroupName = "string",
Sku = new AzureNative.NotificationHubs.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = "string",
},
NamespaceType = "string",
DataCenter = "string",
NetworkAcls = new AzureNative.NotificationHubs.Inputs.NetworkAclsArgs
{
IpRules = new[]
{
new AzureNative.NotificationHubs.Inputs.IpRuleArgs
{
IpMask = "string",
Rights = new[]
{
"string",
},
},
},
PublicNetworkRule = new AzureNative.NotificationHubs.Inputs.PublicInternetAuthorizationRuleArgs
{
Rights = new[]
{
"string",
},
},
},
PnsCredentials = new AzureNative.NotificationHubs.Inputs.PnsCredentialsArgs
{
AdmCredential = new AzureNative.NotificationHubs.Inputs.AdmCredentialArgs
{
AuthTokenUrl = "string",
ClientId = "string",
ClientSecret = "string",
},
ApnsCredential = new AzureNative.NotificationHubs.Inputs.ApnsCredentialArgs
{
Endpoint = "string",
ApnsCertificate = "string",
AppId = "string",
AppName = "string",
CertificateKey = "string",
KeyId = "string",
Thumbprint = "string",
Token = "string",
},
BaiduCredential = new AzureNative.NotificationHubs.Inputs.BaiduCredentialArgs
{
BaiduApiKey = "string",
BaiduEndPoint = "string",
BaiduSecretKey = "string",
},
BrowserCredential = new AzureNative.NotificationHubs.Inputs.BrowserCredentialArgs
{
Subject = "string",
VapidPrivateKey = "string",
VapidPublicKey = "string",
},
FcmV1Credential = new AzureNative.NotificationHubs.Inputs.FcmV1CredentialArgs
{
ClientEmail = "string",
PrivateKey = "string",
ProjectId = "string",
},
GcmCredential = new AzureNative.NotificationHubs.Inputs.GcmCredentialArgs
{
GoogleApiKey = "string",
GcmEndpoint = "string",
},
MpnsCredential = new AzureNative.NotificationHubs.Inputs.MpnsCredentialArgs
{
CertificateKey = "string",
MpnsCertificate = "string",
Thumbprint = "string",
},
WnsCredential = new AzureNative.NotificationHubs.Inputs.WnsCredentialArgs
{
CertificateKey = "string",
PackageSid = "string",
SecretKey = "string",
WindowsLiveEndpoint = "string",
WnsCertificate = "string",
},
XiaomiCredential = new AzureNative.NotificationHubs.Inputs.XiaomiCredentialArgs
{
AppSecret = "string",
Endpoint = "string",
},
},
ProvisioningState = "string",
PublicNetworkAccess = "string",
ReplicationRegion = "string",
NamespaceName = "string",
ScaleUnit = "string",
Location = "string",
Status = "string",
Tags =
{
{ "string", "string" },
},
ZoneRedundancy = "string",
});
example, err := notificationhubs.NewNamespace(ctx, "examplenamespaceResourceResourceFromNotificationhubs", ¬ificationhubs.NamespaceArgs{
ResourceGroupName: pulumi.String("string"),
Sku: ¬ificationhubs.SkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: pulumi.String("string"),
},
NamespaceType: pulumi.String("string"),
DataCenter: pulumi.String("string"),
NetworkAcls: ¬ificationhubs.NetworkAclsArgs{
IpRules: notificationhubs.IpRuleArray{
¬ificationhubs.IpRuleArgs{
IpMask: pulumi.String("string"),
Rights: pulumi.StringArray{
pulumi.String("string"),
},
},
},
PublicNetworkRule: ¬ificationhubs.PublicInternetAuthorizationRuleArgs{
Rights: pulumi.StringArray{
pulumi.String("string"),
},
},
},
PnsCredentials: ¬ificationhubs.PnsCredentialsArgs{
AdmCredential: ¬ificationhubs.AdmCredentialArgs{
AuthTokenUrl: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
ApnsCredential: ¬ificationhubs.ApnsCredentialArgs{
Endpoint: pulumi.String("string"),
ApnsCertificate: pulumi.String("string"),
AppId: pulumi.String("string"),
AppName: pulumi.String("string"),
CertificateKey: pulumi.String("string"),
KeyId: pulumi.String("string"),
Thumbprint: pulumi.String("string"),
Token: pulumi.String("string"),
},
BaiduCredential: ¬ificationhubs.BaiduCredentialArgs{
BaiduApiKey: pulumi.String("string"),
BaiduEndPoint: pulumi.String("string"),
BaiduSecretKey: pulumi.String("string"),
},
BrowserCredential: ¬ificationhubs.BrowserCredentialArgs{
Subject: pulumi.String("string"),
VapidPrivateKey: pulumi.String("string"),
VapidPublicKey: pulumi.String("string"),
},
FcmV1Credential: ¬ificationhubs.FcmV1CredentialArgs{
ClientEmail: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
ProjectId: pulumi.String("string"),
},
GcmCredential: ¬ificationhubs.GcmCredentialArgs{
GoogleApiKey: pulumi.String("string"),
GcmEndpoint: pulumi.String("string"),
},
MpnsCredential: ¬ificationhubs.MpnsCredentialArgs{
CertificateKey: pulumi.String("string"),
MpnsCertificate: pulumi.String("string"),
Thumbprint: pulumi.String("string"),
},
WnsCredential: ¬ificationhubs.WnsCredentialArgs{
CertificateKey: pulumi.String("string"),
PackageSid: pulumi.String("string"),
SecretKey: pulumi.String("string"),
WindowsLiveEndpoint: pulumi.String("string"),
WnsCertificate: pulumi.String("string"),
},
XiaomiCredential: ¬ificationhubs.XiaomiCredentialArgs{
AppSecret: pulumi.String("string"),
Endpoint: pulumi.String("string"),
},
},
ProvisioningState: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
ReplicationRegion: pulumi.String("string"),
NamespaceName: pulumi.String("string"),
ScaleUnit: pulumi.String("string"),
Location: pulumi.String("string"),
Status: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ZoneRedundancy: pulumi.String("string"),
})
var examplenamespaceResourceResourceFromNotificationhubs = new com.pulumi.azurenative.notificationhubs.Namespace("examplenamespaceResourceResourceFromNotificationhubs", com.pulumi.azurenative.notificationhubs.NamespaceArgs.builder()
.resourceGroupName("string")
.sku(SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("string")
.build())
.namespaceType("string")
.dataCenter("string")
.networkAcls(NetworkAclsArgs.builder()
.ipRules(IpRuleArgs.builder()
.ipMask("string")
.rights("string")
.build())
.publicNetworkRule(PublicInternetAuthorizationRuleArgs.builder()
.rights("string")
.build())
.build())
.pnsCredentials(PnsCredentialsArgs.builder()
.admCredential(AdmCredentialArgs.builder()
.authTokenUrl("string")
.clientId("string")
.clientSecret("string")
.build())
.apnsCredential(ApnsCredentialArgs.builder()
.endpoint("string")
.apnsCertificate("string")
.appId("string")
.appName("string")
.certificateKey("string")
.keyId("string")
.thumbprint("string")
.token("string")
.build())
.baiduCredential(BaiduCredentialArgs.builder()
.baiduApiKey("string")
.baiduEndPoint("string")
.baiduSecretKey("string")
.build())
.browserCredential(BrowserCredentialArgs.builder()
.subject("string")
.vapidPrivateKey("string")
.vapidPublicKey("string")
.build())
.fcmV1Credential(FcmV1CredentialArgs.builder()
.clientEmail("string")
.privateKey("string")
.projectId("string")
.build())
.gcmCredential(GcmCredentialArgs.builder()
.googleApiKey("string")
.gcmEndpoint("string")
.build())
.mpnsCredential(MpnsCredentialArgs.builder()
.certificateKey("string")
.mpnsCertificate("string")
.thumbprint("string")
.build())
.wnsCredential(WnsCredentialArgs.builder()
.certificateKey("string")
.packageSid("string")
.secretKey("string")
.windowsLiveEndpoint("string")
.wnsCertificate("string")
.build())
.xiaomiCredential(XiaomiCredentialArgs.builder()
.appSecret("string")
.endpoint("string")
.build())
.build())
.provisioningState("string")
.publicNetworkAccess("string")
.replicationRegion("string")
.namespaceName("string")
.scaleUnit("string")
.location("string")
.status("string")
.tags(Map.of("string", "string"))
.zoneRedundancy("string")
.build());
examplenamespace_resource_resource_from_notificationhubs = azure_native.notificationhubs.Namespace("examplenamespaceResourceResourceFromNotificationhubs",
resource_group_name="string",
sku={
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": "string",
},
namespace_type="string",
data_center="string",
network_acls={
"ip_rules": [{
"ip_mask": "string",
"rights": ["string"],
}],
"public_network_rule": {
"rights": ["string"],
},
},
pns_credentials={
"adm_credential": {
"auth_token_url": "string",
"client_id": "string",
"client_secret": "string",
},
"apns_credential": {
"endpoint": "string",
"apns_certificate": "string",
"app_id": "string",
"app_name": "string",
"certificate_key": "string",
"key_id": "string",
"thumbprint": "string",
"token": "string",
},
"baidu_credential": {
"baidu_api_key": "string",
"baidu_end_point": "string",
"baidu_secret_key": "string",
},
"browser_credential": {
"subject": "string",
"vapid_private_key": "string",
"vapid_public_key": "string",
},
"fcm_v1_credential": {
"client_email": "string",
"private_key": "string",
"project_id": "string",
},
"gcm_credential": {
"google_api_key": "string",
"gcm_endpoint": "string",
},
"mpns_credential": {
"certificate_key": "string",
"mpns_certificate": "string",
"thumbprint": "string",
},
"wns_credential": {
"certificate_key": "string",
"package_sid": "string",
"secret_key": "string",
"windows_live_endpoint": "string",
"wns_certificate": "string",
},
"xiaomi_credential": {
"app_secret": "string",
"endpoint": "string",
},
},
provisioning_state="string",
public_network_access="string",
replication_region="string",
namespace_name="string",
scale_unit="string",
location="string",
status="string",
tags={
"string": "string",
},
zone_redundancy="string")
const examplenamespaceResourceResourceFromNotificationhubs = new azure_native.notificationhubs.Namespace("examplenamespaceResourceResourceFromNotificationhubs", {
resourceGroupName: "string",
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: "string",
},
namespaceType: "string",
dataCenter: "string",
networkAcls: {
ipRules: [{
ipMask: "string",
rights: ["string"],
}],
publicNetworkRule: {
rights: ["string"],
},
},
pnsCredentials: {
admCredential: {
authTokenUrl: "string",
clientId: "string",
clientSecret: "string",
},
apnsCredential: {
endpoint: "string",
apnsCertificate: "string",
appId: "string",
appName: "string",
certificateKey: "string",
keyId: "string",
thumbprint: "string",
token: "string",
},
baiduCredential: {
baiduApiKey: "string",
baiduEndPoint: "string",
baiduSecretKey: "string",
},
browserCredential: {
subject: "string",
vapidPrivateKey: "string",
vapidPublicKey: "string",
},
fcmV1Credential: {
clientEmail: "string",
privateKey: "string",
projectId: "string",
},
gcmCredential: {
googleApiKey: "string",
gcmEndpoint: "string",
},
mpnsCredential: {
certificateKey: "string",
mpnsCertificate: "string",
thumbprint: "string",
},
wnsCredential: {
certificateKey: "string",
packageSid: "string",
secretKey: "string",
windowsLiveEndpoint: "string",
wnsCertificate: "string",
},
xiaomiCredential: {
appSecret: "string",
endpoint: "string",
},
},
provisioningState: "string",
publicNetworkAccess: "string",
replicationRegion: "string",
namespaceName: "string",
scaleUnit: "string",
location: "string",
status: "string",
tags: {
string: "string",
},
zoneRedundancy: "string",
});
type: azure-native:notificationhubs:Namespace
properties:
dataCenter: string
location: string
namespaceName: string
namespaceType: string
networkAcls:
ipRules:
- ipMask: string
rights:
- string
publicNetworkRule:
rights:
- string
pnsCredentials:
admCredential:
authTokenUrl: string
clientId: string
clientSecret: string
apnsCredential:
apnsCertificate: string
appId: string
appName: string
certificateKey: string
endpoint: string
keyId: string
thumbprint: string
token: string
baiduCredential:
baiduApiKey: string
baiduEndPoint: string
baiduSecretKey: string
browserCredential:
subject: string
vapidPrivateKey: string
vapidPublicKey: string
fcmV1Credential:
clientEmail: string
privateKey: string
projectId: string
gcmCredential:
gcmEndpoint: string
googleApiKey: string
mpnsCredential:
certificateKey: string
mpnsCertificate: string
thumbprint: string
wnsCredential:
certificateKey: string
packageSid: string
secretKey: string
windowsLiveEndpoint: string
wnsCertificate: string
xiaomiCredential:
appSecret: string
endpoint: string
provisioningState: string
publicNetworkAccess: string
replicationRegion: string
resourceGroupName: string
scaleUnit: string
sku:
capacity: 0
family: string
name: string
size: string
tier: string
status: string
tags:
string: string
zoneRedundancy: string
Namespace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Namespace resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Notification Hubs. Inputs. Sku - The Sku description for a namespace
- Data
Center string - Deprecated.
- Location string
- The geo-location where the resource lives
- Namespace
Name string - Namespace name
- Namespace
Type string | Pulumi.Azure Native. Notification Hubs. Namespace Type - Defines values for NamespaceType.
- Network
Acls Pulumi.Azure Native. Notification Hubs. Inputs. Network Acls - A collection of network authorization rules.
- Pns
Credentials Pulumi.Azure Native. Notification Hubs. Inputs. Pns Credentials - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- Provisioning
State string | Pulumi.Azure Native. Notification Hubs. Operation Provisioning State - Defines values for OperationProvisioningState.
- Public
Network string | Pulumi.Access Azure Native. Notification Hubs. Public Network Access - Type of public network access.
- Replication
Region string | Pulumi.Azure Native. Notification Hubs. Replication Region - Allowed replication region
- Scale
Unit string - Gets or sets scaleUnit where the namespace gets created
- Status
string | Pulumi.
Azure Native. Notification Hubs. Namespace Status - Namespace status.
- Dictionary<string, string>
- Resource tags.
- Zone
Redundancy string | Pulumi.Azure Native. Notification Hubs. Zone Redundancy Preference - Namespace SKU name.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Sku
Args - The Sku description for a namespace
- Data
Center string - Deprecated.
- Location string
- The geo-location where the resource lives
- Namespace
Name string - Namespace name
- Namespace
Type string | NamespaceType - Defines values for NamespaceType.
- Network
Acls NetworkAcls Args - A collection of network authorization rules.
- Pns
Credentials PnsCredentials Args - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- Provisioning
State string | OperationProvisioning State - Defines values for OperationProvisioningState.
- Public
Network string | PublicAccess Network Access - Type of public network access.
- Replication
Region string | ReplicationRegion - Allowed replication region
- Scale
Unit string - Gets or sets scaleUnit where the namespace gets created
- Status
string | Namespace
Status - Namespace status.
- map[string]string
- Resource tags.
- Zone
Redundancy string | ZoneRedundancy Preference - Namespace SKU name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The Sku description for a namespace
- data
Center String - Deprecated.
- location String
- The geo-location where the resource lives
- namespace
Name String - Namespace name
- namespace
Type String | NamespaceType - Defines values for NamespaceType.
- network
Acls NetworkAcls - A collection of network authorization rules.
- pns
Credentials PnsCredentials - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- provisioning
State String | OperationProvisioning State - Defines values for OperationProvisioningState.
- public
Network String | PublicAccess Network Access - Type of public network access.
- replication
Region String | ReplicationRegion - Allowed replication region
- scale
Unit String - Gets or sets scaleUnit where the namespace gets created
- status
String | Namespace
Status - Namespace status.
- Map<String,String>
- Resource tags.
- zone
Redundancy String | ZoneRedundancy Preference - Namespace SKU name.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The Sku description for a namespace
- data
Center string - Deprecated.
- location string
- The geo-location where the resource lives
- namespace
Name string - Namespace name
- namespace
Type string | NamespaceType - Defines values for NamespaceType.
- network
Acls NetworkAcls - A collection of network authorization rules.
- pns
Credentials PnsCredentials - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- provisioning
State string | OperationProvisioning State - Defines values for OperationProvisioningState.
- public
Network string | PublicAccess Network Access - Type of public network access.
- replication
Region string | ReplicationRegion - Allowed replication region
- scale
Unit string - Gets or sets scaleUnit where the namespace gets created
- status
string | Namespace
Status - Namespace status.
- {[key: string]: string}
- Resource tags.
- zone
Redundancy string | ZoneRedundancy Preference - Namespace SKU name.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Sku
Args - The Sku description for a namespace
- data_
center str - Deprecated.
- location str
- The geo-location where the resource lives
- namespace_
name str - Namespace name
- namespace_
type str | NamespaceType - Defines values for NamespaceType.
- network_
acls NetworkAcls Args - A collection of network authorization rules.
- pns_
credentials PnsCredentials Args - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- provisioning_
state str | OperationProvisioning State - Defines values for OperationProvisioningState.
- public_
network_ str | Publicaccess Network Access - Type of public network access.
- replication_
region str | ReplicationRegion - Allowed replication region
- scale_
unit str - Gets or sets scaleUnit where the namespace gets created
- status
str | Namespace
Status - Namespace status.
- Mapping[str, str]
- Resource tags.
- zone_
redundancy str | ZoneRedundancy Preference - Namespace SKU name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- The Sku description for a namespace
- data
Center String - Deprecated.
- location String
- The geo-location where the resource lives
- namespace
Name String - Namespace name
- namespace
Type String | "Messaging" | "NotificationHub" - Defines values for NamespaceType.
- network
Acls Property Map - A collection of network authorization rules.
- pns
Credentials Property Map - Collection of Notification Hub or Notification Hub Namespace PNS credentials.
- provisioning
State String | "Unknown" | "InProgress" | "Succeeded" | "Failed" | "Canceled" | "Pending" | "Disabled" - Defines values for OperationProvisioningState.
- public
Network String | "Enabled" | "Disabled"Access - Type of public network access.
- replication
Region String | "Default" | "WestUs2" | "North Europe" | "Australia East" | "Brazil South" | "South East Asia" | "South Africa North" | "None" - Allowed replication region
- scale
Unit String - Gets or sets scaleUnit where the namespace gets created
- status String | "Created" | "Creating" | "Suspended" | "Deleting"
- Namespace status.
- Map<String>
- Resource tags.
- zone
Redundancy String | "Disabled" | "Enabled" - Namespace SKU name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
At string - Time when the namespace was created.
- Critical bool
- Gets or sets whether or not the namespace is set as Critical.
- Enabled bool
- Gets or sets whether or not the namespace is currently enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Azure Insights Metrics id.
- Name string
- The name of the resource
- Private
Endpoint List<Pulumi.Connections Azure Native. Notification Hubs. Outputs. Private Endpoint Connection Resource Response> - Private Endpoint Connections for namespace
- Region string
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- Service
Bus stringEndpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- Subscription
Id string - Namespace subscription id.
- System
Data Pulumi.Azure Native. Notification Hubs. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Updated
At string - Time when the namespace was updated.
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
At string - Time when the namespace was created.
- Critical bool
- Gets or sets whether or not the namespace is set as Critical.
- Enabled bool
- Gets or sets whether or not the namespace is currently enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Azure Insights Metrics id.
- Name string
- The name of the resource
- Private
Endpoint []PrivateConnections Endpoint Connection Resource Response - Private Endpoint Connections for namespace
- Region string
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- Service
Bus stringEndpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- Subscription
Id string - Namespace subscription id.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Updated
At string - Time when the namespace was updated.
- azure
Api StringVersion - The Azure API version of the resource.
- created
At String - Time when the namespace was created.
- critical Boolean
- Gets or sets whether or not the namespace is set as Critical.
- enabled Boolean
- Gets or sets whether or not the namespace is currently enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Azure Insights Metrics id.
- name String
- The name of the resource
- private
Endpoint List<PrivateConnections Endpoint Connection Resource Response> - Private Endpoint Connections for namespace
- region String
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- service
Bus StringEndpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- subscription
Id String - Namespace subscription id.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
At String - Time when the namespace was updated.
- azure
Api stringVersion - The Azure API version of the resource.
- created
At string - Time when the namespace was created.
- critical boolean
- Gets or sets whether or not the namespace is set as Critical.
- enabled boolean
- Gets or sets whether or not the namespace is currently enabled.
- id string
- The provider-assigned unique ID for this managed resource.
- metric
Id string - Azure Insights Metrics id.
- name string
- The name of the resource
- private
Endpoint PrivateConnections Endpoint Connection Resource Response[] - Private Endpoint Connections for namespace
- region string
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- service
Bus stringEndpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- subscription
Id string - Namespace subscription id.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
At string - Time when the namespace was updated.
- azure_
api_ strversion - The Azure API version of the resource.
- created_
at str - Time when the namespace was created.
- critical bool
- Gets or sets whether or not the namespace is set as Critical.
- enabled bool
- Gets or sets whether or not the namespace is currently enabled.
- id str
- The provider-assigned unique ID for this managed resource.
- metric_
id str - Azure Insights Metrics id.
- name str
- The name of the resource
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Resource Response] - Private Endpoint Connections for namespace
- region str
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- service_
bus_ strendpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- subscription_
id str - Namespace subscription id.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated_
at str - Time when the namespace was updated.
- azure
Api StringVersion - The Azure API version of the resource.
- created
At String - Time when the namespace was created.
- critical Boolean
- Gets or sets whether or not the namespace is set as Critical.
- enabled Boolean
- Gets or sets whether or not the namespace is currently enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Azure Insights Metrics id.
- name String
- The name of the resource
- private
Endpoint List<Property Map>Connections - Private Endpoint Connections for namespace
- region String
- Region. The value is always set to the same value as Namespace.Location, so we are deprecating this property.
- service
Bus StringEndpoint - Gets or sets endpoint you can use to perform NotificationHub operations.
- subscription
Id String - Namespace subscription id.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
At String - Time when the namespace was updated.
Supporting Types
AccessRights, AccessRightsArgs
- Manage
- Manage
- Send
- Send
- Listen
- Listen
- Access
Rights Manage - Manage
- Access
Rights Send - Send
- Access
Rights Listen - Listen
- Manage
- Manage
- Send
- Send
- Listen
- Listen
- Manage
- Manage
- Send
- Send
- Listen
- Listen
- MANAGE
- Manage
- SEND
- Send
- LISTEN
- Listen
- "Manage"
- Manage
- "Send"
- Send
- "Listen"
- Listen
AdmCredential, AdmCredentialArgs
- Auth
Token stringUrl - Gets or sets the URL of the authorization token.
- Client
Id string - Gets or sets the client identifier.
- Client
Secret string - Gets or sets the credential secret access key.
- Auth
Token stringUrl - Gets or sets the URL of the authorization token.
- Client
Id string - Gets or sets the client identifier.
- Client
Secret string - Gets or sets the credential secret access key.
- auth
Token StringUrl - Gets or sets the URL of the authorization token.
- client
Id String - Gets or sets the client identifier.
- client
Secret String - Gets or sets the credential secret access key.
- auth
Token stringUrl - Gets or sets the URL of the authorization token.
- client
Id string - Gets or sets the client identifier.
- client
Secret string - Gets or sets the credential secret access key.
- auth_
token_ strurl - Gets or sets the URL of the authorization token.
- client_
id str - Gets or sets the client identifier.
- client_
secret str - Gets or sets the credential secret access key.
- auth
Token StringUrl - Gets or sets the URL of the authorization token.
- client
Id String - Gets or sets the client identifier.
- client
Secret String - Gets or sets the credential secret access key.
AdmCredentialResponse, AdmCredentialResponseArgs
- Auth
Token stringUrl - Gets or sets the URL of the authorization token.
- Client
Id string - Gets or sets the client identifier.
- Client
Secret string - Gets or sets the credential secret access key.
- Auth
Token stringUrl - Gets or sets the URL of the authorization token.
- Client
Id string - Gets or sets the client identifier.
- Client
Secret string - Gets or sets the credential secret access key.
- auth
Token StringUrl - Gets or sets the URL of the authorization token.
- client
Id String - Gets or sets the client identifier.
- client
Secret String - Gets or sets the credential secret access key.
- auth
Token stringUrl - Gets or sets the URL of the authorization token.
- client
Id string - Gets or sets the client identifier.
- client
Secret string - Gets or sets the credential secret access key.
- auth_
token_ strurl - Gets or sets the URL of the authorization token.
- client_
id str - Gets or sets the client identifier.
- client_
secret str - Gets or sets the credential secret access key.
- auth
Token StringUrl - Gets or sets the URL of the authorization token.
- client
Id String - Gets or sets the client identifier.
- client
Secret String - Gets or sets the credential secret access key.
ApnsCredential, ApnsCredentialArgs
- Endpoint string
- Gets or sets the endpoint of this credential.
- Apns
Certificate string - Gets or sets the APNS certificate.
- App
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- App
Name string - Gets or sets the name of the application
- Certificate
Key string - Gets or sets the certificate key.
- Key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- Thumbprint string
- Gets or sets the APNS certificate Thumbprint
- Token string
- Gets or sets provider Authentication Token, obtained through your developer account
- Endpoint string
- Gets or sets the endpoint of this credential.
- Apns
Certificate string - Gets or sets the APNS certificate.
- App
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- App
Name string - Gets or sets the name of the application
- Certificate
Key string - Gets or sets the certificate key.
- Key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- Thumbprint string
- Gets or sets the APNS certificate Thumbprint
- Token string
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint String
- Gets or sets the endpoint of this credential.
- apns
Certificate String - Gets or sets the APNS certificate.
- app
Id String - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name String - Gets or sets the name of the application
- certificate
Key String - Gets or sets the certificate key.
- key
Id String - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint String
- Gets or sets the APNS certificate Thumbprint
- token String
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint string
- Gets or sets the endpoint of this credential.
- apns
Certificate string - Gets or sets the APNS certificate.
- app
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name string - Gets or sets the name of the application
- certificate
Key string - Gets or sets the certificate key.
- key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint string
- Gets or sets the APNS certificate Thumbprint
- token string
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint str
- Gets or sets the endpoint of this credential.
- apns_
certificate str - Gets or sets the APNS certificate.
- app_
id str - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app_
name str - Gets or sets the name of the application
- certificate_
key str - Gets or sets the certificate key.
- key_
id str - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint str
- Gets or sets the APNS certificate Thumbprint
- token str
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint String
- Gets or sets the endpoint of this credential.
- apns
Certificate String - Gets or sets the APNS certificate.
- app
Id String - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name String - Gets or sets the name of the application
- certificate
Key String - Gets or sets the certificate key.
- key
Id String - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint String
- Gets or sets the APNS certificate Thumbprint
- token String
- Gets or sets provider Authentication Token, obtained through your developer account
ApnsCredentialResponse, ApnsCredentialResponseArgs
- Endpoint string
- Gets or sets the endpoint of this credential.
- Apns
Certificate string - Gets or sets the APNS certificate.
- App
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- App
Name string - Gets or sets the name of the application
- Certificate
Key string - Gets or sets the certificate key.
- Key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- Thumbprint string
- Gets or sets the APNS certificate Thumbprint
- Token string
- Gets or sets provider Authentication Token, obtained through your developer account
- Endpoint string
- Gets or sets the endpoint of this credential.
- Apns
Certificate string - Gets or sets the APNS certificate.
- App
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- App
Name string - Gets or sets the name of the application
- Certificate
Key string - Gets or sets the certificate key.
- Key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- Thumbprint string
- Gets or sets the APNS certificate Thumbprint
- Token string
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint String
- Gets or sets the endpoint of this credential.
- apns
Certificate String - Gets or sets the APNS certificate.
- app
Id String - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name String - Gets or sets the name of the application
- certificate
Key String - Gets or sets the certificate key.
- key
Id String - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint String
- Gets or sets the APNS certificate Thumbprint
- token String
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint string
- Gets or sets the endpoint of this credential.
- apns
Certificate string - Gets or sets the APNS certificate.
- app
Id string - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name string - Gets or sets the name of the application
- certificate
Key string - Gets or sets the certificate key.
- key
Id string - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint string
- Gets or sets the APNS certificate Thumbprint
- token string
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint str
- Gets or sets the endpoint of this credential.
- apns_
certificate str - Gets or sets the APNS certificate.
- app_
id str - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app_
name str - Gets or sets the name of the application
- certificate_
key str - Gets or sets the certificate key.
- key_
id str - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint str
- Gets or sets the APNS certificate Thumbprint
- token str
- Gets or sets provider Authentication Token, obtained through your developer account
- endpoint String
- Gets or sets the endpoint of this credential.
- apns
Certificate String - Gets or sets the APNS certificate.
- app
Id String - Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- app
Name String - Gets or sets the name of the application
- certificate
Key String - Gets or sets the certificate key.
- key
Id String - Gets or sets a 10-character key identifier (kid) key, obtained from your developer account
- thumbprint String
- Gets or sets the APNS certificate Thumbprint
- token String
- Gets or sets provider Authentication Token, obtained through your developer account
BaiduCredential, BaiduCredentialArgs
- Baidu
Api stringKey - Gets or sets baidu Api Key.
- Baidu
End stringPoint - Gets or sets baidu Endpoint.
- Baidu
Secret stringKey - Gets or sets baidu Secret Key
- Baidu
Api stringKey - Gets or sets baidu Api Key.
- Baidu
End stringPoint - Gets or sets baidu Endpoint.
- Baidu
Secret stringKey - Gets or sets baidu Secret Key
- baidu
Api StringKey - Gets or sets baidu Api Key.
- baidu
End StringPoint - Gets or sets baidu Endpoint.
- baidu
Secret StringKey - Gets or sets baidu Secret Key
- baidu
Api stringKey - Gets or sets baidu Api Key.
- baidu
End stringPoint - Gets or sets baidu Endpoint.
- baidu
Secret stringKey - Gets or sets baidu Secret Key
- baidu_
api_ strkey - Gets or sets baidu Api Key.
- baidu_
end_ strpoint - Gets or sets baidu Endpoint.
- baidu_
secret_ strkey - Gets or sets baidu Secret Key
- baidu
Api StringKey - Gets or sets baidu Api Key.
- baidu
End StringPoint - Gets or sets baidu Endpoint.
- baidu
Secret StringKey - Gets or sets baidu Secret Key
BaiduCredentialResponse, BaiduCredentialResponseArgs
- Baidu
Api stringKey - Gets or sets baidu Api Key.
- Baidu
End stringPoint - Gets or sets baidu Endpoint.
- Baidu
Secret stringKey - Gets or sets baidu Secret Key
- Baidu
Api stringKey - Gets or sets baidu Api Key.
- Baidu
End stringPoint - Gets or sets baidu Endpoint.
- Baidu
Secret stringKey - Gets or sets baidu Secret Key
- baidu
Api StringKey - Gets or sets baidu Api Key.
- baidu
End StringPoint - Gets or sets baidu Endpoint.
- baidu
Secret StringKey - Gets or sets baidu Secret Key
- baidu
Api stringKey - Gets or sets baidu Api Key.
- baidu
End stringPoint - Gets or sets baidu Endpoint.
- baidu
Secret stringKey - Gets or sets baidu Secret Key
- baidu_
api_ strkey - Gets or sets baidu Api Key.
- baidu_
end_ strpoint - Gets or sets baidu Endpoint.
- baidu_
secret_ strkey - Gets or sets baidu Secret Key
- baidu
Api StringKey - Gets or sets baidu Api Key.
- baidu
End StringPoint - Gets or sets baidu Endpoint.
- baidu
Secret StringKey - Gets or sets baidu Secret Key
BrowserCredential, BrowserCredentialArgs
- Subject string
- Gets or sets web push subject.
- Vapid
Private stringKey - Gets or sets VAPID private key.
- Vapid
Public stringKey - Gets or sets VAPID public key.
- Subject string
- Gets or sets web push subject.
- Vapid
Private stringKey - Gets or sets VAPID private key.
- Vapid
Public stringKey - Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapid
Private StringKey - Gets or sets VAPID private key.
- vapid
Public StringKey - Gets or sets VAPID public key.
- subject string
- Gets or sets web push subject.
- vapid
Private stringKey - Gets or sets VAPID private key.
- vapid
Public stringKey - Gets or sets VAPID public key.
- subject str
- Gets or sets web push subject.
- vapid_
private_ strkey - Gets or sets VAPID private key.
- vapid_
public_ strkey - Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapid
Private StringKey - Gets or sets VAPID private key.
- vapid
Public StringKey - Gets or sets VAPID public key.
BrowserCredentialResponse, BrowserCredentialResponseArgs
- Subject string
- Gets or sets web push subject.
- Vapid
Private stringKey - Gets or sets VAPID private key.
- Vapid
Public stringKey - Gets or sets VAPID public key.
- Subject string
- Gets or sets web push subject.
- Vapid
Private stringKey - Gets or sets VAPID private key.
- Vapid
Public stringKey - Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapid
Private StringKey - Gets or sets VAPID private key.
- vapid
Public StringKey - Gets or sets VAPID public key.
- subject string
- Gets or sets web push subject.
- vapid
Private stringKey - Gets or sets VAPID private key.
- vapid
Public stringKey - Gets or sets VAPID public key.
- subject str
- Gets or sets web push subject.
- vapid_
private_ strkey - Gets or sets VAPID private key.
- vapid_
public_ strkey - Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapid
Private StringKey - Gets or sets VAPID private key.
- vapid
Public StringKey - Gets or sets VAPID public key.
FcmV1Credential, FcmV1CredentialArgs
- Client
Email string - Gets or sets client email.
- Private
Key string - Gets or sets private key.
- Project
Id string - Gets or sets project id.
- Client
Email string - Gets or sets client email.
- Private
Key string - Gets or sets private key.
- Project
Id string - Gets or sets project id.
- client
Email String - Gets or sets client email.
- private
Key String - Gets or sets private key.
- project
Id String - Gets or sets project id.
- client
Email string - Gets or sets client email.
- private
Key string - Gets or sets private key.
- project
Id string - Gets or sets project id.
- client_
email str - Gets or sets client email.
- private_
key str - Gets or sets private key.
- project_
id str - Gets or sets project id.
- client
Email String - Gets or sets client email.
- private
Key String - Gets or sets private key.
- project
Id String - Gets or sets project id.
FcmV1CredentialResponse, FcmV1CredentialResponseArgs
- Client
Email string - Gets or sets client email.
- Private
Key string - Gets or sets private key.
- Project
Id string - Gets or sets project id.
- Client
Email string - Gets or sets client email.
- Private
Key string - Gets or sets private key.
- Project
Id string - Gets or sets project id.
- client
Email String - Gets or sets client email.
- private
Key String - Gets or sets private key.
- project
Id String - Gets or sets project id.
- client
Email string - Gets or sets client email.
- private
Key string - Gets or sets private key.
- project
Id string - Gets or sets project id.
- client_
email str - Gets or sets client email.
- private_
key str - Gets or sets private key.
- project_
id str - Gets or sets project id.
- client
Email String - Gets or sets client email.
- private
Key String - Gets or sets private key.
- project
Id String - Gets or sets project id.
GcmCredential, GcmCredentialArgs
- Google
Api stringKey - Gets or sets the Google API key.
- Gcm
Endpoint string - Gets or sets the GCM endpoint.
- Google
Api stringKey - Gets or sets the Google API key.
- Gcm
Endpoint string - Gets or sets the GCM endpoint.
- google
Api StringKey - Gets or sets the Google API key.
- gcm
Endpoint String - Gets or sets the GCM endpoint.
- google
Api stringKey - Gets or sets the Google API key.
- gcm
Endpoint string - Gets or sets the GCM endpoint.
- google_
api_ strkey - Gets or sets the Google API key.
- gcm_
endpoint str - Gets or sets the GCM endpoint.
- google
Api StringKey - Gets or sets the Google API key.
- gcm
Endpoint String - Gets or sets the GCM endpoint.
GcmCredentialResponse, GcmCredentialResponseArgs
- Google
Api stringKey - Gets or sets the Google API key.
- Gcm
Endpoint string - Gets or sets the GCM endpoint.
- Google
Api stringKey - Gets or sets the Google API key.
- Gcm
Endpoint string - Gets or sets the GCM endpoint.
- google
Api StringKey - Gets or sets the Google API key.
- gcm
Endpoint String - Gets or sets the GCM endpoint.
- google
Api stringKey - Gets or sets the Google API key.
- gcm
Endpoint string - Gets or sets the GCM endpoint.
- google_
api_ strkey - Gets or sets the Google API key.
- gcm_
endpoint str - Gets or sets the GCM endpoint.
- google
Api StringKey - Gets or sets the Google API key.
- gcm
Endpoint String - Gets or sets the GCM endpoint.
IpRule, IpRuleArgs
IpRuleResponse, IpRuleResponseArgs
MpnsCredential, MpnsCredentialArgs
- Certificate
Key string - Gets or sets the certificate key for this credential.
- Mpns
Certificate string - Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- Certificate
Key string - Gets or sets the certificate key for this credential.
- Mpns
Certificate string - Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key String - Gets or sets the certificate key for this credential.
- mpns
Certificate String - Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key string - Gets or sets the certificate key for this credential.
- mpns
Certificate string - Gets or sets the MPNS certificate.
- thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificate_
key str - Gets or sets the certificate key for this credential.
- mpns_
certificate str - Gets or sets the MPNS certificate.
- thumbprint str
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key String - Gets or sets the certificate key for this credential.
- mpns
Certificate String - Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
MpnsCredentialResponse, MpnsCredentialResponseArgs
- Certificate
Key string - Gets or sets the certificate key for this credential.
- Mpns
Certificate string - Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- Certificate
Key string - Gets or sets the certificate key for this credential.
- Mpns
Certificate string - Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key String - Gets or sets the certificate key for this credential.
- mpns
Certificate String - Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key string - Gets or sets the certificate key for this credential.
- mpns
Certificate string - Gets or sets the MPNS certificate.
- thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificate_
key str - Gets or sets the certificate key for this credential.
- mpns_
certificate str - Gets or sets the MPNS certificate.
- thumbprint str
- Gets or sets the MPNS certificate Thumbprint
- certificate
Key String - Gets or sets the certificate key for this credential.
- mpns
Certificate String - Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
NamespaceStatus, NamespaceStatusArgs
- Created
- Created
- Creating
- Creating
- Suspended
- Suspended
- Deleting
- Deleting
- Namespace
Status Created - Created
- Namespace
Status Creating - Creating
- Namespace
Status Suspended - Suspended
- Namespace
Status Deleting - Deleting
- Created
- Created
- Creating
- Creating
- Suspended
- Suspended
- Deleting
- Deleting
- Created
- Created
- Creating
- Creating
- Suspended
- Suspended
- Deleting
- Deleting
- CREATED
- Created
- CREATING
- Creating
- SUSPENDED
- Suspended
- DELETING
- Deleting
- "Created"
- Created
- "Creating"
- Creating
- "Suspended"
- Suspended
- "Deleting"
- Deleting
NamespaceType, NamespaceTypeArgs
- Messaging
- Messaging
- Notification
Hub - NotificationHub
- Namespace
Type Messaging - Messaging
- Namespace
Type Notification Hub - NotificationHub
- Messaging
- Messaging
- Notification
Hub - NotificationHub
- Messaging
- Messaging
- Notification
Hub - NotificationHub
- MESSAGING
- Messaging
- NOTIFICATION_HUB
- NotificationHub
- "Messaging"
- Messaging
- "Notification
Hub" - NotificationHub
NetworkAcls, NetworkAclsArgs
- Ip
Rules List<Pulumi.Azure Native. Notification Hubs. Inputs. Ip Rule> - List of IP rules.
- Public
Network Pulumi.Rule Azure Native. Notification Hubs. Inputs. Public Internet Authorization Rule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- Ip
Rules []IpRule - List of IP rules.
- Public
Network PublicRule Internet Authorization Rule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules List<IpRule> - List of IP rules.
- public
Network PublicRule Internet Authorization Rule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules IpRule[] - List of IP rules.
- public
Network PublicRule Internet Authorization Rule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip_
rules Sequence[IpRule] - List of IP rules.
- public_
network_ Publicrule Internet Authorization Rule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules List<Property Map> - List of IP rules.
- public
Network Property MapRule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
NetworkAclsResponse, NetworkAclsResponseArgs
- Ip
Rules List<Pulumi.Azure Native. Notification Hubs. Inputs. Ip Rule Response> - List of IP rules.
- Public
Network Pulumi.Rule Azure Native. Notification Hubs. Inputs. Public Internet Authorization Rule Response - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- Ip
Rules []IpRule Response - List of IP rules.
- Public
Network PublicRule Internet Authorization Rule Response - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules List<IpRule Response> - List of IP rules.
- public
Network PublicRule Internet Authorization Rule Response - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules IpRule Response[] - List of IP rules.
- public
Network PublicRule Internet Authorization Rule Response - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip_
rules Sequence[IpRule Response] - List of IP rules.
- public_
network_ Publicrule Internet Authorization Rule Response - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
- ip
Rules List<Property Map> - List of IP rules.
- public
Network Property MapRule - A default (public Internet) network authorization rule, which contains rights if no other network rule matches.
OperationProvisioningState, OperationProvisioningStateArgs
- Unknown
- Unknown
- In
Progress - InProgress
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Pending
- Pending
- Disabled
- Disabled
- Operation
Provisioning State Unknown - Unknown
- Operation
Provisioning State In Progress - InProgress
- Operation
Provisioning State Succeeded - Succeeded
- Operation
Provisioning State Failed - Failed
- Operation
Provisioning State Canceled - Canceled
- Operation
Provisioning State Pending - Pending
- Operation
Provisioning State Disabled - Disabled
- Unknown
- Unknown
- In
Progress - InProgress
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Pending
- Pending
- Disabled
- Disabled
- Unknown
- Unknown
- In
Progress - InProgress
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Pending
- Pending
- Disabled
- Disabled
- UNKNOWN
- Unknown
- IN_PROGRESS
- InProgress
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- CANCELED
- Canceled
- PENDING
- Pending
- DISABLED
- Disabled
- "Unknown"
- Unknown
- "In
Progress" - InProgress
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Canceled"
- Canceled
- "Pending"
- Pending
- "Disabled"
- Disabled
PnsCredentials, PnsCredentialsArgs
- Adm
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential - Description of a NotificationHub AdmCredential.
- Apns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential - Description of a NotificationHub ApnsCredential.
- Baidu
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential - Description of a NotificationHub BaiduCredential.
- Browser
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential - Description of a NotificationHub BrowserCredential.
- Fcm
V1Credential Pulumi.Azure Native. Notification Hubs. Inputs. Fcm V1Credential - Description of a NotificationHub FcmV1Credential.
- Gcm
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential - Description of a NotificationHub GcmCredential.
- Mpns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential - Description of a NotificationHub MpnsCredential.
- Wns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential - Description of a NotificationHub WnsCredential.
- Xiaomi
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential - Description of a NotificationHub XiaomiCredential.
- Adm
Credential AdmCredential - Description of a NotificationHub AdmCredential.
- Apns
Credential ApnsCredential - Description of a NotificationHub ApnsCredential.
- Baidu
Credential BaiduCredential - Description of a NotificationHub BaiduCredential.
- Browser
Credential BrowserCredential - Description of a NotificationHub BrowserCredential.
- Fcm
V1Credential FcmV1Credential - Description of a NotificationHub FcmV1Credential.
- Gcm
Credential GcmCredential - Description of a NotificationHub GcmCredential.
- Mpns
Credential MpnsCredential - Description of a NotificationHub MpnsCredential.
- Wns
Credential WnsCredential - Description of a NotificationHub WnsCredential.
- Xiaomi
Credential XiaomiCredential - Description of a NotificationHub XiaomiCredential.
- adm
Credential AdmCredential - Description of a NotificationHub AdmCredential.
- apns
Credential ApnsCredential - Description of a NotificationHub ApnsCredential.
- baidu
Credential BaiduCredential - Description of a NotificationHub BaiduCredential.
- browser
Credential BrowserCredential - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential FcmV1Credential - Description of a NotificationHub FcmV1Credential.
- gcm
Credential GcmCredential - Description of a NotificationHub GcmCredential.
- mpns
Credential MpnsCredential - Description of a NotificationHub MpnsCredential.
- wns
Credential WnsCredential - Description of a NotificationHub WnsCredential.
- xiaomi
Credential XiaomiCredential - Description of a NotificationHub XiaomiCredential.
- adm
Credential AdmCredential - Description of a NotificationHub AdmCredential.
- apns
Credential ApnsCredential - Description of a NotificationHub ApnsCredential.
- baidu
Credential BaiduCredential - Description of a NotificationHub BaiduCredential.
- browser
Credential BrowserCredential - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential FcmV1Credential - Description of a NotificationHub FcmV1Credential.
- gcm
Credential GcmCredential - Description of a NotificationHub GcmCredential.
- mpns
Credential MpnsCredential - Description of a NotificationHub MpnsCredential.
- wns
Credential WnsCredential - Description of a NotificationHub WnsCredential.
- xiaomi
Credential XiaomiCredential - Description of a NotificationHub XiaomiCredential.
- adm_
credential AdmCredential - Description of a NotificationHub AdmCredential.
- apns_
credential ApnsCredential - Description of a NotificationHub ApnsCredential.
- baidu_
credential BaiduCredential - Description of a NotificationHub BaiduCredential.
- browser_
credential BrowserCredential - Description of a NotificationHub BrowserCredential.
- fcm_
v1_ Fcmcredential V1Credential - Description of a NotificationHub FcmV1Credential.
- gcm_
credential GcmCredential - Description of a NotificationHub GcmCredential.
- mpns_
credential MpnsCredential - Description of a NotificationHub MpnsCredential.
- wns_
credential WnsCredential - Description of a NotificationHub WnsCredential.
- xiaomi_
credential XiaomiCredential - Description of a NotificationHub XiaomiCredential.
- adm
Credential Property Map - Description of a NotificationHub AdmCredential.
- apns
Credential Property Map - Description of a NotificationHub ApnsCredential.
- baidu
Credential Property Map - Description of a NotificationHub BaiduCredential.
- browser
Credential Property Map - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential Property Map - Description of a NotificationHub FcmV1Credential.
- gcm
Credential Property Map - Description of a NotificationHub GcmCredential.
- mpns
Credential Property Map - Description of a NotificationHub MpnsCredential.
- wns
Credential Property Map - Description of a NotificationHub WnsCredential.
- xiaomi
Credential Property Map - Description of a NotificationHub XiaomiCredential.
PnsCredentialsResponse, PnsCredentialsResponseArgs
- Adm
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential Response - Description of a NotificationHub AdmCredential.
- Apns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential Response - Description of a NotificationHub ApnsCredential.
- Baidu
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential Response - Description of a NotificationHub BaiduCredential.
- Browser
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential Response - Description of a NotificationHub BrowserCredential.
- Fcm
V1Credential Pulumi.Azure Native. Notification Hubs. Inputs. Fcm V1Credential Response - Description of a NotificationHub FcmV1Credential.
- Gcm
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential Response - Description of a NotificationHub GcmCredential.
- Mpns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential Response - Description of a NotificationHub MpnsCredential.
- Wns
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential Response - Description of a NotificationHub WnsCredential.
- Xiaomi
Credential Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential Response - Description of a NotificationHub XiaomiCredential.
- Adm
Credential AdmCredential Response - Description of a NotificationHub AdmCredential.
- Apns
Credential ApnsCredential Response - Description of a NotificationHub ApnsCredential.
- Baidu
Credential BaiduCredential Response - Description of a NotificationHub BaiduCredential.
- Browser
Credential BrowserCredential Response - Description of a NotificationHub BrowserCredential.
- Fcm
V1Credential FcmV1Credential Response - Description of a NotificationHub FcmV1Credential.
- Gcm
Credential GcmCredential Response - Description of a NotificationHub GcmCredential.
- Mpns
Credential MpnsCredential Response - Description of a NotificationHub MpnsCredential.
- Wns
Credential WnsCredential Response - Description of a NotificationHub WnsCredential.
- Xiaomi
Credential XiaomiCredential Response - Description of a NotificationHub XiaomiCredential.
- adm
Credential AdmCredential Response - Description of a NotificationHub AdmCredential.
- apns
Credential ApnsCredential Response - Description of a NotificationHub ApnsCredential.
- baidu
Credential BaiduCredential Response - Description of a NotificationHub BaiduCredential.
- browser
Credential BrowserCredential Response - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential FcmV1Credential Response - Description of a NotificationHub FcmV1Credential.
- gcm
Credential GcmCredential Response - Description of a NotificationHub GcmCredential.
- mpns
Credential MpnsCredential Response - Description of a NotificationHub MpnsCredential.
- wns
Credential WnsCredential Response - Description of a NotificationHub WnsCredential.
- xiaomi
Credential XiaomiCredential Response - Description of a NotificationHub XiaomiCredential.
- adm
Credential AdmCredential Response - Description of a NotificationHub AdmCredential.
- apns
Credential ApnsCredential Response - Description of a NotificationHub ApnsCredential.
- baidu
Credential BaiduCredential Response - Description of a NotificationHub BaiduCredential.
- browser
Credential BrowserCredential Response - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential FcmV1Credential Response - Description of a NotificationHub FcmV1Credential.
- gcm
Credential GcmCredential Response - Description of a NotificationHub GcmCredential.
- mpns
Credential MpnsCredential Response - Description of a NotificationHub MpnsCredential.
- wns
Credential WnsCredential Response - Description of a NotificationHub WnsCredential.
- xiaomi
Credential XiaomiCredential Response - Description of a NotificationHub XiaomiCredential.
- adm_
credential AdmCredential Response - Description of a NotificationHub AdmCredential.
- apns_
credential ApnsCredential Response - Description of a NotificationHub ApnsCredential.
- baidu_
credential BaiduCredential Response - Description of a NotificationHub BaiduCredential.
- browser_
credential BrowserCredential Response - Description of a NotificationHub BrowserCredential.
- fcm_
v1_ Fcmcredential V1Credential Response - Description of a NotificationHub FcmV1Credential.
- gcm_
credential GcmCredential Response - Description of a NotificationHub GcmCredential.
- mpns_
credential MpnsCredential Response - Description of a NotificationHub MpnsCredential.
- wns_
credential WnsCredential Response - Description of a NotificationHub WnsCredential.
- xiaomi_
credential XiaomiCredential Response - Description of a NotificationHub XiaomiCredential.
- adm
Credential Property Map - Description of a NotificationHub AdmCredential.
- apns
Credential Property Map - Description of a NotificationHub ApnsCredential.
- baidu
Credential Property Map - Description of a NotificationHub BaiduCredential.
- browser
Credential Property Map - Description of a NotificationHub BrowserCredential.
- fcm
V1Credential Property Map - Description of a NotificationHub FcmV1Credential.
- gcm
Credential Property Map - Description of a NotificationHub GcmCredential.
- mpns
Credential Property Map - Description of a NotificationHub MpnsCredential.
- wns
Credential Property Map - Description of a NotificationHub WnsCredential.
- xiaomi
Credential Property Map - Description of a NotificationHub XiaomiCredential.
PrivateEndpointConnectionPropertiesResponse, PrivateEndpointConnectionPropertiesResponseArgs
- Group
Ids List<string> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- Private
Endpoint Pulumi.Azure Native. Notification Hubs. Inputs. Remote Private Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Notification Hubs. Inputs. Remote Private Link Service Connection State Response - State of the Private Link Service connection.
- Provisioning
State string - State of Private Endpoint Connection.
- Group
Ids []string - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- Private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- Private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- Provisioning
State string - State of Private Endpoint Connection.
- group
Ids List<String> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning
State String - State of Private Endpoint Connection.
- group
Ids string[] - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning
State string - State of Private Endpoint Connection.
- group_
ids Sequence[str] - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private_
endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private_
link_ Remoteservice_ connection_ state Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning_
state str - State of Private Endpoint Connection.
- group
Ids List<String> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint Property Map - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link Property MapService Connection State - State of the Private Link Service connection.
- provisioning
State String - State of Private Endpoint Connection.
PrivateEndpointConnectionResourceResponse, PrivateEndpointConnectionResourceResponseArgs
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Notification Hubs. Inputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Properties
Pulumi.
Azure Native. Notification Hubs. Inputs. Private Endpoint Connection Properties Response - Private Endpoint Connection properties.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Properties
Private
Endpoint Connection Properties Response - Private Endpoint Connection properties.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- properties
Private
Endpoint Connection Properties Response - Private Endpoint Connection properties.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- properties
Private
Endpoint Connection Properties Response - Private Endpoint Connection properties.
- id str
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- properties
Private
Endpoint Connection Properties Response - Private Endpoint Connection properties.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- properties Property Map
- Private Endpoint Connection properties.
PublicInternetAuthorizationRule, PublicInternetAuthorizationRuleArgs
- Rights
List<Union<string, Pulumi.
Azure Native. Notification Hubs. Access Rights>> - List of access rights.
- Rights []string
- List of access rights.
- rights
List<Either<String,Access
Rights>> - List of access rights.
- rights
(string | Access
Rights)[] - List of access rights.
- rights
Sequence[Union[str, Access
Rights]] - List of access rights.
- rights List<String | "Manage" | "Send" | "Listen">
- List of access rights.
PublicInternetAuthorizationRuleResponse, PublicInternetAuthorizationRuleResponseArgs
- Rights List<string>
- List of access rights.
- Rights []string
- List of access rights.
- rights List<String>
- List of access rights.
- rights string[]
- List of access rights.
- rights Sequence[str]
- List of access rights.
- rights List<String>
- List of access rights.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
RemotePrivateEndpointConnectionResponse, RemotePrivateEndpointConnectionResponseArgs
- Id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- Id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id String
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id str
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id String
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
RemotePrivateLinkServiceConnectionStateResponse, RemotePrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - Human-friendly description of required actions.
- Description string
- Human-friendly description.
- Status string
- State of Private Link Connection.
- Actions
Required string - Human-friendly description of required actions.
- Description string
- Human-friendly description.
- Status string
- State of Private Link Connection.
- actions
Required String - Human-friendly description of required actions.
- description String
- Human-friendly description.
- status String
- State of Private Link Connection.
- actions
Required string - Human-friendly description of required actions.
- description string
- Human-friendly description.
- status string
- State of Private Link Connection.
- actions_
required str - Human-friendly description of required actions.
- description str
- Human-friendly description.
- status str
- State of Private Link Connection.
- actions
Required String - Human-friendly description of required actions.
- description String
- Human-friendly description.
- status String
- State of Private Link Connection.
ReplicationRegion, ReplicationRegionArgs
- Default
- Default
- West
Us2 - WestUs2
- North
Europe - NorthEurope
- Australia
East - AustraliaEast
- Brazil
South - BrazilSouth
- South
East Asia - SouthEastAsia
- South
Africa North - SouthAfricaNorth
- None
- None
- Replication
Region Default - Default
- Replication
Region West Us2 - WestUs2
- Replication
Region North Europe - NorthEurope
- Replication
Region Australia East - AustraliaEast
- Replication
Region Brazil South - BrazilSouth
- Replication
Region South East Asia - SouthEastAsia
- Replication
Region South Africa North - SouthAfricaNorth
- Replication
Region None - None
- Default
- Default
- West
Us2 - WestUs2
- North
Europe - NorthEurope
- Australia
East - AustraliaEast
- Brazil
South - BrazilSouth
- South
East Asia - SouthEastAsia
- South
Africa North - SouthAfricaNorth
- None
- None
- Default
- Default
- West
Us2 - WestUs2
- North
Europe - NorthEurope
- Australia
East - AustraliaEast
- Brazil
South - BrazilSouth
- South
East Asia - SouthEastAsia
- South
Africa North - SouthAfricaNorth
- None
- None
- DEFAULT
- Default
- WEST_US2
- WestUs2
- NORTH_EUROPE
- NorthEurope
- AUSTRALIA_EAST
- AustraliaEast
- BRAZIL_SOUTH
- BrazilSouth
- SOUTH_EAST_ASIA
- SouthEastAsia
- SOUTH_AFRICA_NORTH
- SouthAfricaNorth
- NONE
- None
- "Default"
- Default
- "West
Us2" - WestUs2
- "North
Europe" - NorthEurope
- "Australia
East" - AustraliaEast
- "Brazil
South" - BrazilSouth
- "South
East Asia" - SouthEastAsia
- "South
Africa North" - SouthAfricaNorth
- "None"
- None
Sku, SkuArgs
SkuName, SkuNameArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Sku
Name Free - Free
- Sku
Name Basic - Basic
- Sku
Name Standard - Standard
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
SkuResponse, SkuResponseArgs
SystemDataResponse, SystemDataResponseArgs
- 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.
WnsCredential, WnsCredentialArgs
- Certificate
Key string - Ges or sets the WNS Certificate Key.
- Package
Sid string - Gets or sets the package ID for this credential.
- Secret
Key string - Gets or sets the secret key.
- Windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- Wns
Certificate string - Gets or sets the WNS Certificate.
- Certificate
Key string - Ges or sets the WNS Certificate Key.
- Package
Sid string - Gets or sets the package ID for this credential.
- Secret
Key string - Gets or sets the secret key.
- Windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- Wns
Certificate string - Gets or sets the WNS Certificate.
- certificate
Key String - Ges or sets the WNS Certificate Key.
- package
Sid String - Gets or sets the package ID for this credential.
- secret
Key String - Gets or sets the secret key.
- windows
Live StringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate String - Gets or sets the WNS Certificate.
- certificate
Key string - Ges or sets the WNS Certificate Key.
- package
Sid string - Gets or sets the package ID for this credential.
- secret
Key string - Gets or sets the secret key.
- windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate string - Gets or sets the WNS Certificate.
- certificate_
key str - Ges or sets the WNS Certificate Key.
- package_
sid str - Gets or sets the package ID for this credential.
- secret_
key str - Gets or sets the secret key.
- windows_
live_ strendpoint - Gets or sets the Windows Live endpoint.
- wns_
certificate str - Gets or sets the WNS Certificate.
- certificate
Key String - Ges or sets the WNS Certificate Key.
- package
Sid String - Gets or sets the package ID for this credential.
- secret
Key String - Gets or sets the secret key.
- windows
Live StringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate String - Gets or sets the WNS Certificate.
WnsCredentialResponse, WnsCredentialResponseArgs
- Certificate
Key string - Ges or sets the WNS Certificate Key.
- Package
Sid string - Gets or sets the package ID for this credential.
- Secret
Key string - Gets or sets the secret key.
- Windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- Wns
Certificate string - Gets or sets the WNS Certificate.
- Certificate
Key string - Ges or sets the WNS Certificate Key.
- Package
Sid string - Gets or sets the package ID for this credential.
- Secret
Key string - Gets or sets the secret key.
- Windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- Wns
Certificate string - Gets or sets the WNS Certificate.
- certificate
Key String - Ges or sets the WNS Certificate Key.
- package
Sid String - Gets or sets the package ID for this credential.
- secret
Key String - Gets or sets the secret key.
- windows
Live StringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate String - Gets or sets the WNS Certificate.
- certificate
Key string - Ges or sets the WNS Certificate Key.
- package
Sid string - Gets or sets the package ID for this credential.
- secret
Key string - Gets or sets the secret key.
- windows
Live stringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate string - Gets or sets the WNS Certificate.
- certificate_
key str - Ges or sets the WNS Certificate Key.
- package_
sid str - Gets or sets the package ID for this credential.
- secret_
key str - Gets or sets the secret key.
- windows_
live_ strendpoint - Gets or sets the Windows Live endpoint.
- wns_
certificate str - Gets or sets the WNS Certificate.
- certificate
Key String - Ges or sets the WNS Certificate Key.
- package
Sid String - Gets or sets the package ID for this credential.
- secret
Key String - Gets or sets the secret key.
- windows
Live StringEndpoint - Gets or sets the Windows Live endpoint.
- wns
Certificate String - Gets or sets the WNS Certificate.
XiaomiCredential, XiaomiCredentialArgs
- app_
secret str - Gets or sets app secret.
- endpoint str
- Gets or sets xiaomi service endpoint.
XiaomiCredentialResponse, XiaomiCredentialResponseArgs
- app_
secret str - Gets or sets app secret.
- endpoint str
- Gets or sets xiaomi service endpoint.
ZoneRedundancyPreference, ZoneRedundancyPreferenceArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Zone
Redundancy Preference Disabled - Disabled
- Zone
Redundancy Preference Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:notificationhubs:Namespace nh-sdk-ns /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NotificationHubs/namespaces/{namespaceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0