pns_credentials
Creates, updates, deletes, gets or lists a pns_credentials
resource.
Overview
Name | pns_credentials |
Type | Resource |
Id | azure.notification_hubs.pns_credentials |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
location | string | Deprecated - only for compatibility. |
properties | object | Collection of Notification Hub or Notification Hub Namespace PNS credentials. |
tags | object | Deprecated - only for compatibility. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , namespaceName , notificationHubName |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
namespaceName | string | Namespace name |
notificationHubName | string | Notification Hub name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Success
SELECT
location,
properties,
tags
FROM azure.notification_hubs.pns_credentials
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND notificationHubName = '{{ notificationHubName }}' -- required
;