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

com.pulumi.meraki.devices.inputs.GetLiveToolsThroughputTestPlainArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.devices.inputs;

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


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

    public static final GetLiveToolsThroughputTestPlainArgs Empty = new GetLiveToolsThroughputTestPlainArgs();

    /**
     * serial path parameter.
     * 
     */
    @Import(name="serial", required=true)
    private String serial;

    /**
     * @return serial path parameter.
     * 
     */
    public String serial() {
        return this.serial;
    }

    /**
     * throughputTestId path parameter. Throughput test ID
     * 
     */
    @Import(name="throughputTestId", required=true)
    private String throughputTestId;

    /**
     * @return throughputTestId path parameter. Throughput test ID
     * 
     */
    public String throughputTestId() {
        return this.throughputTestId;
    }

    private GetLiveToolsThroughputTestPlainArgs() {}

    private GetLiveToolsThroughputTestPlainArgs(GetLiveToolsThroughputTestPlainArgs $) {
        this.serial = $.serial;
        this.throughputTestId = $.throughputTestId;
    }

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

    public static final class Builder {
        private GetLiveToolsThroughputTestPlainArgs $;

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

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

        /**
         * @param serial serial path parameter.
         * 
         * @return builder
         * 
         */
        public Builder serial(String serial) {
            $.serial = serial;
            return this;
        }

        /**
         * @param throughputTestId throughputTestId path parameter. Throughput test ID
         * 
         * @return builder
         * 
         */
        public Builder throughputTestId(String throughputTestId) {
            $.throughputTestId = throughputTestId;
            return this;
        }

        public GetLiveToolsThroughputTestPlainArgs build() {
            if ($.serial == null) {
                throw new MissingRequiredPropertyException("GetLiveToolsThroughputTestPlainArgs", "serial");
            }
            if ($.throughputTestId == null) {
                throw new MissingRequiredPropertyException("GetLiveToolsThroughputTestPlainArgs", "throughputTestId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy