com.pulumi.azurenative.costmanagement.inputs.ReportGroupingArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.costmanagement.inputs;
import com.pulumi.azurenative.costmanagement.enums.ReportColumnType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* The group by expression to be used in the report.
*
*/
public final class ReportGroupingArgs extends com.pulumi.resources.ResourceArgs {
public static final ReportGroupingArgs Empty = new ReportGroupingArgs();
/**
* The name of the column to group.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the column to group.
*
*/
public Output name() {
return this.name;
}
/**
* Has type of the column to group.
*
*/
@Import(name="type", required=true)
private Output> type;
/**
* @return Has type of the column to group.
*
*/
public Output> type() {
return this.type;
}
private ReportGroupingArgs() {}
private ReportGroupingArgs(ReportGroupingArgs $) {
this.name = $.name;
this.type = $.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ReportGroupingArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ReportGroupingArgs $;
public Builder() {
$ = new ReportGroupingArgs();
}
public Builder(ReportGroupingArgs defaults) {
$ = new ReportGroupingArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the column to group.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the column to group.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param type Has type of the column to group.
*
* @return builder
*
*/
public Builder type(Output> type) {
$.type = type;
return this;
}
/**
* @param type Has type of the column to group.
*
* @return builder
*
*/
public Builder type(Either type) {
return type(Output.of(type));
}
/**
* @param type Has type of the column to group.
*
* @return builder
*
*/
public Builder type(String type) {
return type(Either.ofLeft(type));
}
/**
* @param type Has type of the column to group.
*
* @return builder
*
*/
public Builder type(ReportColumnType type) {
return type(Either.ofRight(type));
}
public ReportGroupingArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("ReportGroupingArgs", "name");
}
if ($.type == null) {
throw new MissingRequiredPropertyException("ReportGroupingArgs", "type");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy