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

com.pulumi.azurenative.network.inputs.GetRulesEnginePlainArgs 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.network.inputs;

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


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

    public static final GetRulesEnginePlainArgs Empty = new GetRulesEnginePlainArgs();

    /**
     * Name of the Front Door which is globally unique.
     * 
     */
    @Import(name="frontDoorName", required=true)
    private String frontDoorName;

    /**
     * @return Name of the Front Door which is globally unique.
     * 
     */
    public String frontDoorName() {
        return this.frontDoorName;
    }

    /**
     * Name of the Resource group within the Azure subscription.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return Name of the Resource group within the Azure subscription.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Name of the Rules Engine which is unique within the Front Door.
     * 
     */
    @Import(name="rulesEngineName", required=true)
    private String rulesEngineName;

    /**
     * @return Name of the Rules Engine which is unique within the Front Door.
     * 
     */
    public String rulesEngineName() {
        return this.rulesEngineName;
    }

    private GetRulesEnginePlainArgs() {}

    private GetRulesEnginePlainArgs(GetRulesEnginePlainArgs $) {
        this.frontDoorName = $.frontDoorName;
        this.resourceGroupName = $.resourceGroupName;
        this.rulesEngineName = $.rulesEngineName;
    }

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

    public static final class Builder {
        private GetRulesEnginePlainArgs $;

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

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

        /**
         * @param frontDoorName Name of the Front Door which is globally unique.
         * 
         * @return builder
         * 
         */
        public Builder frontDoorName(String frontDoorName) {
            $.frontDoorName = frontDoorName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the Resource group within the Azure subscription.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param rulesEngineName Name of the Rules Engine which is unique within the Front Door.
         * 
         * @return builder
         * 
         */
        public Builder rulesEngineName(String rulesEngineName) {
            $.rulesEngineName = rulesEngineName;
            return this;
        }

        public GetRulesEnginePlainArgs build() {
            if ($.frontDoorName == null) {
                throw new MissingRequiredPropertyException("GetRulesEnginePlainArgs", "frontDoorName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetRulesEnginePlainArgs", "resourceGroupName");
            }
            if ($.rulesEngineName == null) {
                throw new MissingRequiredPropertyException("GetRulesEnginePlainArgs", "rulesEngineName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy