Show / Hide Table of Contents

Class PercentileResourceAssessmentStrategy

The strategy based on percentile usage.

Inheritance
object
ResourceAssessmentStrategy
PercentileResourceAssessmentStrategy
Inherited Members
ResourceAssessmentStrategy.ResourceType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class PercentileResourceAssessmentStrategy : ResourceAssessmentStrategy

Properties

AdjustmentMultiplier

Declaration
[JsonProperty(PropertyName = "adjustmentMultiplier")]
public float? AdjustmentMultiplier { get; set; }
Property Value
Type Description
float?

The real resource usage is multiplied to this number before making any recommendation.

MetricTimeWindow

Declaration
[JsonProperty(PropertyName = "metricTimeWindow")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MetricTimeWindow? MetricTimeWindow { get; set; }
Property Value
Type Description
MetricTimeWindow?

The current state of the migration plan.

Percentile

Declaration
[Required(ErrorMessage = "Percentile is required.")]
[JsonProperty(PropertyName = "percentile")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PercentileResourceAssessmentStrategy.PercentileEnum? Percentile { get; set; }
Property Value
Type Description
PercentileResourceAssessmentStrategy.PercentileEnum?

Percentile value

Remarks

Required

In this article
Back to top