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

com.pulumi.wavefront.DashboardJsonArgs Maven / Gradle / Ivy

// *** 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.wavefront;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class DashboardJsonArgs extends com.pulumi.resources.ResourceArgs {

    public static final DashboardJsonArgs Empty = new DashboardJsonArgs();

    /**
     * See the [Wavefront API Documentation](https://docs.wavefront.com/wavefront_api.html#api-documentation-wavefront-instance)
     * for instructions on how to get to your API documentation for more details.
     * 
     */
    @Import(name="dashboardJson", required=true)
    private Output dashboardJson;

    /**
     * @return See the [Wavefront API Documentation](https://docs.wavefront.com/wavefront_api.html#api-documentation-wavefront-instance)
     * for instructions on how to get to your API documentation for more details.
     * 
     */
    public Output dashboardJson() {
        return this.dashboardJson;
    }

    private DashboardJsonArgs() {}

    private DashboardJsonArgs(DashboardJsonArgs $) {
        this.dashboardJson = $.dashboardJson;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(DashboardJsonArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private DashboardJsonArgs $;

        public Builder() {
            $ = new DashboardJsonArgs();
        }

        public Builder(DashboardJsonArgs defaults) {
            $ = new DashboardJsonArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param dashboardJson See the [Wavefront API Documentation](https://docs.wavefront.com/wavefront_api.html#api-documentation-wavefront-instance)
         * for instructions on how to get to your API documentation for more details.
         * 
         * @return builder
         * 
         */
        public Builder dashboardJson(Output dashboardJson) {
            $.dashboardJson = dashboardJson;
            return this;
        }

        /**
         * @param dashboardJson See the [Wavefront API Documentation](https://docs.wavefront.com/wavefront_api.html#api-documentation-wavefront-instance)
         * for instructions on how to get to your API documentation for more details.
         * 
         * @return builder
         * 
         */
        public Builder dashboardJson(String dashboardJson) {
            return dashboardJson(Output.of(dashboardJson));
        }

        public DashboardJsonArgs build() {
            if ($.dashboardJson == null) {
                throw new MissingRequiredPropertyException("DashboardJsonArgs", "dashboardJson");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy