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

com.pulumi.azurenative.machinelearningservices.inputs.DatasetCreateRequestPathArgs 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.machinelearningservices.inputs;

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


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

    public static final DatasetCreateRequestPathArgs Empty = new DatasetCreateRequestPathArgs();

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

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

    /**
     * The Http URL.
     * 
     */
    @Import(name="httpUrl")
    private @Nullable Output httpUrl;

    /**
     * @return The Http URL.
     * 
     */
    public Optional> httpUrl() {
        return Optional.ofNullable(this.httpUrl);
    }

    private DatasetCreateRequestPathArgs() {}

    private DatasetCreateRequestPathArgs(DatasetCreateRequestPathArgs $) {
        this.dataPath = $.dataPath;
        this.httpUrl = $.httpUrl;
    }

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

    public static final class Builder {
        private DatasetCreateRequestPathArgs $;

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

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

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

        public Builder dataPath(DatasetCreateRequestDataPathArgs dataPath) {
            return dataPath(Output.of(dataPath));
        }

        /**
         * @param httpUrl The Http URL.
         * 
         * @return builder
         * 
         */
        public Builder httpUrl(@Nullable Output httpUrl) {
            $.httpUrl = httpUrl;
            return this;
        }

        /**
         * @param httpUrl The Http URL.
         * 
         * @return builder
         * 
         */
        public Builder httpUrl(String httpUrl) {
            return httpUrl(Output.of(httpUrl));
        }

        public DatasetCreateRequestPathArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy