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

com.pulumi.azurenative.iotoperations.DataFlowProfileArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
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.iotoperations;

import com.pulumi.azurenative.iotoperations.inputs.DataFlowProfilePropertiesArgs;
import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
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 DataFlowProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final DataFlowProfileArgs Empty = new DataFlowProfileArgs();

    /**
     * Name of Instance dataflowProfile resource
     * 
     */
    @Import(name="dataflowProfileName")
    private @Nullable Output dataflowProfileName;

    /**
     * @return Name of Instance dataflowProfile resource
     * 
     */
    public Optional> dataflowProfileName() {
        return Optional.ofNullable(this.dataflowProfileName);
    }

    /**
     * Edge location of the resource.
     * 
     */
    @Import(name="extendedLocation", required=true)
    private Output extendedLocation;

    /**
     * @return Edge location of the resource.
     * 
     */
    public Output extendedLocation() {
        return this.extendedLocation;
    }

    /**
     * Name of instance.
     * 
     */
    @Import(name="instanceName", required=true)
    private Output instanceName;

    /**
     * @return Name of instance.
     * 
     */
    public Output instanceName() {
        return this.instanceName;
    }

    /**
     * The resource-specific properties for this resource.
     * 
     */
    @Import(name="properties")
    private @Nullable Output properties;

    /**
     * @return The resource-specific properties for this resource.
     * 
     */
    public Optional> properties() {
        return Optional.ofNullable(this.properties);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private DataFlowProfileArgs() {}

    private DataFlowProfileArgs(DataFlowProfileArgs $) {
        this.dataflowProfileName = $.dataflowProfileName;
        this.extendedLocation = $.extendedLocation;
        this.instanceName = $.instanceName;
        this.properties = $.properties;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private DataFlowProfileArgs $;

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

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

        /**
         * @param dataflowProfileName Name of Instance dataflowProfile resource
         * 
         * @return builder
         * 
         */
        public Builder dataflowProfileName(@Nullable Output dataflowProfileName) {
            $.dataflowProfileName = dataflowProfileName;
            return this;
        }

        /**
         * @param dataflowProfileName Name of Instance dataflowProfile resource
         * 
         * @return builder
         * 
         */
        public Builder dataflowProfileName(String dataflowProfileName) {
            return dataflowProfileName(Output.of(dataflowProfileName));
        }

        /**
         * @param extendedLocation Edge location of the resource.
         * 
         * @return builder
         * 
         */
        public Builder extendedLocation(Output extendedLocation) {
            $.extendedLocation = extendedLocation;
            return this;
        }

        /**
         * @param extendedLocation Edge location of the resource.
         * 
         * @return builder
         * 
         */
        public Builder extendedLocation(ExtendedLocationArgs extendedLocation) {
            return extendedLocation(Output.of(extendedLocation));
        }

        /**
         * @param instanceName Name of instance.
         * 
         * @return builder
         * 
         */
        public Builder instanceName(Output instanceName) {
            $.instanceName = instanceName;
            return this;
        }

        /**
         * @param instanceName Name of instance.
         * 
         * @return builder
         * 
         */
        public Builder instanceName(String instanceName) {
            return instanceName(Output.of(instanceName));
        }

        /**
         * @param properties The resource-specific properties for this resource.
         * 
         * @return builder
         * 
         */
        public Builder properties(@Nullable Output properties) {
            $.properties = properties;
            return this;
        }

        /**
         * @param properties The resource-specific properties for this resource.
         * 
         * @return builder
         * 
         */
        public Builder properties(DataFlowProfilePropertiesArgs properties) {
            return properties(Output.of(properties));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy