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

com.pulumi.meraki.devices.inputs.LiveToolsThroughputTestResultArgs 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.meraki.devices.inputs.LiveToolsThroughputTestResultSpeedsArgs;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class LiveToolsThroughputTestResultArgs extends com.pulumi.resources.ResourceArgs {

    public static final LiveToolsThroughputTestResultArgs Empty = new LiveToolsThroughputTestResultArgs();

    /**
     * Shows the speeds (Mbps)
     * 
     */
    @Import(name="speeds")
    private @Nullable Output speeds;

    /**
     * @return Shows the speeds (Mbps)
     * 
     */
    public Optional> speeds() {
        return Optional.ofNullable(this.speeds);
    }

    private LiveToolsThroughputTestResultArgs() {}

    private LiveToolsThroughputTestResultArgs(LiveToolsThroughputTestResultArgs $) {
        this.speeds = $.speeds;
    }

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

    public static final class Builder {
        private LiveToolsThroughputTestResultArgs $;

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

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

        /**
         * @param speeds Shows the speeds (Mbps)
         * 
         * @return builder
         * 
         */
        public Builder speeds(@Nullable Output speeds) {
            $.speeds = speeds;
            return this;
        }

        /**
         * @param speeds Shows the speeds (Mbps)
         * 
         * @return builder
         * 
         */
        public Builder speeds(LiveToolsThroughputTestResultSpeedsArgs speeds) {
            return speeds(Output.of(speeds));
        }

        public LiveToolsThroughputTestResultArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy