The Set-AzNotificationHub cmdlet modifies the property values of a notification hub.
You can modify a notification hub property value in two ways.
For one, you can create an instance of the NotificationHubAttributes object and then configure that object with the property values you want the new hub to possess.
This can be done through the .NET Framework.
You can then copy those property values to your hub by through the NotificationHubObj parameter.
Alternatively, you can create a JSON (JavaScript Object Notation) file that contains the relevant configuration values, then apply those values by through the InputFile parameter.
A JSON file is a text file that uses syntax similar to the following:
{
"Name": "ContosoNotificationHub",
"Location": "West US",
}
When used in conjunction with the Set-AzNotificationHub cmdlet, the preceding JSON sample sets the Location value of a notification hub named ContosoNotificationHub to West US.
Examples
Example 1: Modify the property values for a notification hub
This command modifies the property values for a notification hub found in the ContosoNamespace namespace and assigned it to the resource group ContosoNotificationsGroup.
The property values, as well as the name of the hub to be modified, are not specified in the command.
Instead, that information is contained in the input file C:\Configuration\Hubs.json.
Example 2
Sets property values for a notification hub. (autogenerated)
Specifies the resource group to which the notification hub is assigned.
Resource groups organize items such as namespaces, notification hubs, and authorization rules in ways that help simply inventory management and Azure administration.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.