All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.meraki.organizations.outputs.GetBrandingPoliciesItemCustomLogoImage Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
Show newest version
// *** 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;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy