Show / Hide Table of Contents

Class ProfileLevelSummary

The metadata associated with the profile level summary.

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

Properties

DefaultInterval

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

The default aggregation interval (in days) for profiles using this profile level.

Remarks

Required

Metrics

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

The metrics that will be evaluated by profiles using this profile level.

Remarks

Required

Name

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

A unique name for the profile level.

Remarks

Required

RecommendationName

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

The name of the recommendation this profile level applies to.

Remarks

Required

TimeCreated

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

The date and time the category details were created, in the format defined by RFC3339.

Remarks

Required

TimeUpdated

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

The date and time the category details were last updated, in the format defined by RFC3339.

Remarks

Required

ValidIntervals

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

An array of aggregation intervals (in days) allowed for profiles using this profile level.

Remarks

Required

In this article
Back to top