com.pulumi.meraki.networks.outputs.WirelessSsidsSplashSettingsSplashLogo 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 com.pulumi.meraki.networks.outputs.WirelessSsidsSplashSettingsSplashLogoImage;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WirelessSsidsSplashSettingsSplashLogo {
/**
* @return The extension of the logo file.
*
*/
private @Nullable String extension;
/**
* @return Properties for setting a new image.
*
*/
private @Nullable WirelessSsidsSplashSettingsSplashLogoImage image;
/**
* @return The MD5 value of the logo file.
*
*/
private @Nullable String md5;
private WirelessSsidsSplashSettingsSplashLogo() {}
/**
* @return The extension of the logo file.
*
*/
public Optional extension() {
return Optional.ofNullable(this.extension);
}
/**
* @return Properties for setting a new image.
*
*/
public Optional image() {
return Optional.ofNullable(this.image);
}
/**
* @return The MD5 value of the logo file.
*
*/
public Optional md5() {
return Optional.ofNullable(this.md5);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WirelessSsidsSplashSettingsSplashLogo defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String extension;
private @Nullable WirelessSsidsSplashSettingsSplashLogoImage image;
private @Nullable String md5;
public Builder() {}
public Builder(WirelessSsidsSplashSettingsSplashLogo defaults) {
Objects.requireNonNull(defaults);
this.extension = defaults.extension;
this.image = defaults.image;
this.md5 = defaults.md5;
}
@CustomType.Setter
public Builder extension(@Nullable String extension) {
this.extension = extension;
return this;
}
@CustomType.Setter
public Builder image(@Nullable WirelessSsidsSplashSettingsSplashLogoImage image) {
this.image = image;
return this;
}
@CustomType.Setter
public Builder md5(@Nullable String md5) {
this.md5 = md5;
return this;
}
public WirelessSsidsSplashSettingsSplashLogo build() {
final var _resultValue = new WirelessSsidsSplashSettingsSplashLogo();
_resultValue.extension = extension;
_resultValue.image = image;
_resultValue.md5 = md5;
return _resultValue;
}
}
}