Show / Hide Table of Contents

Class CreateImageJobDetails

The details of the batch image analysis.

Inheritance
object
CreateImageJobDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class CreateImageJobDetails

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The compartment identifier from the requester.

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The image job display name.

Features

Declaration
[Required(ErrorMessage = "Features is required.")]
[JsonProperty(PropertyName = "features")]
public List<ImageFeature> Features { get; set; }
Property Value
Type Description
List<ImageFeature>

The list of requested image analysis types.

Remarks

Required

InputLocation

Declaration
[Required(ErrorMessage = "InputLocation is required.")]
[JsonProperty(PropertyName = "inputLocation")]
public InputLocation InputLocation { get; set; }
Property Value
Type Description
InputLocation
Remarks

Required

IsZipOutputEnabled

Declaration
[JsonProperty(PropertyName = "isZipOutputEnabled")]
public bool? IsZipOutputEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not to generate a ZIP file containing the results.

OutputLocation

Declaration
[Required(ErrorMessage = "OutputLocation is required.")]
[JsonProperty(PropertyName = "outputLocation")]
public OutputLocation OutputLocation { get; set; }
Property Value
Type Description
OutputLocation
Remarks

Required

In this article
Back to top