Show / Hide Table of Contents

Class JobExecutionDetails

The Apply job output variable

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

Properties

IsSensitive

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

The indicator if the data for this parameter is sensitive (e.g. should the data be hidden in UI, encrypted if stored, etc.)

OutputDescription

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

The output description

OutputName

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

The output name

Remarks

Required

OutputType

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

The output type

Remarks

Required

OutputValue

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

The output value

Remarks

Required

In this article
Back to top