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

com.pulumi.azurenative.iotoperationsmq.inputs.GetKafkaConnectorTopicMapArgs Maven / Gradle / Ivy

The 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.azurenative.iotoperationsmq.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetKafkaConnectorTopicMapArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetKafkaConnectorTopicMapArgs Empty = new GetKafkaConnectorTopicMapArgs();

    /**
     * Name of MQ kafkaConnector resource
     * 
     */
    @Import(name="kafkaConnectorName", required=true)
    private Output kafkaConnectorName;

    /**
     * @return Name of MQ kafkaConnector resource
     * 
     */
    public Output kafkaConnectorName() {
        return this.kafkaConnectorName;
    }

    /**
     * Name of MQ resource
     * 
     */
    @Import(name="mqName", required=true)
    private Output mqName;

    /**
     * @return Name of MQ resource
     * 
     */
    public Output mqName() {
        return this.mqName;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Name of MQ kafka/topicMap resource
     * 
     */
    @Import(name="topicMapName", required=true)
    private Output topicMapName;

    /**
     * @return Name of MQ kafka/topicMap resource
     * 
     */
    public Output topicMapName() {
        return this.topicMapName;
    }

    private GetKafkaConnectorTopicMapArgs() {}

    private GetKafkaConnectorTopicMapArgs(GetKafkaConnectorTopicMapArgs $) {
        this.kafkaConnectorName = $.kafkaConnectorName;
        this.mqName = $.mqName;
        this.resourceGroupName = $.resourceGroupName;
        this.topicMapName = $.topicMapName;
    }

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

    public static final class Builder {
        private GetKafkaConnectorTopicMapArgs $;

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

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

        /**
         * @param kafkaConnectorName Name of MQ kafkaConnector resource
         * 
         * @return builder
         * 
         */
        public Builder kafkaConnectorName(Output kafkaConnectorName) {
            $.kafkaConnectorName = kafkaConnectorName;
            return this;
        }

        /**
         * @param kafkaConnectorName Name of MQ kafkaConnector resource
         * 
         * @return builder
         * 
         */
        public Builder kafkaConnectorName(String kafkaConnectorName) {
            return kafkaConnectorName(Output.of(kafkaConnectorName));
        }

        /**
         * @param mqName Name of MQ resource
         * 
         * @return builder
         * 
         */
        public Builder mqName(Output mqName) {
            $.mqName = mqName;
            return this;
        }

        /**
         * @param mqName Name of MQ resource
         * 
         * @return builder
         * 
         */
        public Builder mqName(String mqName) {
            return mqName(Output.of(mqName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param topicMapName Name of MQ kafka/topicMap resource
         * 
         * @return builder
         * 
         */
        public Builder topicMapName(Output topicMapName) {
            $.topicMapName = topicMapName;
            return this;
        }

        /**
         * @param topicMapName Name of MQ kafka/topicMap resource
         * 
         * @return builder
         * 
         */
        public Builder topicMapName(String topicMapName) {
            return topicMapName(Output.of(topicMapName));
        }

        public GetKafkaConnectorTopicMapArgs build() {
            if ($.kafkaConnectorName == null) {
                throw new MissingRequiredPropertyException("GetKafkaConnectorTopicMapArgs", "kafkaConnectorName");
            }
            if ($.mqName == null) {
                throw new MissingRequiredPropertyException("GetKafkaConnectorTopicMapArgs", "mqName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetKafkaConnectorTopicMapArgs", "resourceGroupName");
            }
            if ($.topicMapName == null) {
                throw new MissingRequiredPropertyException("GetKafkaConnectorTopicMapArgs", "topicMapName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy