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

com.pulumi.azurenative.openenergyplatform.inputs.EnergyServicePropertiesArgs 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.openenergyplatform.inputs;

import com.pulumi.azurenative.openenergyplatform.inputs.DataPartitionNamesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final EnergyServicePropertiesArgs Empty = new EnergyServicePropertiesArgs();

    @Import(name="authAppId")
    private @Nullable Output authAppId;

    public Optional> authAppId() {
        return Optional.ofNullable(this.authAppId);
    }

    @Import(name="dataPartitionNames")
    private @Nullable Output> dataPartitionNames;

    public Optional>> dataPartitionNames() {
        return Optional.ofNullable(this.dataPartitionNames);
    }

    private EnergyServicePropertiesArgs() {}

    private EnergyServicePropertiesArgs(EnergyServicePropertiesArgs $) {
        this.authAppId = $.authAppId;
        this.dataPartitionNames = $.dataPartitionNames;
    }

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

    public static final class Builder {
        private EnergyServicePropertiesArgs $;

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

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

        public Builder authAppId(@Nullable Output authAppId) {
            $.authAppId = authAppId;
            return this;
        }

        public Builder authAppId(String authAppId) {
            return authAppId(Output.of(authAppId));
        }

        public Builder dataPartitionNames(@Nullable Output> dataPartitionNames) {
            $.dataPartitionNames = dataPartitionNames;
            return this;
        }

        public Builder dataPartitionNames(List dataPartitionNames) {
            return dataPartitionNames(Output.of(dataPartitionNames));
        }

        public Builder dataPartitionNames(DataPartitionNamesArgs... dataPartitionNames) {
            return dataPartitionNames(List.of(dataPartitionNames));
        }

        public EnergyServicePropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy