Class TenancyAttachmentDataPopulation
Data population status for a monitored region in the tenancy.
Inherited Members
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.
|
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.
|
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