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

com.pulumi.azure.dashboard.inputs.Azurerm_portal_dashboardArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.dashboard.inputs;

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


public final class Azurerm_portal_dashboardArgs extends com.pulumi.resources.InvokeArgs {

    public static final Azurerm_portal_dashboardArgs Empty = new Azurerm_portal_dashboardArgs();

    /**
     * JSON data representing dashboard body.
     * 
     */
    @Import(name="dashboardProperties")
    private @Nullable Output dashboardProperties;

    /**
     * @return JSON data representing dashboard body.
     * 
     */
    public Optional> dashboardProperties() {
        return Optional.ofNullable(this.dashboardProperties);
    }

    /**
     * Specifies the display name of the shared Azure Portal Dashboard.
     * 
     */
    @Import(name="displayName")
    private @Nullable Output displayName;

    /**
     * @return Specifies the display name of the shared Azure Portal Dashboard.
     * 
     */
    public Optional> displayName() {
        return Optional.ofNullable(this.displayName);
    }

    /**
     * Specifies the name of the shared Azure Portal Dashboard.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of the shared Azure Portal Dashboard.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Specifies the name of the resource group the shared Azure Portal Dashboard is located in.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Specifies the name of the resource group the shared Azure Portal Dashboard is located in.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private Azurerm_portal_dashboardArgs() {}

    private Azurerm_portal_dashboardArgs(Azurerm_portal_dashboardArgs $) {
        this.dashboardProperties = $.dashboardProperties;
        this.displayName = $.displayName;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private Azurerm_portal_dashboardArgs $;

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

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

        /**
         * @param dashboardProperties JSON data representing dashboard body.
         * 
         * @return builder
         * 
         */
        public Builder dashboardProperties(@Nullable Output dashboardProperties) {
            $.dashboardProperties = dashboardProperties;
            return this;
        }

        /**
         * @param dashboardProperties JSON data representing dashboard body.
         * 
         * @return builder
         * 
         */
        public Builder dashboardProperties(String dashboardProperties) {
            return dashboardProperties(Output.of(dashboardProperties));
        }

        /**
         * @param displayName Specifies the display name of the shared Azure Portal Dashboard.
         * 
         * @return builder
         * 
         */
        public Builder displayName(@Nullable Output displayName) {
            $.displayName = displayName;
            return this;
        }

        /**
         * @param displayName Specifies the display name of the shared Azure Portal Dashboard.
         * 
         * @return builder
         * 
         */
        public Builder displayName(String displayName) {
            return displayName(Output.of(displayName));
        }

        /**
         * @param name Specifies the name of the shared Azure Portal Dashboard.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of the shared Azure Portal Dashboard.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param resourceGroupName Specifies the name of the resource group the shared Azure Portal Dashboard is located in.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Specifies the name of the resource group the shared Azure Portal Dashboard is located in.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy