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

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

There is a newer version: 2.72.0
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.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 GetDiagnosticServiceArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetDiagnosticServiceArgs Empty = new GetDiagnosticServiceArgs();

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

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

    /**
     * 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;
    }

    private GetDiagnosticServiceArgs() {}

    private GetDiagnosticServiceArgs(GetDiagnosticServiceArgs $) {
        this.diagnosticServiceName = $.diagnosticServiceName;
        this.mqName = $.mqName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetDiagnosticServiceArgs $;

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

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

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

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

        /**
         * @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));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy