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

com.pulumi.azurenative.iotoperations.DataFlowEndpointArgs 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.DataFlowEndpointPropertiesArgs;
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 DataFlowEndpointArgs extends com.pulumi.resources.ResourceArgs {

    public static final DataFlowEndpointArgs Empty = new DataFlowEndpointArgs();

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

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

    /**
     * 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 DataFlowEndpointArgs() {}

    private DataFlowEndpointArgs(DataFlowEndpointArgs $) {
        this.dataflowEndpointName = $.dataflowEndpointName;
        this.extendedLocation = $.extendedLocation;
        this.instanceName = $.instanceName;
        this.properties = $.properties;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private DataFlowEndpointArgs $;

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

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

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

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

        /**
         * @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(DataFlowEndpointPropertiesArgs 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 DataFlowEndpointArgs build() {
            if ($.extendedLocation == null) {
                throw new MissingRequiredPropertyException("DataFlowEndpointArgs", "extendedLocation");
            }
            if ($.instanceName == null) {
                throw new MissingRequiredPropertyException("DataFlowEndpointArgs", "instanceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("DataFlowEndpointArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy