com.pulumi.azurenative.machinelearningservices.inputs.BuildContextArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Configuration settings for Docker build context
*
*/
public final class BuildContextArgs extends com.pulumi.resources.ResourceArgs {
public static final BuildContextArgs Empty = new BuildContextArgs();
/**
* [Required] URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.
* <seealso href="https://docs.docker.com/engine/reference/commandline/build/#extended-description" />
*
*/
@Import(name="contextUri", required=true)
private Output contextUri;
/**
* @return [Required] URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.
* <seealso href="https://docs.docker.com/engine/reference/commandline/build/#extended-description" />
*
*/
public Output contextUri() {
return this.contextUri;
}
/**
* Path to the Dockerfile in the build context.
* <seealso href="https://docs.docker.com/engine/reference/builder/" />
*
*/
@Import(name="dockerfilePath")
private @Nullable Output dockerfilePath;
/**
* @return Path to the Dockerfile in the build context.
* <seealso href="https://docs.docker.com/engine/reference/builder/" />
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy