Show / Hide Table of Contents

Class TenancyAttachmentDataPopulation

Data population status for a monitored region in the tenancy.

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

Properties

InProgressCount

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

The number of data population tasks currently in progress.

Remarks

Required

Status

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

The overall status of the data population from the monitored region of the tenancy.

Remarks

Required

SucceededCount

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

The number of data population tasks that have succeeded.

Remarks

Required

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The date and time the data population task completed, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

TimeStarted

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

The date and time the data population task was started, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TotalCount

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

The total number of data population tasks.

Remarks

Required

In this article
Back to top