
com.pulumi.azurenative.machinelearningservices.outputs.AutoMLJobResponse 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.AmlTokenResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ClassificationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.CustomModelJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ForecastingResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ImageClassificationMultilabelResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ImageClassificationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ImageInstanceSegmentationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ImageObjectDetectionResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.JobResourceConfigurationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.JobServiceResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.MLFlowModelJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.MLTableJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.ManagedIdentityResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.RegressionResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.TextClassificationMultilabelResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.TextClassificationResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.TextNerResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.TritonModelJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.UriFileJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.UriFolderJobOutputResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.UserIdentityResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
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 AutoMLJobResponse {
/**
* @return ARM resource ID of the component resource.
*
*/
private @Nullable String componentId;
/**
* @return ARM resource ID of the compute resource.
*
*/
private @Nullable String computeId;
/**
* @return The asset description text.
*
*/
private @Nullable String description;
/**
* @return Display name of job.
*
*/
private @Nullable String displayName;
/**
* @return The ARM resource ID of the Environment specification for the job.
* This is optional value to provide, if not provided, AutoML will default this to Production AutoML curated environment version when running the job.
*
*/
private @Nullable String environmentId;
/**
* @return Environment variables included in the job.
*
*/
private @Nullable Map environmentVariables;
/**
* @return The name of the experiment the job belongs to. If not set, the job is placed in the "Default" experiment.
*
*/
private @Nullable String experimentName;
/**
* @return Identity configuration. If set, this should be one of AmlToken, ManagedIdentity, UserIdentity or null.
* Defaults to AmlToken if null.
*
*/
private @Nullable Object identity;
/**
* @return Is the asset archived?
*
*/
private @Nullable Boolean isArchived;
/**
* @return Enum to determine the type of job.
* Expected value is 'AutoML'.
*
*/
private String jobType;
/**
* @return Mapping of output data bindings used in the job.
*
*/
private @Nullable Map outputs;
/**
* @return The asset property dictionary.
*
*/
private @Nullable Map properties;
/**
* @return Compute Resource configuration for the job.
*
*/
private @Nullable JobResourceConfigurationResponse resources;
/**
* @return List of JobEndpoints.
* For local jobs, a job endpoint will have an endpoint value of FileStreamObject.
*
*/
private @Nullable Map services;
/**
* @return Status of the job.
*
*/
private String status;
/**
* @return Tag dictionary. Tags can be added, removed, and updated.
*
*/
private @Nullable Map tags;
/**
* @return [Required] This represents scenario which can be one of Tables/NLP/Image
*
*/
private Object taskDetails;
private AutoMLJobResponse() {}
/**
* @return ARM resource ID of the component resource.
*
*/
public Optional componentId() {
return Optional.ofNullable(this.componentId);
}
/**
* @return ARM resource ID of the compute resource.
*
*/
public Optional computeId() {
return Optional.ofNullable(this.computeId);
}
/**
* @return The asset description text.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Display name of job.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The ARM resource ID of the Environment specification for the job.
* This is optional value to provide, if not provided, AutoML will default this to Production AutoML curated environment version when running the job.
*
*/
public Optional environmentId() {
return Optional.ofNullable(this.environmentId);
}
/**
* @return Environment variables included in the job.
*
*/
public Map environmentVariables() {
return this.environmentVariables == null ? Map.of() : this.environmentVariables;
}
/**
* @return The name of the experiment the job belongs to. If not set, the job is placed in the "Default" experiment.
*
*/
public Optional experimentName() {
return Optional.ofNullable(this.experimentName);
}
/**
* @return Identity configuration. If set, this should be one of AmlToken, ManagedIdentity, UserIdentity or null.
* Defaults to AmlToken if null.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy