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

com.pulumi.azurenative.network.inputs.GetRouteMapPlainArgs Maven / Gradle / Ivy

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

    public static final GetRouteMapPlainArgs Empty = new GetRouteMapPlainArgs();

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

    /**
     * @return The resource group name of the RouteMap's resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the RouteMap.
     * 
     */
    @Import(name="routeMapName", required=true)
    private String routeMapName;

    /**
     * @return The name of the RouteMap.
     * 
     */
    public String routeMapName() {
        return this.routeMapName;
    }

    /**
     * The name of the VirtualHub containing the RouteMap.
     * 
     */
    @Import(name="virtualHubName", required=true)
    private String virtualHubName;

    /**
     * @return The name of the VirtualHub containing the RouteMap.
     * 
     */
    public String virtualHubName() {
        return this.virtualHubName;
    }

    private GetRouteMapPlainArgs() {}

    private GetRouteMapPlainArgs(GetRouteMapPlainArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.routeMapName = $.routeMapName;
        this.virtualHubName = $.virtualHubName;
    }

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

    public static final class Builder {
        private GetRouteMapPlainArgs $;

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

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

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

        /**
         * @param routeMapName The name of the RouteMap.
         * 
         * @return builder
         * 
         */
        public Builder routeMapName(String routeMapName) {
            $.routeMapName = routeMapName;
            return this;
        }

        /**
         * @param virtualHubName The name of the VirtualHub containing the RouteMap.
         * 
         * @return builder
         * 
         */
        public Builder virtualHubName(String virtualHubName) {
            $.virtualHubName = virtualHubName;
            return this;
        }

        public GetRouteMapPlainArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetRouteMapPlainArgs", "resourceGroupName");
            }
            if ($.routeMapName == null) {
                throw new MissingRequiredPropertyException("GetRouteMapPlainArgs", "routeMapName");
            }
            if ($.virtualHubName == null) {
                throw new MissingRequiredPropertyException("GetRouteMapPlainArgs", "virtualHubName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy