All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.eventhub.TopicAuthorizationRuleArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azure.eventhub;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class TopicAuthorizationRuleArgs extends com.pulumi.resources.ResourceArgs {

    public static final TopicAuthorizationRuleArgs Empty = new TopicAuthorizationRuleArgs();

    /**
     * Grants listen access to this this Authorization Rule. Defaults to `false`.
     * 
     */
    @Import(name="listen")
    private @Nullable Output listen;

    /**
     * @return Grants listen access to this this Authorization Rule. Defaults to `false`.
     * 
     */
    public Optional> listen() {
        return Optional.ofNullable(this.listen);
    }

    /**
     * Grants manage access to this this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`.
     * 
     */
    @Import(name="manage")
    private @Nullable Output manage;

    /**
     * @return Grants manage access to this this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`.
     * 
     */
    public Optional> manage() {
        return Optional.ofNullable(this.manage);
    }

    /**
     * Specifies the name of the ServiceBus Topic Authorization Rule resource. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of the ServiceBus Topic Authorization Rule resource. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Grants send access to this this Authorization Rule. Defaults to `false`.
     * 
     */
    @Import(name="send")
    private @Nullable Output send;

    /**
     * @return Grants send access to this this Authorization Rule. Defaults to `false`.
     * 
     */
    public Optional> send() {
        return Optional.ofNullable(this.send);
    }

    /**
     * Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created.
     * 
     * > **NOTE** At least one of the 3 permissions below needs to be set.
     * 
     */
    @Import(name="topicId", required=true)
    private Output topicId;

    /**
     * @return Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created.
     * 
     * > **NOTE** At least one of the 3 permissions below needs to be set.
     * 
     */
    public Output topicId() {
        return this.topicId;
    }

    private TopicAuthorizationRuleArgs() {}

    private TopicAuthorizationRuleArgs(TopicAuthorizationRuleArgs $) {
        this.listen = $.listen;
        this.manage = $.manage;
        this.name = $.name;
        this.send = $.send;
        this.topicId = $.topicId;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(TopicAuthorizationRuleArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private TopicAuthorizationRuleArgs $;

        public Builder() {
            $ = new TopicAuthorizationRuleArgs();
        }

        public Builder(TopicAuthorizationRuleArgs defaults) {
            $ = new TopicAuthorizationRuleArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param listen Grants listen access to this this Authorization Rule. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder listen(@Nullable Output listen) {
            $.listen = listen;
            return this;
        }

        /**
         * @param listen Grants listen access to this this Authorization Rule. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder listen(Boolean listen) {
            return listen(Output.of(listen));
        }

        /**
         * @param manage Grants manage access to this this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder manage(@Nullable Output manage) {
            $.manage = manage;
            return this;
        }

        /**
         * @param manage Grants manage access to this this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder manage(Boolean manage) {
            return manage(Output.of(manage));
        }

        /**
         * @param name Specifies the name of the ServiceBus Topic Authorization Rule resource. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of the ServiceBus Topic Authorization Rule resource. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param send Grants send access to this this Authorization Rule. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder send(@Nullable Output send) {
            $.send = send;
            return this;
        }

        /**
         * @param send Grants send access to this this Authorization Rule. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder send(Boolean send) {
            return send(Output.of(send));
        }

        /**
         * @param topicId Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created.
         * 
         * > **NOTE** At least one of the 3 permissions below needs to be set.
         * 
         * @return builder
         * 
         */
        public Builder topicId(Output topicId) {
            $.topicId = topicId;
            return this;
        }

        /**
         * @param topicId Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created.
         * 
         * > **NOTE** At least one of the 3 permissions below needs to be set.
         * 
         * @return builder
         * 
         */
        public Builder topicId(String topicId) {
            return topicId(Output.of(topicId));
        }

        public TopicAuthorizationRuleArgs build() {
            if ($.topicId == null) {
                throw new MissingRequiredPropertyException("TopicAuthorizationRuleArgs", "topicId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy