
com.pulumi.azurenative.machinelearningservices.outputs.TrialComponentResponse 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.outputs;
import com.pulumi.azurenative.machinelearningservices.outputs.JobResourceConfigurationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.MpiResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.PyTorchResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.TensorFlowResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class TrialComponentResponse {
/**
* @return ARM resource ID of the code asset.
*
*/
private @Nullable String codeId;
/**
* @return [Required] The command to execute on startup of the job. eg. "python train.py"
*
*/
private String command;
/**
* @return Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, or null.
*
*/
private @Nullable Object distribution;
/**
* @return [Required] The ARM resource ID of the Environment specification for the job.
*
*/
private String environmentId;
/**
* @return Environment variables included in the job.
*
*/
private @Nullable Map environmentVariables;
/**
* @return Compute Resource configuration for the job.
*
*/
private @Nullable JobResourceConfigurationResponse resources;
private TrialComponentResponse() {}
/**
* @return ARM resource ID of the code asset.
*
*/
public Optional codeId() {
return Optional.ofNullable(this.codeId);
}
/**
* @return [Required] The command to execute on startup of the job. eg. "python train.py"
*
*/
public String command() {
return this.command;
}
/**
* @return Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, or null.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy