com.pulumi.meraki.organizations.outputs.GetWirelessDevicesEthernetStatusesItemPortPoe 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.organizations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetWirelessDevicesEthernetStatusesItemPortPoe {
/**
* @return The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
*
*/
private String standard;
private GetWirelessDevicesEthernetStatusesItemPortPoe() {}
/**
* @return The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
*
*/
public String standard() {
return this.standard;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWirelessDevicesEthernetStatusesItemPortPoe defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String standard;
public Builder() {}
public Builder(GetWirelessDevicesEthernetStatusesItemPortPoe defaults) {
Objects.requireNonNull(defaults);
this.standard = defaults.standard;
}
@CustomType.Setter
public Builder standard(String standard) {
if (standard == null) {
throw new MissingRequiredPropertyException("GetWirelessDevicesEthernetStatusesItemPortPoe", "standard");
}
this.standard = standard;
return this;
}
public GetWirelessDevicesEthernetStatusesItemPortPoe build() {
final var _resultValue = new GetWirelessDevicesEthernetStatusesItemPortPoe();
_resultValue.standard = standard;
return _resultValue;
}
}
}