com.pulumi.azure.dashboard.inputs.Azurerm_portal_dashboardPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
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.
// *** 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.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_dashboardPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final Azurerm_portal_dashboardPlainArgs Empty = new Azurerm_portal_dashboardPlainArgs();
/**
* JSON data representing dashboard body.
*
*/
@Import(name="dashboardProperties")
private @Nullable String 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 String 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 String 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 String resourceGroupName;
/**
* @return Specifies the name of the resource group the shared Azure Portal Dashboard is located in.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private Azurerm_portal_dashboardPlainArgs() {}
private Azurerm_portal_dashboardPlainArgs(Azurerm_portal_dashboardPlainArgs $) {
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_dashboardPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private Azurerm_portal_dashboardPlainArgs $;
public Builder() {
$ = new Azurerm_portal_dashboardPlainArgs();
}
public Builder(Azurerm_portal_dashboardPlainArgs defaults) {
$ = new Azurerm_portal_dashboardPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param dashboardProperties JSON data representing dashboard body.
*
* @return builder
*
*/
public Builder dashboardProperties(@Nullable String dashboardProperties) {
$.dashboardProperties = dashboardProperties;
return this;
}
/**
* @param displayName Specifies the display name of the shared Azure Portal Dashboard.
*
* @return builder
*
*/
public Builder displayName(@Nullable String displayName) {
$.displayName = displayName;
return this;
}
/**
* @param name Specifies the name of the shared Azure Portal Dashboard.
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
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) {
$.resourceGroupName = resourceGroupName;
return this;
}
public Azurerm_portal_dashboardPlainArgs build() {
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("Azurerm_portal_dashboardPlainArgs", "resourceGroupName");
}
return $;
}
}
}