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

com.pulumi.azure.monitoring.inputs.ActionGroupEventHubReceiverArgs 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.monitoring.inputs;

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 ActionGroupEventHubReceiverArgs extends com.pulumi.resources.ResourceArgs {

    public static final ActionGroupEventHubReceiverArgs Empty = new ActionGroupEventHubReceiverArgs();

    /**
     * The name of the specific Event Hub queue.
     * 
     */
    @Import(name="eventHubName", required=true)
    private Output eventHubName;

    /**
     * @return The name of the specific Event Hub queue.
     * 
     */
    public Output eventHubName() {
        return this.eventHubName;
    }

    /**
     * The namespace name of the Event Hub.
     * 
     */
    @Import(name="eventHubNamespace", required=true)
    private Output eventHubNamespace;

    /**
     * @return The namespace name of the Event Hub.
     * 
     */
    public Output eventHubNamespace() {
        return this.eventHubNamespace;
    }

    /**
     * The name of the EventHub Receiver, must be unique within action group.
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return The name of the EventHub Receiver, must be unique within action group.
     * 
     */
    public Output name() {
        return this.name;
    }

    /**
     * The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.
     * 
     */
    @Import(name="subscriptionId")
    private @Nullable Output subscriptionId;

    /**
     * @return The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.
     * 
     */
    public Optional> subscriptionId() {
        return Optional.ofNullable(this.subscriptionId);
    }

    /**
     * The Tenant ID for the subscription containing this Event Hub.
     * 
     */
    @Import(name="tenantId")
    private @Nullable Output tenantId;

    /**
     * @return The Tenant ID for the subscription containing this Event Hub.
     * 
     */
    public Optional> tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

    /**
     * Indicates whether to use common alert schema.
     * 
     */
    @Import(name="useCommonAlertSchema")
    private @Nullable Output useCommonAlertSchema;

    /**
     * @return Indicates whether to use common alert schema.
     * 
     */
    public Optional> useCommonAlertSchema() {
        return Optional.ofNullable(this.useCommonAlertSchema);
    }

    private ActionGroupEventHubReceiverArgs() {}

    private ActionGroupEventHubReceiverArgs(ActionGroupEventHubReceiverArgs $) {
        this.eventHubName = $.eventHubName;
        this.eventHubNamespace = $.eventHubNamespace;
        this.name = $.name;
        this.subscriptionId = $.subscriptionId;
        this.tenantId = $.tenantId;
        this.useCommonAlertSchema = $.useCommonAlertSchema;
    }

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

    public static final class Builder {
        private ActionGroupEventHubReceiverArgs $;

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

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

        /**
         * @param eventHubName The name of the specific Event Hub queue.
         * 
         * @return builder
         * 
         */
        public Builder eventHubName(Output eventHubName) {
            $.eventHubName = eventHubName;
            return this;
        }

        /**
         * @param eventHubName The name of the specific Event Hub queue.
         * 
         * @return builder
         * 
         */
        public Builder eventHubName(String eventHubName) {
            return eventHubName(Output.of(eventHubName));
        }

        /**
         * @param eventHubNamespace The namespace name of the Event Hub.
         * 
         * @return builder
         * 
         */
        public Builder eventHubNamespace(Output eventHubNamespace) {
            $.eventHubNamespace = eventHubNamespace;
            return this;
        }

        /**
         * @param eventHubNamespace The namespace name of the Event Hub.
         * 
         * @return builder
         * 
         */
        public Builder eventHubNamespace(String eventHubNamespace) {
            return eventHubNamespace(Output.of(eventHubNamespace));
        }

        /**
         * @param name The name of the EventHub Receiver, must be unique within action group.
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of the EventHub Receiver, must be unique within action group.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param subscriptionId The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(@Nullable Output subscriptionId) {
            $.subscriptionId = subscriptionId;
            return this;
        }

        /**
         * @param subscriptionId The ID for the subscription containing this Event Hub. Default to the subscription ID of the Action Group.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(String subscriptionId) {
            return subscriptionId(Output.of(subscriptionId));
        }

        /**
         * @param tenantId The Tenant ID for the subscription containing this Event Hub.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(@Nullable Output tenantId) {
            $.tenantId = tenantId;
            return this;
        }

        /**
         * @param tenantId The Tenant ID for the subscription containing this Event Hub.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(String tenantId) {
            return tenantId(Output.of(tenantId));
        }

        /**
         * @param useCommonAlertSchema Indicates whether to use common alert schema.
         * 
         * @return builder
         * 
         */
        public Builder useCommonAlertSchema(@Nullable Output useCommonAlertSchema) {
            $.useCommonAlertSchema = useCommonAlertSchema;
            return this;
        }

        /**
         * @param useCommonAlertSchema Indicates whether to use common alert schema.
         * 
         * @return builder
         * 
         */
        public Builder useCommonAlertSchema(Boolean useCommonAlertSchema) {
            return useCommonAlertSchema(Output.of(useCommonAlertSchema));
        }

        public ActionGroupEventHubReceiverArgs build() {
            if ($.eventHubName == null) {
                throw new MissingRequiredPropertyException("ActionGroupEventHubReceiverArgs", "eventHubName");
            }
            if ($.eventHubNamespace == null) {
                throw new MissingRequiredPropertyException("ActionGroupEventHubReceiverArgs", "eventHubNamespace");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("ActionGroupEventHubReceiverArgs", "name");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy