com.pulumi.meraki.networks.outputs.DevicesClaimVmxParameters 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.networks.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DevicesClaimVmxParameters {
/**
* @return The size of the vMX you claim. It can be one of: small, medium, large, xlarge, 100
*
*/
private @Nullable String size;
private DevicesClaimVmxParameters() {}
/**
* @return The size of the vMX you claim. It can be one of: small, medium, large, xlarge, 100
*
*/
public Optional size() {
return Optional.ofNullable(this.size);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DevicesClaimVmxParameters defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String size;
public Builder() {}
public Builder(DevicesClaimVmxParameters defaults) {
Objects.requireNonNull(defaults);
this.size = defaults.size;
}
@CustomType.Setter
public Builder size(@Nullable String size) {
this.size = size;
return this;
}
public DevicesClaimVmxParameters build() {
final var _resultValue = new DevicesClaimVmxParameters();
_resultValue.size = size;
return _resultValue;
}
}
}