Show / Hide Table of Contents

Class RecommendationStrategySummary

The metadata associated with the recommendation strategy.

Inheritance
object
RecommendationStrategySummary
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 RecommendationStrategySummary

Properties

Name

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

The display name of the recommendation.

Remarks

Required

Strategies

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

The list of strategies used.

Remarks

Required

In this article
Back to top