![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.notificationhub.kotlin.AuthorizationRuleArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.notificationhub.kotlin
import com.pulumi.azure.notificationhub.AuthorizationRuleArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Manages an Authorization Rule associated with a Notification Hub within a Notification Hub Namespace.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "notificationhub-resources",
* location: "West Europe",
* });
* const exampleNamespace = new azure.notificationhub.Namespace("example", {
* name: "myappnamespace",
* resourceGroupName: example.name,
* location: example.location,
* namespaceType: "NotificationHub",
* skuName: "Free",
* });
* const exampleHub = new azure.notificationhub.Hub("example", {
* name: "mynotificationhub",
* namespaceName: exampleNamespace.name,
* resourceGroupName: example.name,
* location: example.location,
* });
* const exampleAuthorizationRule = new azure.notificationhub.AuthorizationRule("example", {
* name: "management-auth-rule",
* notificationHubName: exampleHub.name,
* namespaceName: exampleNamespace.name,
* resourceGroupName: example.name,
* manage: true,
* send: true,
* listen: true,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="notificationhub-resources",
* location="West Europe")
* example_namespace = azure.notificationhub.Namespace("example",
* name="myappnamespace",
* resource_group_name=example.name,
* location=example.location,
* namespace_type="NotificationHub",
* sku_name="Free")
* example_hub = azure.notificationhub.Hub("example",
* name="mynotificationhub",
* namespace_name=example_namespace.name,
* resource_group_name=example.name,
* location=example.location)
* example_authorization_rule = azure.notificationhub.AuthorizationRule("example",
* name="management-auth-rule",
* notification_hub_name=example_hub.name,
* namespace_name=example_namespace.name,
* resource_group_name=example.name,
* manage=True,
* send=True,
* listen=True)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "notificationhub-resources",
* Location = "West Europe",
* });
* var exampleNamespace = new Azure.NotificationHub.Namespace("example", new()
* {
* Name = "myappnamespace",
* ResourceGroupName = example.Name,
* Location = example.Location,
* NamespaceType = "NotificationHub",
* SkuName = "Free",
* });
* var exampleHub = new Azure.NotificationHub.Hub("example", new()
* {
* Name = "mynotificationhub",
* NamespaceName = exampleNamespace.Name,
* ResourceGroupName = example.Name,
* Location = example.Location,
* });
* var exampleAuthorizationRule = new Azure.NotificationHub.AuthorizationRule("example", new()
* {
* Name = "management-auth-rule",
* NotificationHubName = exampleHub.Name,
* NamespaceName = exampleNamespace.Name,
* ResourceGroupName = example.Name,
* Manage = true,
* Send = true,
* Listen = true,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/notificationhub"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("notificationhub-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleNamespace, err := notificationhub.NewNamespace(ctx, "example", ¬ificationhub.NamespaceArgs{
* Name: pulumi.String("myappnamespace"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* NamespaceType: pulumi.String("NotificationHub"),
* SkuName: pulumi.String("Free"),
* })
* if err != nil {
* return err
* }
* exampleHub, err := notificationhub.NewHub(ctx, "example", ¬ificationhub.HubArgs{
* Name: pulumi.String("mynotificationhub"),
* NamespaceName: exampleNamespace.Name,
* ResourceGroupName: example.Name,
* Location: example.Location,
* })
* if err != nil {
* return err
* }
* _, err = notificationhub.NewAuthorizationRule(ctx, "example", ¬ificationhub.AuthorizationRuleArgs{
* Name: pulumi.String("management-auth-rule"),
* NotificationHubName: exampleHub.Name,
* NamespaceName: exampleNamespace.Name,
* ResourceGroupName: example.Name,
* Manage: pulumi.Bool(true),
* Send: pulumi.Bool(true),
* Listen: pulumi.Bool(true),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.notificationhub.Namespace;
* import com.pulumi.azure.notificationhub.NamespaceArgs;
* import com.pulumi.azure.notificationhub.Hub;
* import com.pulumi.azure.notificationhub.HubArgs;
* import com.pulumi.azure.notificationhub.AuthorizationRule;
* import com.pulumi.azure.notificationhub.AuthorizationRuleArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("notificationhub-resources")
* .location("West Europe")
* .build());
* var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
* .name("myappnamespace")
* .resourceGroupName(example.name())
* .location(example.location())
* .namespaceType("NotificationHub")
* .skuName("Free")
* .build());
* var exampleHub = new Hub("exampleHub", HubArgs.builder()
* .name("mynotificationhub")
* .namespaceName(exampleNamespace.name())
* .resourceGroupName(example.name())
* .location(example.location())
* .build());
* var exampleAuthorizationRule = new AuthorizationRule("exampleAuthorizationRule", AuthorizationRuleArgs.builder()
* .name("management-auth-rule")
* .notificationHubName(exampleHub.name())
* .namespaceName(exampleNamespace.name())
* .resourceGroupName(example.name())
* .manage(true)
* .send(true)
* .listen(true)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: notificationhub-resources
* location: West Europe
* exampleNamespace:
* type: azure:notificationhub:Namespace
* name: example
* properties:
* name: myappnamespace
* resourceGroupName: ${example.name}
* location: ${example.location}
* namespaceType: NotificationHub
* skuName: Free
* exampleHub:
* type: azure:notificationhub:Hub
* name: example
* properties:
* name: mynotificationhub
* namespaceName: ${exampleNamespace.name}
* resourceGroupName: ${example.name}
* location: ${example.location}
* exampleAuthorizationRule:
* type: azure:notificationhub:AuthorizationRule
* name: example
* properties:
* name: management-auth-rule
* notificationHubName: ${exampleHub.name}
* namespaceName: ${exampleNamespace.name}
* resourceGroupName: ${example.name}
* manage: true
* send: true
* listen: true
* ```
*
* ## Import
* Notification Hub Authorization Rule can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:notificationhub/authorizationRule:AuthorizationRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.NotificationHubs/namespaces/namespace1/notificationHubs/hub1/authorizationRules/rule1
* ```
* @property listen Does this Authorization Rule have Listen access to the Notification Hub? Defaults to `false`.
* @property manage Does this Authorization Rule have Manage access to the Notification Hub? Defaults to `false`.
* > **NOTE:** If `manage` is set to `true` then both `send` and `listen` must also be set to `true`.
* @property name The name to use for this Authorization Rule. Changing this forces a new resource to be created.
* @property namespaceName The name of the Notification Hub Namespace in which the Notification Hub exists. Changing this forces a new resource to be created.
* @property notificationHubName The name of the Notification Hub for which the Authorization Rule should be created. Changing this forces a new resource to be created.
* @property resourceGroupName The name of the Resource Group in which the Notification Hub Namespace exists. Changing this forces a new resource to be created.
* @property send Does this Authorization Rule have Send access to the Notification Hub? Defaults to `false`.
*/
public data class AuthorizationRuleArgs(
public val listen: Output? = null,
public val manage: Output? = null,
public val name: Output? = null,
public val namespaceName: Output? = null,
public val notificationHubName: Output? = null,
public val resourceGroupName: Output? = null,
public val send: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.notificationhub.AuthorizationRuleArgs =
com.pulumi.azure.notificationhub.AuthorizationRuleArgs.builder()
.listen(listen?.applyValue({ args0 -> args0 }))
.manage(manage?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.namespaceName(namespaceName?.applyValue({ args0 -> args0 }))
.notificationHubName(notificationHubName?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.send(send?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AuthorizationRuleArgs].
*/
@PulumiTagMarker
public class AuthorizationRuleArgsBuilder internal constructor() {
private var listen: Output? = null
private var manage: Output? = null
private var name: Output? = null
private var namespaceName: Output? = null
private var notificationHubName: Output? = null
private var resourceGroupName: Output? = null
private var send: Output? = null
/**
* @param value Does this Authorization Rule have Listen access to the Notification Hub? Defaults to `false`.
*/
@JvmName("ooluuvbmciblrbes")
public suspend fun listen(`value`: Output) {
this.listen = value
}
/**
* @param value Does this Authorization Rule have Manage access to the Notification Hub? Defaults to `false`.
* > **NOTE:** If `manage` is set to `true` then both `send` and `listen` must also be set to `true`.
*/
@JvmName("oypmqeknyadikxmk")
public suspend fun manage(`value`: Output) {
this.manage = value
}
/**
* @param value The name to use for this Authorization Rule. Changing this forces a new resource to be created.
*/
@JvmName("sfaydisggnucpwes")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the Notification Hub Namespace in which the Notification Hub exists. Changing this forces a new resource to be created.
*/
@JvmName("aciclegxvgckxbly")
public suspend fun namespaceName(`value`: Output) {
this.namespaceName = value
}
/**
* @param value The name of the Notification Hub for which the Authorization Rule should be created. Changing this forces a new resource to be created.
*/
@JvmName("iqjerpxxjhpkxnrk")
public suspend fun notificationHubName(`value`: Output) {
this.notificationHubName = value
}
/**
* @param value The name of the Resource Group in which the Notification Hub Namespace exists. Changing this forces a new resource to be created.
*/
@JvmName("ungdiusjtnqcvxkb")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value Does this Authorization Rule have Send access to the Notification Hub? Defaults to `false`.
*/
@JvmName("brysrfnhtsniwegn")
public suspend fun send(`value`: Output) {
this.send = value
}
/**
* @param value Does this Authorization Rule have Listen access to the Notification Hub? Defaults to `false`.
*/
@JvmName("huipnwoldxifitpt")
public suspend fun listen(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.listen = mapped
}
/**
* @param value Does this Authorization Rule have Manage access to the Notification Hub? Defaults to `false`.
* > **NOTE:** If `manage` is set to `true` then both `send` and `listen` must also be set to `true`.
*/
@JvmName("hkbtchxokrhelgxf")
public suspend fun manage(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.manage = mapped
}
/**
* @param value The name to use for this Authorization Rule. Changing this forces a new resource to be created.
*/
@JvmName("mvjfqonfxfwvbjfe")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The name of the Notification Hub Namespace in which the Notification Hub exists. Changing this forces a new resource to be created.
*/
@JvmName("pvfvqmkvidaxpcpi")
public suspend fun namespaceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.namespaceName = mapped
}
/**
* @param value The name of the Notification Hub for which the Authorization Rule should be created. Changing this forces a new resource to be created.
*/
@JvmName("vdaanlpqlykphfqv")
public suspend fun notificationHubName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.notificationHubName = mapped
}
/**
* @param value The name of the Resource Group in which the Notification Hub Namespace exists. Changing this forces a new resource to be created.
*/
@JvmName("drhgcjenwcqajyvi")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value Does this Authorization Rule have Send access to the Notification Hub? Defaults to `false`.
*/
@JvmName("mpylxfkrqbdcroxq")
public suspend fun send(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.send = mapped
}
internal fun build(): AuthorizationRuleArgs = AuthorizationRuleArgs(
listen = listen,
manage = manage,
name = name,
namespaceName = namespaceName,
notificationHubName = notificationHubName,
resourceGroupName = resourceGroupName,
send = send,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy