azure-native.notificationhubs.NotificationHub
Explore with Pulumi AI
Notification Hub Resource. Azure REST API version: 2023-01-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
Other available API versions: 2017-04-01, 2023-09-01, 2023-10-01-preview.
Example Usage
NotificationHubs_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var notificationHub = new AzureNative.NotificationHubs.NotificationHub("notificationHub", new()
    {
        Location = "eastus",
        NamespaceName = "nh-sdk-ns",
        NotificationHubName = "nh-sdk-hub",
        Properties = null,
        ResourceGroupName = "5ktrial",
    });
});
package main
import (
	notificationhubs "github.com/pulumi/pulumi-azure-native-sdk/notificationhubs/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := notificationhubs.NewNotificationHub(ctx, "notificationHub", ¬ificationhubs.NotificationHubArgs{
			Location:            pulumi.String("eastus"),
			NamespaceName:       pulumi.String("nh-sdk-ns"),
			NotificationHubName: pulumi.String("nh-sdk-hub"),
			Properties:          ¬ificationhubs.NotificationHubPropertiesArgs{},
			ResourceGroupName:   pulumi.String("5ktrial"),
		})
		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.NotificationHub;
import com.pulumi.azurenative.notificationhubs.NotificationHubArgs;
import com.pulumi.azurenative.notificationhubs.inputs.NotificationHubPropertiesArgs;
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 notificationHub = new NotificationHub("notificationHub", NotificationHubArgs.builder()
            .location("eastus")
            .namespaceName("nh-sdk-ns")
            .notificationHubName("nh-sdk-hub")
            .properties()
            .resourceGroupName("5ktrial")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const notificationHub = new azure_native.notificationhubs.NotificationHub("notificationHub", {
    location: "eastus",
    namespaceName: "nh-sdk-ns",
    notificationHubName: "nh-sdk-hub",
    properties: {},
    resourceGroupName: "5ktrial",
});
import pulumi
import pulumi_azure_native as azure_native
notification_hub = azure_native.notificationhubs.NotificationHub("notificationHub",
    location="eastus",
    namespace_name="nh-sdk-ns",
    notification_hub_name="nh-sdk-hub",
    properties={},
    resource_group_name="5ktrial")
resources:
  notificationHub:
    type: azure-native:notificationhubs:NotificationHub
    properties:
      location: eastus
      namespaceName: nh-sdk-ns
      notificationHubName: nh-sdk-hub
      properties: {}
      resourceGroupName: 5ktrial
Create NotificationHub Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NotificationHub(name: string, args: NotificationHubArgs, opts?: CustomResourceOptions);@overload
def NotificationHub(resource_name: str,
                    args: NotificationHubArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def NotificationHub(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    namespace_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    location: Optional[str] = None,
                    notification_hub_name: Optional[str] = None,
                    properties: Optional[NotificationHubPropertiesArgs] = None,
                    sku: Optional[SkuArgs] = None,
                    tags: Optional[Mapping[str, str]] = None)func NewNotificationHub(ctx *Context, name string, args NotificationHubArgs, opts ...ResourceOption) (*NotificationHub, error)public NotificationHub(string name, NotificationHubArgs args, CustomResourceOptions? opts = null)
public NotificationHub(String name, NotificationHubArgs args)
public NotificationHub(String name, NotificationHubArgs args, CustomResourceOptions options)
type: azure-native:notificationhubs:NotificationHub
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 NotificationHubArgs
- 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 NotificationHubArgs
- 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 NotificationHubArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NotificationHubArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NotificationHubArgs
- 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 notificationHubResource = new AzureNative.NotificationHubs.NotificationHub("notificationHubResource", new()
{
    NamespaceName = "string",
    ResourceGroupName = "string",
    Location = "string",
    NotificationHubName = "string",
    Properties = new AzureNative.NotificationHubs.Inputs.NotificationHubPropertiesArgs
    {
        AdmCredential = new AzureNative.NotificationHubs.Inputs.AdmCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.AdmCredentialPropertiesArgs
            {
                AuthTokenUrl = "string",
                ClientId = "string",
                ClientSecret = "string",
            },
        },
        ApnsCredential = new AzureNative.NotificationHubs.Inputs.ApnsCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.ApnsCredentialPropertiesArgs
            {
                Endpoint = "string",
                ApnsCertificate = "string",
                AppId = "string",
                AppName = "string",
                CertificateKey = "string",
                KeyId = "string",
                Thumbprint = "string",
                Token = "string",
            },
        },
        BaiduCredential = new AzureNative.NotificationHubs.Inputs.BaiduCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.BaiduCredentialPropertiesArgs
            {
                BaiduApiKey = "string",
                BaiduEndPoint = "string",
                BaiduSecretKey = "string",
            },
        },
        BrowserCredential = new AzureNative.NotificationHubs.Inputs.BrowserCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.BrowserCredentialPropertiesArgs
            {
                Subject = "string",
                VapidPrivateKey = "string",
                VapidPublicKey = "string",
            },
        },
        GcmCredential = new AzureNative.NotificationHubs.Inputs.GcmCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.GcmCredentialPropertiesArgs
            {
                GoogleApiKey = "string",
                GcmEndpoint = "string",
            },
        },
        MpnsCredential = new AzureNative.NotificationHubs.Inputs.MpnsCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.MpnsCredentialPropertiesArgs
            {
                CertificateKey = "string",
                MpnsCertificate = "string",
                Thumbprint = "string",
            },
        },
        Name = "string",
        RegistrationTtl = "string",
        WnsCredential = new AzureNative.NotificationHubs.Inputs.WnsCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.WnsCredentialPropertiesArgs
            {
                CertificateKey = "string",
                PackageSid = "string",
                SecretKey = "string",
                WindowsLiveEndpoint = "string",
                WnsCertificate = "string",
            },
        },
        XiaomiCredential = new AzureNative.NotificationHubs.Inputs.XiaomiCredentialArgs
        {
            Properties = new AzureNative.NotificationHubs.Inputs.XiaomiCredentialPropertiesArgs
            {
                AppSecret = "string",
                Endpoint = "string",
            },
        },
    },
    Sku = new AzureNative.NotificationHubs.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := notificationhubs.NewNotificationHub(ctx, "notificationHubResource", ¬ificationhubs.NotificationHubArgs{
	NamespaceName:       pulumi.String("string"),
	ResourceGroupName:   pulumi.String("string"),
	Location:            pulumi.String("string"),
	NotificationHubName: pulumi.String("string"),
	Properties: ¬ificationhubs.NotificationHubPropertiesArgs{
		AdmCredential: ¬ificationhubs.AdmCredentialArgs{
			Properties: ¬ificationhubs.AdmCredentialPropertiesArgs{
				AuthTokenUrl: pulumi.String("string"),
				ClientId:     pulumi.String("string"),
				ClientSecret: pulumi.String("string"),
			},
		},
		ApnsCredential: ¬ificationhubs.ApnsCredentialArgs{
			Properties: ¬ificationhubs.ApnsCredentialPropertiesArgs{
				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{
			Properties: ¬ificationhubs.BaiduCredentialPropertiesArgs{
				BaiduApiKey:    pulumi.String("string"),
				BaiduEndPoint:  pulumi.String("string"),
				BaiduSecretKey: pulumi.String("string"),
			},
		},
		BrowserCredential: ¬ificationhubs.BrowserCredentialArgs{
			Properties: ¬ificationhubs.BrowserCredentialPropertiesArgs{
				Subject:         pulumi.String("string"),
				VapidPrivateKey: pulumi.String("string"),
				VapidPublicKey:  pulumi.String("string"),
			},
		},
		GcmCredential: ¬ificationhubs.GcmCredentialArgs{
			Properties: ¬ificationhubs.GcmCredentialPropertiesArgs{
				GoogleApiKey: pulumi.String("string"),
				GcmEndpoint:  pulumi.String("string"),
			},
		},
		MpnsCredential: ¬ificationhubs.MpnsCredentialArgs{
			Properties: ¬ificationhubs.MpnsCredentialPropertiesArgs{
				CertificateKey:  pulumi.String("string"),
				MpnsCertificate: pulumi.String("string"),
				Thumbprint:      pulumi.String("string"),
			},
		},
		Name:            pulumi.String("string"),
		RegistrationTtl: pulumi.String("string"),
		WnsCredential: ¬ificationhubs.WnsCredentialArgs{
			Properties: ¬ificationhubs.WnsCredentialPropertiesArgs{
				CertificateKey:      pulumi.String("string"),
				PackageSid:          pulumi.String("string"),
				SecretKey:           pulumi.String("string"),
				WindowsLiveEndpoint: pulumi.String("string"),
				WnsCertificate:      pulumi.String("string"),
			},
		},
		XiaomiCredential: ¬ificationhubs.XiaomiCredentialArgs{
			Properties: ¬ificationhubs.XiaomiCredentialPropertiesArgs{
				AppSecret: pulumi.String("string"),
				Endpoint:  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"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var notificationHubResource = new NotificationHub("notificationHubResource", NotificationHubArgs.builder()
    .namespaceName("string")
    .resourceGroupName("string")
    .location("string")
    .notificationHubName("string")
    .properties(NotificationHubPropertiesArgs.builder()
        .admCredential(AdmCredentialArgs.builder()
            .properties(AdmCredentialPropertiesArgs.builder()
                .authTokenUrl("string")
                .clientId("string")
                .clientSecret("string")
                .build())
            .build())
        .apnsCredential(ApnsCredentialArgs.builder()
            .properties(ApnsCredentialPropertiesArgs.builder()
                .endpoint("string")
                .apnsCertificate("string")
                .appId("string")
                .appName("string")
                .certificateKey("string")
                .keyId("string")
                .thumbprint("string")
                .token("string")
                .build())
            .build())
        .baiduCredential(BaiduCredentialArgs.builder()
            .properties(BaiduCredentialPropertiesArgs.builder()
                .baiduApiKey("string")
                .baiduEndPoint("string")
                .baiduSecretKey("string")
                .build())
            .build())
        .browserCredential(BrowserCredentialArgs.builder()
            .properties(BrowserCredentialPropertiesArgs.builder()
                .subject("string")
                .vapidPrivateKey("string")
                .vapidPublicKey("string")
                .build())
            .build())
        .gcmCredential(GcmCredentialArgs.builder()
            .properties(GcmCredentialPropertiesArgs.builder()
                .googleApiKey("string")
                .gcmEndpoint("string")
                .build())
            .build())
        .mpnsCredential(MpnsCredentialArgs.builder()
            .properties(MpnsCredentialPropertiesArgs.builder()
                .certificateKey("string")
                .mpnsCertificate("string")
                .thumbprint("string")
                .build())
            .build())
        .name("string")
        .registrationTtl("string")
        .wnsCredential(WnsCredentialArgs.builder()
            .properties(WnsCredentialPropertiesArgs.builder()
                .certificateKey("string")
                .packageSid("string")
                .secretKey("string")
                .windowsLiveEndpoint("string")
                .wnsCertificate("string")
                .build())
            .build())
        .xiaomiCredential(XiaomiCredentialArgs.builder()
            .properties(XiaomiCredentialPropertiesArgs.builder()
                .appSecret("string")
                .endpoint("string")
                .build())
            .build())
        .build())
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
notification_hub_resource = azure_native.notificationhubs.NotificationHub("notificationHubResource",
    namespace_name="string",
    resource_group_name="string",
    location="string",
    notification_hub_name="string",
    properties={
        "adm_credential": {
            "properties": {
                "auth_token_url": "string",
                "client_id": "string",
                "client_secret": "string",
            },
        },
        "apns_credential": {
            "properties": {
                "endpoint": "string",
                "apns_certificate": "string",
                "app_id": "string",
                "app_name": "string",
                "certificate_key": "string",
                "key_id": "string",
                "thumbprint": "string",
                "token": "string",
            },
        },
        "baidu_credential": {
            "properties": {
                "baidu_api_key": "string",
                "baidu_end_point": "string",
                "baidu_secret_key": "string",
            },
        },
        "browser_credential": {
            "properties": {
                "subject": "string",
                "vapid_private_key": "string",
                "vapid_public_key": "string",
            },
        },
        "gcm_credential": {
            "properties": {
                "google_api_key": "string",
                "gcm_endpoint": "string",
            },
        },
        "mpns_credential": {
            "properties": {
                "certificate_key": "string",
                "mpns_certificate": "string",
                "thumbprint": "string",
            },
        },
        "name": "string",
        "registration_ttl": "string",
        "wns_credential": {
            "properties": {
                "certificate_key": "string",
                "package_sid": "string",
                "secret_key": "string",
                "windows_live_endpoint": "string",
                "wns_certificate": "string",
            },
        },
        "xiaomi_credential": {
            "properties": {
                "app_secret": "string",
                "endpoint": "string",
            },
        },
    },
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": "string",
    },
    tags={
        "string": "string",
    })
const notificationHubResource = new azure_native.notificationhubs.NotificationHub("notificationHubResource", {
    namespaceName: "string",
    resourceGroupName: "string",
    location: "string",
    notificationHubName: "string",
    properties: {
        admCredential: {
            properties: {
                authTokenUrl: "string",
                clientId: "string",
                clientSecret: "string",
            },
        },
        apnsCredential: {
            properties: {
                endpoint: "string",
                apnsCertificate: "string",
                appId: "string",
                appName: "string",
                certificateKey: "string",
                keyId: "string",
                thumbprint: "string",
                token: "string",
            },
        },
        baiduCredential: {
            properties: {
                baiduApiKey: "string",
                baiduEndPoint: "string",
                baiduSecretKey: "string",
            },
        },
        browserCredential: {
            properties: {
                subject: "string",
                vapidPrivateKey: "string",
                vapidPublicKey: "string",
            },
        },
        gcmCredential: {
            properties: {
                googleApiKey: "string",
                gcmEndpoint: "string",
            },
        },
        mpnsCredential: {
            properties: {
                certificateKey: "string",
                mpnsCertificate: "string",
                thumbprint: "string",
            },
        },
        name: "string",
        registrationTtl: "string",
        wnsCredential: {
            properties: {
                certificateKey: "string",
                packageSid: "string",
                secretKey: "string",
                windowsLiveEndpoint: "string",
                wnsCertificate: "string",
            },
        },
        xiaomiCredential: {
            properties: {
                appSecret: "string",
                endpoint: "string",
            },
        },
    },
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:notificationhubs:NotificationHub
properties:
    location: string
    namespaceName: string
    notificationHubName: string
    properties:
        admCredential:
            properties:
                authTokenUrl: string
                clientId: string
                clientSecret: string
        apnsCredential:
            properties:
                apnsCertificate: string
                appId: string
                appName: string
                certificateKey: string
                endpoint: string
                keyId: string
                thumbprint: string
                token: string
        baiduCredential:
            properties:
                baiduApiKey: string
                baiduEndPoint: string
                baiduSecretKey: string
        browserCredential:
            properties:
                subject: string
                vapidPrivateKey: string
                vapidPublicKey: string
        gcmCredential:
            properties:
                gcmEndpoint: string
                googleApiKey: string
        mpnsCredential:
            properties:
                certificateKey: string
                mpnsCertificate: string
                thumbprint: string
        name: string
        registrationTtl: string
        wnsCredential:
            properties:
                certificateKey: string
                packageSid: string
                secretKey: string
                windowsLiveEndpoint: string
                wnsCertificate: string
        xiaomiCredential:
            properties:
                appSecret: string
                endpoint: string
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: string
    tags:
        string: string
NotificationHub 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 NotificationHub resource accepts the following input properties:
- NamespaceName string
- Namespace name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- NotificationHub stringName 
- Notification Hub name
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Notification Hub Properties 
- NotificationHub properties.
- Sku
Pulumi.Azure Native. Notification Hubs. Inputs. Sku 
- The Sku description for a namespace
- Dictionary<string, string>
- Resource tags.
- NamespaceName string
- Namespace name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- NotificationHub stringName 
- Notification Hub name
- Properties
NotificationHub Properties Args 
- NotificationHub properties.
- Sku
SkuArgs 
- The Sku description for a namespace
- map[string]string
- Resource tags.
- namespaceName String
- Namespace name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- notificationHub StringName 
- Notification Hub name
- properties
NotificationHub Properties 
- NotificationHub properties.
- sku Sku
- The Sku description for a namespace
- Map<String,String>
- Resource tags.
- namespaceName string
- Namespace name
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- notificationHub stringName 
- Notification Hub name
- properties
NotificationHub Properties 
- NotificationHub properties.
- sku Sku
- The Sku description for a namespace
- {[key: string]: string}
- Resource tags.
- namespace_name str
- Namespace name
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- notification_hub_ strname 
- Notification Hub name
- properties
NotificationHub Properties Args 
- NotificationHub properties.
- sku
SkuArgs 
- The Sku description for a namespace
- Mapping[str, str]
- Resource tags.
- namespaceName String
- Namespace name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- notificationHub StringName 
- Notification Hub name
- properties Property Map
- NotificationHub properties.
- sku Property Map
- The Sku description for a namespace
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NotificationHub resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData 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"
- id str
- The provider-assigned unique ID for this managed resource.
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData 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"
Supporting Types
AdmCredential, AdmCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential Properties 
- Description of a NotificationHub AdmCredential.
- Properties
AdmCredential Properties 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties 
- Description of a NotificationHub AdmCredential.
- properties Property Map
- Description of a NotificationHub AdmCredential.
AdmCredentialProperties, AdmCredentialPropertiesArgs      
- AuthToken stringUrl 
- Gets or sets the URL of the authorization token.
- ClientId string
- Gets or sets the client identifier.
- ClientSecret string
- Gets or sets the credential secret access key.
- AuthToken stringUrl 
- Gets or sets the URL of the authorization token.
- ClientId string
- Gets or sets the client identifier.
- ClientSecret string
- Gets or sets the credential secret access key.
- authToken StringUrl 
- Gets or sets the URL of the authorization token.
- clientId String
- Gets or sets the client identifier.
- clientSecret String
- Gets or sets the credential secret access key.
- authToken stringUrl 
- Gets or sets the URL of the authorization token.
- clientId string
- Gets or sets the client identifier.
- clientSecret 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.
- authToken StringUrl 
- Gets or sets the URL of the authorization token.
- clientId String
- Gets or sets the client identifier.
- clientSecret String
- Gets or sets the credential secret access key.
AdmCredentialPropertiesResponse, AdmCredentialPropertiesResponseArgs        
- AuthToken stringUrl 
- Gets or sets the URL of the authorization token.
- ClientId string
- Gets or sets the client identifier.
- ClientSecret string
- Gets or sets the credential secret access key.
- AuthToken stringUrl 
- Gets or sets the URL of the authorization token.
- ClientId string
- Gets or sets the client identifier.
- ClientSecret string
- Gets or sets the credential secret access key.
- authToken StringUrl 
- Gets or sets the URL of the authorization token.
- clientId String
- Gets or sets the client identifier.
- clientSecret String
- Gets or sets the credential secret access key.
- authToken stringUrl 
- Gets or sets the URL of the authorization token.
- clientId string
- Gets or sets the client identifier.
- clientSecret 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.
- authToken StringUrl 
- Gets or sets the URL of the authorization token.
- clientId String
- Gets or sets the client identifier.
- clientSecret String
- Gets or sets the credential secret access key.
AdmCredentialResponse, AdmCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential Properties Response 
- Description of a NotificationHub AdmCredential.
- Properties
AdmCredential Properties Response 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties Response 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties Response 
- Description of a NotificationHub AdmCredential.
- properties
AdmCredential Properties Response 
- Description of a NotificationHub AdmCredential.
- properties Property Map
- Description of a NotificationHub AdmCredential.
ApnsCredential, ApnsCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential Properties 
- Description of a NotificationHub ApnsCredential.
- Properties
ApnsCredential Properties 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties 
- Description of a NotificationHub ApnsCredential.
- properties Property Map
- Description of a NotificationHub ApnsCredential.
ApnsCredentialProperties, ApnsCredentialPropertiesArgs      
- Endpoint string
- Gets or sets the endpoint of this credential.
- ApnsCertificate string
- Gets or sets the APNS certificate.
- AppId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- AppName string
- Gets or sets the name of the application
- CertificateKey string
- Gets or sets the certificate key.
- KeyId 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.
- ApnsCertificate string
- Gets or sets the APNS certificate.
- AppId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- AppName string
- Gets or sets the name of the application
- CertificateKey string
- Gets or sets the certificate key.
- KeyId 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.
- apnsCertificate String
- Gets or sets the APNS certificate.
- appId String
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName String
- Gets or sets the name of the application
- certificateKey String
- Gets or sets the certificate key.
- keyId 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.
- apnsCertificate string
- Gets or sets the APNS certificate.
- appId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName string
- Gets or sets the name of the application
- certificateKey string
- Gets or sets the certificate key.
- keyId 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.
- apnsCertificate String
- Gets or sets the APNS certificate.
- appId String
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName String
- Gets or sets the name of the application
- certificateKey String
- Gets or sets the certificate key.
- keyId 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
ApnsCredentialPropertiesResponse, ApnsCredentialPropertiesResponseArgs        
- Endpoint string
- Gets or sets the endpoint of this credential.
- ApnsCertificate string
- Gets or sets the APNS certificate.
- AppId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- AppName string
- Gets or sets the name of the application
- CertificateKey string
- Gets or sets the certificate key.
- KeyId 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.
- ApnsCertificate string
- Gets or sets the APNS certificate.
- AppId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- AppName string
- Gets or sets the name of the application
- CertificateKey string
- Gets or sets the certificate key.
- KeyId 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.
- apnsCertificate String
- Gets or sets the APNS certificate.
- appId String
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName String
- Gets or sets the name of the application
- certificateKey String
- Gets or sets the certificate key.
- keyId 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.
- apnsCertificate string
- Gets or sets the APNS certificate.
- appId string
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName string
- Gets or sets the name of the application
- certificateKey string
- Gets or sets the certificate key.
- keyId 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.
- apnsCertificate String
- Gets or sets the APNS certificate.
- appId String
- Gets or sets the issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account
- appName String
- Gets or sets the name of the application
- certificateKey String
- Gets or sets the certificate key.
- keyId 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      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential Properties Response 
- Description of a NotificationHub ApnsCredential.
- Properties
ApnsCredential Properties Response 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties Response 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties Response 
- Description of a NotificationHub ApnsCredential.
- properties
ApnsCredential Properties Response 
- Description of a NotificationHub ApnsCredential.
- properties Property Map
- Description of a NotificationHub ApnsCredential.
BaiduCredential, BaiduCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential Properties 
- Description of a NotificationHub BaiduCredential.
- Properties
BaiduCredential Properties 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties 
- Description of a NotificationHub BaiduCredential.
- properties Property Map
- Description of a NotificationHub BaiduCredential.
BaiduCredentialProperties, BaiduCredentialPropertiesArgs      
- BaiduApi stringKey 
- Gets or sets baidu Api Key.
- BaiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- BaiduSecret stringKey 
- Gets or sets baidu Secret Key
- BaiduApi stringKey 
- Gets or sets baidu Api Key.
- BaiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- BaiduSecret stringKey 
- Gets or sets baidu Secret Key
- baiduApi StringKey 
- Gets or sets baidu Api Key.
- baiduEnd StringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret StringKey 
- Gets or sets baidu Secret Key
- baiduApi stringKey 
- Gets or sets baidu Api Key.
- baiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret 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
- baiduApi StringKey 
- Gets or sets baidu Api Key.
- baiduEnd StringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret StringKey 
- Gets or sets baidu Secret Key
BaiduCredentialPropertiesResponse, BaiduCredentialPropertiesResponseArgs        
- BaiduApi stringKey 
- Gets or sets baidu Api Key.
- BaiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- BaiduSecret stringKey 
- Gets or sets baidu Secret Key
- BaiduApi stringKey 
- Gets or sets baidu Api Key.
- BaiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- BaiduSecret stringKey 
- Gets or sets baidu Secret Key
- baiduApi StringKey 
- Gets or sets baidu Api Key.
- baiduEnd StringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret StringKey 
- Gets or sets baidu Secret Key
- baiduApi stringKey 
- Gets or sets baidu Api Key.
- baiduEnd stringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret 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
- baiduApi StringKey 
- Gets or sets baidu Api Key.
- baiduEnd StringPoint 
- Gets or sets baidu Endpoint.
- baiduSecret StringKey 
- Gets or sets baidu Secret Key
BaiduCredentialResponse, BaiduCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential Properties Response 
- Description of a NotificationHub BaiduCredential.
- Properties
BaiduCredential Properties Response 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties Response 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties Response 
- Description of a NotificationHub BaiduCredential.
- properties
BaiduCredential Properties Response 
- Description of a NotificationHub BaiduCredential.
- properties Property Map
- Description of a NotificationHub BaiduCredential.
BrowserCredential, BrowserCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential Properties 
- Description of a NotificationHub BrowserCredential.
- Properties
BrowserCredential Properties 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties 
- Description of a NotificationHub BrowserCredential.
- properties Property Map
- Description of a NotificationHub BrowserCredential.
BrowserCredentialProperties, BrowserCredentialPropertiesArgs      
- Subject string
- Gets or sets web push subject.
- VapidPrivate stringKey 
- Gets or sets VAPID private key.
- VapidPublic stringKey 
- Gets or sets VAPID public key.
- Subject string
- Gets or sets web push subject.
- VapidPrivate stringKey 
- Gets or sets VAPID private key.
- VapidPublic stringKey 
- Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapidPrivate StringKey 
- Gets or sets VAPID private key.
- vapidPublic StringKey 
- Gets or sets VAPID public key.
- subject string
- Gets or sets web push subject.
- vapidPrivate stringKey 
- Gets or sets VAPID private key.
- vapidPublic 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.
- vapidPrivate StringKey 
- Gets or sets VAPID private key.
- vapidPublic StringKey 
- Gets or sets VAPID public key.
BrowserCredentialPropertiesResponse, BrowserCredentialPropertiesResponseArgs        
- Subject string
- Gets or sets web push subject.
- VapidPrivate stringKey 
- Gets or sets VAPID private key.
- VapidPublic stringKey 
- Gets or sets VAPID public key.
- Subject string
- Gets or sets web push subject.
- VapidPrivate stringKey 
- Gets or sets VAPID private key.
- VapidPublic stringKey 
- Gets or sets VAPID public key.
- subject String
- Gets or sets web push subject.
- vapidPrivate StringKey 
- Gets or sets VAPID private key.
- vapidPublic StringKey 
- Gets or sets VAPID public key.
- subject string
- Gets or sets web push subject.
- vapidPrivate stringKey 
- Gets or sets VAPID private key.
- vapidPublic 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.
- vapidPrivate StringKey 
- Gets or sets VAPID private key.
- vapidPublic StringKey 
- Gets or sets VAPID public key.
BrowserCredentialResponse, BrowserCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential Properties Response 
- Description of a NotificationHub BrowserCredential.
- Properties
BrowserCredential Properties Response 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties Response 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties Response 
- Description of a NotificationHub BrowserCredential.
- properties
BrowserCredential Properties Response 
- Description of a NotificationHub BrowserCredential.
- properties Property Map
- Description of a NotificationHub BrowserCredential.
GcmCredential, GcmCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential Properties 
- Description of a NotificationHub GcmCredential.
- Properties
GcmCredential Properties 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties 
- Description of a NotificationHub GcmCredential.
- properties Property Map
- Description of a NotificationHub GcmCredential.
GcmCredentialProperties, GcmCredentialPropertiesArgs      
- GoogleApi stringKey 
- Gets or sets the Google API key.
- GcmEndpoint string
- Gets or sets the GCM endpoint.
- GoogleApi stringKey 
- Gets or sets the Google API key.
- GcmEndpoint string
- Gets or sets the GCM endpoint.
- googleApi StringKey 
- Gets or sets the Google API key.
- gcmEndpoint String
- Gets or sets the GCM endpoint.
- googleApi stringKey 
- Gets or sets the Google API key.
- gcmEndpoint 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.
- googleApi StringKey 
- Gets or sets the Google API key.
- gcmEndpoint String
- Gets or sets the GCM endpoint.
GcmCredentialPropertiesResponse, GcmCredentialPropertiesResponseArgs        
- GoogleApi stringKey 
- Gets or sets the Google API key.
- GcmEndpoint string
- Gets or sets the GCM endpoint.
- GoogleApi stringKey 
- Gets or sets the Google API key.
- GcmEndpoint string
- Gets or sets the GCM endpoint.
- googleApi StringKey 
- Gets or sets the Google API key.
- gcmEndpoint String
- Gets or sets the GCM endpoint.
- googleApi stringKey 
- Gets or sets the Google API key.
- gcmEndpoint 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.
- googleApi StringKey 
- Gets or sets the Google API key.
- gcmEndpoint String
- Gets or sets the GCM endpoint.
GcmCredentialResponse, GcmCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential Properties Response 
- Description of a NotificationHub GcmCredential.
- Properties
GcmCredential Properties Response 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties Response 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties Response 
- Description of a NotificationHub GcmCredential.
- properties
GcmCredential Properties Response 
- Description of a NotificationHub GcmCredential.
- properties Property Map
- Description of a NotificationHub GcmCredential.
MpnsCredential, MpnsCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential Properties 
- Description of a NotificationHub MpnsCredential.
- Properties
MpnsCredential Properties 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties 
- Description of a NotificationHub MpnsCredential.
- properties Property Map
- Description of a NotificationHub MpnsCredential.
MpnsCredentialProperties, MpnsCredentialPropertiesArgs      
- CertificateKey string
- Gets or sets the certificate key for this credential.
- MpnsCertificate string
- Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- CertificateKey string
- Gets or sets the certificate key for this credential.
- MpnsCertificate string
- Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificateKey String
- Gets or sets the certificate key for this credential.
- mpnsCertificate String
- Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
- certificateKey string
- Gets or sets the certificate key for this credential.
- mpnsCertificate 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
- certificateKey String
- Gets or sets the certificate key for this credential.
- mpnsCertificate String
- Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
MpnsCredentialPropertiesResponse, MpnsCredentialPropertiesResponseArgs        
- CertificateKey string
- Gets or sets the certificate key for this credential.
- MpnsCertificate string
- Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- CertificateKey string
- Gets or sets the certificate key for this credential.
- MpnsCertificate string
- Gets or sets the MPNS certificate.
- Thumbprint string
- Gets or sets the MPNS certificate Thumbprint
- certificateKey String
- Gets or sets the certificate key for this credential.
- mpnsCertificate String
- Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
- certificateKey string
- Gets or sets the certificate key for this credential.
- mpnsCertificate 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
- certificateKey String
- Gets or sets the certificate key for this credential.
- mpnsCertificate String
- Gets or sets the MPNS certificate.
- thumbprint String
- Gets or sets the MPNS certificate Thumbprint
MpnsCredentialResponse, MpnsCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential Properties Response 
- Description of a NotificationHub MpnsCredential.
- Properties
MpnsCredential Properties Response 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties Response 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties Response 
- Description of a NotificationHub MpnsCredential.
- properties
MpnsCredential Properties Response 
- Description of a NotificationHub MpnsCredential.
- properties Property Map
- Description of a NotificationHub MpnsCredential.
NotificationHubProperties, NotificationHubPropertiesArgs      
- AdmCredential Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential 
- Description of a NotificationHub AdmCredential.
- ApnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential 
- Description of a NotificationHub ApnsCredential.
- BaiduCredential Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential 
- Description of a NotificationHub BaiduCredential.
- BrowserCredential Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential 
- Description of a NotificationHub BrowserCredential.
- GcmCredential Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential 
- Description of a NotificationHub GcmCredential.
- MpnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential 
- Description of a NotificationHub MpnsCredential.
- Name string
- Gets or sets the NotificationHub name.
- RegistrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- WnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential 
- Description of a NotificationHub WnsCredential.
- XiaomiCredential Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential 
- Description of a NotificationHub XiaomiCredential.
- AdmCredential AdmCredential 
- Description of a NotificationHub AdmCredential.
- ApnsCredential ApnsCredential 
- Description of a NotificationHub ApnsCredential.
- BaiduCredential BaiduCredential 
- Description of a NotificationHub BaiduCredential.
- BrowserCredential BrowserCredential 
- Description of a NotificationHub BrowserCredential.
- GcmCredential GcmCredential 
- Description of a NotificationHub GcmCredential.
- MpnsCredential MpnsCredential 
- Description of a NotificationHub MpnsCredential.
- Name string
- Gets or sets the NotificationHub name.
- RegistrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- WnsCredential WnsCredential 
- Description of a NotificationHub WnsCredential.
- XiaomiCredential XiaomiCredential 
- Description of a NotificationHub XiaomiCredential.
- admCredential AdmCredential 
- Description of a NotificationHub AdmCredential.
- apnsCredential ApnsCredential 
- Description of a NotificationHub ApnsCredential.
- baiduCredential BaiduCredential 
- Description of a NotificationHub BaiduCredential.
- browserCredential BrowserCredential 
- Description of a NotificationHub BrowserCredential.
- gcmCredential GcmCredential 
- Description of a NotificationHub GcmCredential.
- mpnsCredential MpnsCredential 
- Description of a NotificationHub MpnsCredential.
- name String
- Gets or sets the NotificationHub name.
- registrationTtl String
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential WnsCredential 
- Description of a NotificationHub WnsCredential.
- xiaomiCredential XiaomiCredential 
- Description of a NotificationHub XiaomiCredential.
- admCredential AdmCredential 
- Description of a NotificationHub AdmCredential.
- apnsCredential ApnsCredential 
- Description of a NotificationHub ApnsCredential.
- baiduCredential BaiduCredential 
- Description of a NotificationHub BaiduCredential.
- browserCredential BrowserCredential 
- Description of a NotificationHub BrowserCredential.
- gcmCredential GcmCredential 
- Description of a NotificationHub GcmCredential.
- mpnsCredential MpnsCredential 
- Description of a NotificationHub MpnsCredential.
- name string
- Gets or sets the NotificationHub name.
- registrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential WnsCredential 
- Description of a NotificationHub WnsCredential.
- xiaomiCredential 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.
- gcm_credential GcmCredential 
- Description of a NotificationHub GcmCredential.
- mpns_credential MpnsCredential 
- Description of a NotificationHub MpnsCredential.
- name str
- Gets or sets the NotificationHub name.
- registration_ttl str
- Gets or sets the RegistrationTtl of the created NotificationHub
- wns_credential WnsCredential 
- Description of a NotificationHub WnsCredential.
- xiaomi_credential XiaomiCredential 
- Description of a NotificationHub XiaomiCredential.
- admCredential Property Map
- Description of a NotificationHub AdmCredential.
- apnsCredential Property Map
- Description of a NotificationHub ApnsCredential.
- baiduCredential Property Map
- Description of a NotificationHub BaiduCredential.
- browserCredential Property Map
- Description of a NotificationHub BrowserCredential.
- gcmCredential Property Map
- Description of a NotificationHub GcmCredential.
- mpnsCredential Property Map
- Description of a NotificationHub MpnsCredential.
- name String
- Gets or sets the NotificationHub name.
- registrationTtl String
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential Property Map
- Description of a NotificationHub WnsCredential.
- xiaomiCredential Property Map
- Description of a NotificationHub XiaomiCredential.
NotificationHubPropertiesResponse, NotificationHubPropertiesResponseArgs        
- 
List<Pulumi.Azure Native. Notification Hubs. Inputs. Shared Access Authorization Rule Properties Response> 
- Gets or sets the AuthorizationRules of the created NotificationHub
- DailyMax doubleActive Devices 
- AdmCredential Pulumi.Azure Native. Notification Hubs. Inputs. Adm Credential Response 
- Description of a NotificationHub AdmCredential.
- ApnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Apns Credential Response 
- Description of a NotificationHub ApnsCredential.
- BaiduCredential Pulumi.Azure Native. Notification Hubs. Inputs. Baidu Credential Response 
- Description of a NotificationHub BaiduCredential.
- BrowserCredential Pulumi.Azure Native. Notification Hubs. Inputs. Browser Credential Response 
- Description of a NotificationHub BrowserCredential.
- GcmCredential Pulumi.Azure Native. Notification Hubs. Inputs. Gcm Credential Response 
- Description of a NotificationHub GcmCredential.
- MpnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Mpns Credential Response 
- Description of a NotificationHub MpnsCredential.
- Name string
- Gets or sets the NotificationHub name.
- RegistrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- WnsCredential Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential Response 
- Description of a NotificationHub WnsCredential.
- XiaomiCredential Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential Response 
- Description of a NotificationHub XiaomiCredential.
- 
[]SharedAccess Authorization Rule Properties Response 
- Gets or sets the AuthorizationRules of the created NotificationHub
- DailyMax float64Active Devices 
- AdmCredential AdmCredential Response 
- Description of a NotificationHub AdmCredential.
- ApnsCredential ApnsCredential Response 
- Description of a NotificationHub ApnsCredential.
- BaiduCredential BaiduCredential Response 
- Description of a NotificationHub BaiduCredential.
- BrowserCredential BrowserCredential Response 
- Description of a NotificationHub BrowserCredential.
- GcmCredential GcmCredential Response 
- Description of a NotificationHub GcmCredential.
- MpnsCredential MpnsCredential Response 
- Description of a NotificationHub MpnsCredential.
- Name string
- Gets or sets the NotificationHub name.
- RegistrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- WnsCredential WnsCredential Response 
- Description of a NotificationHub WnsCredential.
- XiaomiCredential XiaomiCredential Response 
- Description of a NotificationHub XiaomiCredential.
- 
List<SharedAccess Authorization Rule Properties Response> 
- Gets or sets the AuthorizationRules of the created NotificationHub
- dailyMax DoubleActive Devices 
- admCredential AdmCredential Response 
- Description of a NotificationHub AdmCredential.
- apnsCredential ApnsCredential Response 
- Description of a NotificationHub ApnsCredential.
- baiduCredential BaiduCredential Response 
- Description of a NotificationHub BaiduCredential.
- browserCredential BrowserCredential Response 
- Description of a NotificationHub BrowserCredential.
- gcmCredential GcmCredential Response 
- Description of a NotificationHub GcmCredential.
- mpnsCredential MpnsCredential Response 
- Description of a NotificationHub MpnsCredential.
- name String
- Gets or sets the NotificationHub name.
- registrationTtl String
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential WnsCredential Response 
- Description of a NotificationHub WnsCredential.
- xiaomiCredential XiaomiCredential Response 
- Description of a NotificationHub XiaomiCredential.
- 
SharedAccess Authorization Rule Properties Response[] 
- Gets or sets the AuthorizationRules of the created NotificationHub
- dailyMax numberActive Devices 
- admCredential AdmCredential Response 
- Description of a NotificationHub AdmCredential.
- apnsCredential ApnsCredential Response 
- Description of a NotificationHub ApnsCredential.
- baiduCredential BaiduCredential Response 
- Description of a NotificationHub BaiduCredential.
- browserCredential BrowserCredential Response 
- Description of a NotificationHub BrowserCredential.
- gcmCredential GcmCredential Response 
- Description of a NotificationHub GcmCredential.
- mpnsCredential MpnsCredential Response 
- Description of a NotificationHub MpnsCredential.
- name string
- Gets or sets the NotificationHub name.
- registrationTtl string
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential WnsCredential Response 
- Description of a NotificationHub WnsCredential.
- xiaomiCredential XiaomiCredential Response 
- Description of a NotificationHub XiaomiCredential.
- 
Sequence[SharedAccess Authorization Rule Properties Response] 
- Gets or sets the AuthorizationRules of the created NotificationHub
- daily_max_ floatactive_ devices 
- 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.
- gcm_credential GcmCredential Response 
- Description of a NotificationHub GcmCredential.
- mpns_credential MpnsCredential Response 
- Description of a NotificationHub MpnsCredential.
- name str
- Gets or sets the NotificationHub name.
- registration_ttl str
- Gets or sets the RegistrationTtl of the created NotificationHub
- wns_credential WnsCredential Response 
- Description of a NotificationHub WnsCredential.
- xiaomi_credential XiaomiCredential Response 
- Description of a NotificationHub XiaomiCredential.
- List<Property Map>
- Gets or sets the AuthorizationRules of the created NotificationHub
- dailyMax NumberActive Devices 
- admCredential Property Map
- Description of a NotificationHub AdmCredential.
- apnsCredential Property Map
- Description of a NotificationHub ApnsCredential.
- baiduCredential Property Map
- Description of a NotificationHub BaiduCredential.
- browserCredential Property Map
- Description of a NotificationHub BrowserCredential.
- gcmCredential Property Map
- Description of a NotificationHub GcmCredential.
- mpnsCredential Property Map
- Description of a NotificationHub MpnsCredential.
- name String
- Gets or sets the NotificationHub name.
- registrationTtl String
- Gets or sets the RegistrationTtl of the created NotificationHub
- wnsCredential Property Map
- Description of a NotificationHub WnsCredential.
- xiaomiCredential Property Map
- Description of a NotificationHub XiaomiCredential.
SharedAccessAuthorizationRulePropertiesResponse, SharedAccessAuthorizationRulePropertiesResponseArgs            
- ClaimType string
- Gets a string that describes the claim type
- ClaimValue string
- Gets a string that describes the claim value
- CreatedTime string
- Gets the created time for this rule
- KeyName string
- Gets a string that describes the authorization rule.
- ModifiedTime string
- Gets the last modified time for this rule
- Revision int
- Gets the revision number for the rule
- Rights List<string>
- Gets or sets the rights associated with the rule.
- PrimaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- SecondaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- ClaimType string
- Gets a string that describes the claim type
- ClaimValue string
- Gets a string that describes the claim value
- CreatedTime string
- Gets the created time for this rule
- KeyName string
- Gets a string that describes the authorization rule.
- ModifiedTime string
- Gets the last modified time for this rule
- Revision int
- Gets the revision number for the rule
- Rights []string
- Gets or sets the rights associated with the rule.
- PrimaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- SecondaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- claimType String
- Gets a string that describes the claim type
- claimValue String
- Gets a string that describes the claim value
- createdTime String
- Gets the created time for this rule
- keyName String
- Gets a string that describes the authorization rule.
- modifiedTime String
- Gets the last modified time for this rule
- revision Integer
- Gets the revision number for the rule
- rights List<String>
- Gets or sets the rights associated with the rule.
- primaryKey String
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- secondaryKey String
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- claimType string
- Gets a string that describes the claim type
- claimValue string
- Gets a string that describes the claim value
- createdTime string
- Gets the created time for this rule
- keyName string
- Gets a string that describes the authorization rule.
- modifiedTime string
- Gets the last modified time for this rule
- revision number
- Gets the revision number for the rule
- rights string[]
- Gets or sets the rights associated with the rule.
- primaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- secondaryKey string
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- claim_type str
- Gets a string that describes the claim type
- claim_value str
- Gets a string that describes the claim value
- created_time str
- Gets the created time for this rule
- key_name str
- Gets a string that describes the authorization rule.
- modified_time str
- Gets the last modified time for this rule
- revision int
- Gets the revision number for the rule
- rights Sequence[str]
- Gets or sets the rights associated with the rule.
- primary_key str
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- secondary_key str
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- claimType String
- Gets a string that describes the claim type
- claimValue String
- Gets a string that describes the claim value
- createdTime String
- Gets the created time for this rule
- keyName String
- Gets a string that describes the authorization rule.
- modifiedTime String
- Gets the last modified time for this rule
- revision Number
- Gets the revision number for the rule
- rights List<String>
- Gets or sets the rights associated with the rule.
- primaryKey String
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
- secondaryKey String
- Gets a base64-encoded 256-bit primary key for signing and validating the SAS token.
Sku, SkuArgs  
SkuName, SkuNameArgs    
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- SkuName Free 
- Free
- SkuName Basic 
- Basic
- SkuName 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      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
WnsCredential, WnsCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential Properties 
- Description of a NotificationHub WnsCredential.
- Properties
WnsCredential Properties 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties 
- Description of a NotificationHub WnsCredential.
- properties Property Map
- Description of a NotificationHub WnsCredential.
WnsCredentialProperties, WnsCredentialPropertiesArgs      
- CertificateKey string
- Ges or sets the WNS Certificate Key.
- PackageSid string
- Gets or sets the package ID for this credential.
- SecretKey string
- Gets or sets the secret key.
- WindowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- WnsCertificate string
- Gets or sets the WNS Certificate.
- CertificateKey string
- Ges or sets the WNS Certificate Key.
- PackageSid string
- Gets or sets the package ID for this credential.
- SecretKey string
- Gets or sets the secret key.
- WindowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- WnsCertificate string
- Gets or sets the WNS Certificate.
- certificateKey String
- Ges or sets the WNS Certificate Key.
- packageSid String
- Gets or sets the package ID for this credential.
- secretKey String
- Gets or sets the secret key.
- windowsLive StringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate String
- Gets or sets the WNS Certificate.
- certificateKey string
- Ges or sets the WNS Certificate Key.
- packageSid string
- Gets or sets the package ID for this credential.
- secretKey string
- Gets or sets the secret key.
- windowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate 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.
- certificateKey String
- Ges or sets the WNS Certificate Key.
- packageSid String
- Gets or sets the package ID for this credential.
- secretKey String
- Gets or sets the secret key.
- windowsLive StringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate String
- Gets or sets the WNS Certificate.
WnsCredentialPropertiesResponse, WnsCredentialPropertiesResponseArgs        
- CertificateKey string
- Ges or sets the WNS Certificate Key.
- PackageSid string
- Gets or sets the package ID for this credential.
- SecretKey string
- Gets or sets the secret key.
- WindowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- WnsCertificate string
- Gets or sets the WNS Certificate.
- CertificateKey string
- Ges or sets the WNS Certificate Key.
- PackageSid string
- Gets or sets the package ID for this credential.
- SecretKey string
- Gets or sets the secret key.
- WindowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- WnsCertificate string
- Gets or sets the WNS Certificate.
- certificateKey String
- Ges or sets the WNS Certificate Key.
- packageSid String
- Gets or sets the package ID for this credential.
- secretKey String
- Gets or sets the secret key.
- windowsLive StringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate String
- Gets or sets the WNS Certificate.
- certificateKey string
- Ges or sets the WNS Certificate Key.
- packageSid string
- Gets or sets the package ID for this credential.
- secretKey string
- Gets or sets the secret key.
- windowsLive stringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate 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.
- certificateKey String
- Ges or sets the WNS Certificate Key.
- packageSid String
- Gets or sets the package ID for this credential.
- secretKey String
- Gets or sets the secret key.
- windowsLive StringEndpoint 
- Gets or sets the Windows Live endpoint.
- wnsCertificate String
- Gets or sets the WNS Certificate.
WnsCredentialResponse, WnsCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Wns Credential Properties Response 
- Description of a NotificationHub WnsCredential.
- Properties
WnsCredential Properties Response 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties Response 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties Response 
- Description of a NotificationHub WnsCredential.
- properties
WnsCredential Properties Response 
- Description of a NotificationHub WnsCredential.
- properties Property Map
- Description of a NotificationHub WnsCredential.
XiaomiCredential, XiaomiCredentialArgs    
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential Properties 
- Description of a NotificationHub XiaomiCredentialProperties.
- Properties
XiaomiCredential Properties 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties Property Map
- Description of a NotificationHub XiaomiCredentialProperties.
XiaomiCredentialProperties, XiaomiCredentialPropertiesArgs      
- app_secret str
- Gets or sets app secret.
- endpoint str
- Gets or sets xiaomi service endpoint.
XiaomiCredentialPropertiesResponse, XiaomiCredentialPropertiesResponseArgs        
- app_secret str
- Gets or sets app secret.
- endpoint str
- Gets or sets xiaomi service endpoint.
XiaomiCredentialResponse, XiaomiCredentialResponseArgs      
- Properties
Pulumi.Azure Native. Notification Hubs. Inputs. Xiaomi Credential Properties Response 
- Description of a NotificationHub XiaomiCredentialProperties.
- Properties
XiaomiCredential Properties Response 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties Response 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties Response 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties
XiaomiCredential Properties Response 
- Description of a NotificationHub XiaomiCredentialProperties.
- properties Property Map
- Description of a NotificationHub XiaomiCredentialProperties.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:notificationhubs:NotificationHub test /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NotificationHubs/namespaces/{namespaceName}/notificationHubs/{notificationHubName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0