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

com.pulumi.azurenative.costmanagement.inputs.GetReportByDepartmentPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.costmanagement.inputs;

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


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

    public static final GetReportByDepartmentPlainArgs Empty = new GetReportByDepartmentPlainArgs();

    /**
     * Department ID
     * 
     */
    @Import(name="departmentId", required=true)
    private String departmentId;

    /**
     * @return Department ID
     * 
     */
    public String departmentId() {
        return this.departmentId;
    }

    /**
     * Report Name.
     * 
     */
    @Import(name="reportName", required=true)
    private String reportName;

    /**
     * @return Report Name.
     * 
     */
    public String reportName() {
        return this.reportName;
    }

    private GetReportByDepartmentPlainArgs() {}

    private GetReportByDepartmentPlainArgs(GetReportByDepartmentPlainArgs $) {
        this.departmentId = $.departmentId;
        this.reportName = $.reportName;
    }

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

    public static final class Builder {
        private GetReportByDepartmentPlainArgs $;

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

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

        /**
         * @param departmentId Department ID
         * 
         * @return builder
         * 
         */
        public Builder departmentId(String departmentId) {
            $.departmentId = departmentId;
            return this;
        }

        /**
         * @param reportName Report Name.
         * 
         * @return builder
         * 
         */
        public Builder reportName(String reportName) {
            $.reportName = reportName;
            return this;
        }

        public GetReportByDepartmentPlainArgs build() {
            if ($.departmentId == null) {
                throw new MissingRequiredPropertyException("GetReportByDepartmentPlainArgs", "departmentId");
            }
            if ($.reportName == null) {
                throw new MissingRequiredPropertyException("GetReportByDepartmentPlainArgs", "reportName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy