com.pulumi.meraki.devices.inputs.GetLiveToolsThroughputTestPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
A Pulumi package for creating and managing Cisco Meraki resources
// *** 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 $;
}
}
}