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

com.pulumi.azurenative.loadtestservice.inputs.GetLoadTestProfileMappingPlainArgs Maven / Gradle / Ivy

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

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


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

    public static final GetLoadTestProfileMappingPlainArgs Empty = new GetLoadTestProfileMappingPlainArgs();

    /**
     * Load Test Profile Mapping name
     * 
     */
    @Import(name="loadTestProfileMappingName", required=true)
    private String loadTestProfileMappingName;

    /**
     * @return Load Test Profile Mapping name
     * 
     */
    public String loadTestProfileMappingName() {
        return this.loadTestProfileMappingName;
    }

    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    @Import(name="resourceUri", required=true)
    private String resourceUri;

    /**
     * @return The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    public String resourceUri() {
        return this.resourceUri;
    }

    private GetLoadTestProfileMappingPlainArgs() {}

    private GetLoadTestProfileMappingPlainArgs(GetLoadTestProfileMappingPlainArgs $) {
        this.loadTestProfileMappingName = $.loadTestProfileMappingName;
        this.resourceUri = $.resourceUri;
    }

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

    public static final class Builder {
        private GetLoadTestProfileMappingPlainArgs $;

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

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

        /**
         * @param loadTestProfileMappingName Load Test Profile Mapping name
         * 
         * @return builder
         * 
         */
        public Builder loadTestProfileMappingName(String loadTestProfileMappingName) {
            $.loadTestProfileMappingName = loadTestProfileMappingName;
            return this;
        }

        /**
         * @param resourceUri The fully qualified Azure Resource manager identifier of the resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceUri(String resourceUri) {
            $.resourceUri = resourceUri;
            return this;
        }

        public GetLoadTestProfileMappingPlainArgs build() {
            if ($.loadTestProfileMappingName == null) {
                throw new MissingRequiredPropertyException("GetLoadTestProfileMappingPlainArgs", "loadTestProfileMappingName");
            }
            if ($.resourceUri == null) {
                throw new MissingRequiredPropertyException("GetLoadTestProfileMappingPlainArgs", "resourceUri");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy