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

com.pulumi.azurenative.databoxedge.inputs.GetMonitoringConfigPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.databoxedge.inputs;

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


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

    public static final GetMonitoringConfigPlainArgs Empty = new GetMonitoringConfigPlainArgs();

    /**
     * The device name.
     * 
     */
    @Import(name="deviceName", required=true)
    private String deviceName;

    /**
     * @return The device name.
     * 
     */
    public String deviceName() {
        return this.deviceName;
    }

    /**
     * The resource group name.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The resource group name.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The role name.
     * 
     */
    @Import(name="roleName", required=true)
    private String roleName;

    /**
     * @return The role name.
     * 
     */
    public String roleName() {
        return this.roleName;
    }

    private GetMonitoringConfigPlainArgs() {}

    private GetMonitoringConfigPlainArgs(GetMonitoringConfigPlainArgs $) {
        this.deviceName = $.deviceName;
        this.resourceGroupName = $.resourceGroupName;
        this.roleName = $.roleName;
    }

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

    public static final class Builder {
        private GetMonitoringConfigPlainArgs $;

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

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

        /**
         * @param deviceName The device name.
         * 
         * @return builder
         * 
         */
        public Builder deviceName(String deviceName) {
            $.deviceName = deviceName;
            return this;
        }

        /**
         * @param resourceGroupName The resource group name.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param roleName The role name.
         * 
         * @return builder
         * 
         */
        public Builder roleName(String roleName) {
            $.roleName = roleName;
            return this;
        }

        public GetMonitoringConfigPlainArgs build() {
            if ($.deviceName == null) {
                throw new MissingRequiredPropertyException("GetMonitoringConfigPlainArgs", "deviceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetMonitoringConfigPlainArgs", "resourceGroupName");
            }
            if ($.roleName == null) {
                throw new MissingRequiredPropertyException("GetMonitoringConfigPlainArgs", "roleName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy