com.pulumi.meraki.organizations.outputs.GetBrandingPoliciesItemCustomLogoImage 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 com.pulumi.meraki.organizations.outputs.GetBrandingPoliciesItemCustomLogoImagePreview;
import java.util.Objects;
@CustomType
public final class GetBrandingPoliciesItemCustomLogoImage {
/**
* @return Preview of the image
*
*/
private GetBrandingPoliciesItemCustomLogoImagePreview preview;
private GetBrandingPoliciesItemCustomLogoImage() {}
/**
* @return Preview of the image
*
*/
public GetBrandingPoliciesItemCustomLogoImagePreview preview() {
return this.preview;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBrandingPoliciesItemCustomLogoImage defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private GetBrandingPoliciesItemCustomLogoImagePreview preview;
public Builder() {}
public Builder(GetBrandingPoliciesItemCustomLogoImage defaults) {
Objects.requireNonNull(defaults);
this.preview = defaults.preview;
}
@CustomType.Setter
public Builder preview(GetBrandingPoliciesItemCustomLogoImagePreview preview) {
if (preview == null) {
throw new MissingRequiredPropertyException("GetBrandingPoliciesItemCustomLogoImage", "preview");
}
this.preview = preview;
return this;
}
public GetBrandingPoliciesItemCustomLogoImage build() {
final var _resultValue = new GetBrandingPoliciesItemCustomLogoImage();
_resultValue.preview = preview;
return _resultValue;
}
}
}