Show / Hide Table of Contents

Class BulkApplyRecommendationsDetails

Details about bulk recommendation actions.

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

Properties

Actions

Declaration
[JsonProperty(PropertyName = "actions")]
public List<BulkApplyResourceAction> Actions { get; set; }
Property Value
Type Description
List<BulkApplyResourceAction>

The unique resource actions that recommendations are applied to.

ResourceActionIds

Declaration
[JsonProperty(PropertyName = "resourceActionIds")]
public List<string> ResourceActionIds { get; set; }
Property Value
Type Description
List<string>

The unique OCIDs of the resource actions that recommendations are applied to.
This field is deprecated.

Status

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

The current status of the recommendation.

Remarks

Required

TimeStatusEnd

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

The date and time the current status will change. The format is defined by RFC3339.
For example, "The current postponed status of the resource action will end and change to pending on this date and time."

In this article
Back to top