Class CreateJobDetails
Job creation detail which will have documents on which language services need to run prediction along with output folder
Inherited Members
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class CreateJobDetails
Properties
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the compartment where you want to create the job. |
Remarks
Required
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | A short description of the job. |
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | A user-friendly display name for the job. |
InputConfiguration
Declaration
[JsonProperty(PropertyName = "inputConfiguration")]
public InputConfiguration InputConfiguration { get; set; }
Property Value
Type | Description |
---|---|
InputConfiguration |
InputLocation
Declaration
[Required(ErrorMessage = "InputLocation is required.")]
[JsonProperty(PropertyName = "inputLocation")]
public InputLocation InputLocation { get; set; }
Property Value
Type | Description |
---|---|
InputLocation |
Remarks
Required
ModelMetadataDetails
Declaration
[Required(ErrorMessage = "ModelMetadataDetails is required.")]
[JsonProperty(PropertyName = "modelMetadataDetails")]
public List<ModelMetadataDetails> ModelMetadataDetails { get; set; }
Property Value
Type | Description |
---|---|
List<ModelMetadataDetails> | training model details For this release only one model is allowed to be input here. One of the three modelType, ModelId, endpointId should be given other wise error will be thrown from API |
Remarks
Required
OutputLocation
Declaration
[Required(ErrorMessage = "OutputLocation is required.")]
[JsonProperty(PropertyName = "outputLocation")]
public ObjectPrefixOutputLocation OutputLocation { get; set; }
Property Value
Type | Description |
---|---|
ObjectPrefixOutputLocation |
Remarks
Required