Show / Hide Table of Contents

Class JobExecutionsStatusSummary

A summary of the status of the job executions.

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

Properties

Count

Declaration
[Required(ErrorMessage = "Count is required.")]
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

The number of job executions of a particular status.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobExecutionsStatusSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
JobExecutionsStatusSummary.StatusEnum?

The status of the job execution.

Remarks

Required

In this article
Back to top