Show / Hide Table of Contents

Class RecommendStage

A recommend stage determines the recommended third-party dependencies that the app should use and (if any) opens a pull request to propose these changes.

Inheritance
object
RemediationRunStage
RecommendStage
Inherited Members
RemediationRunStage.Status
RemediationRunStage.TimeCreated
RemediationRunStage.TimeStarted
RemediationRunStage.TimeFinished
RemediationRunStage.Summary
RemediationRunStage.RemediationRunId
RemediationRunStage.PreviousStageType
RemediationRunStage.NextStageType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AdmService.Models
Assembly: OCI.DotNetSDK.Adm.dll
Syntax
public class RecommendStage : RemediationRunStage

Properties

PullRequestProperties

Declaration
[JsonProperty(PropertyName = "pullRequestProperties")]
public PullRequestProperties PullRequestProperties { get; set; }
Property Value
Type Description
PullRequestProperties

RecommendedUpdatesCount

Declaration
[JsonProperty(PropertyName = "recommendedUpdatesCount")]
public int? RecommendedUpdatesCount { get; set; }
Property Value
Type Description
int?

Count of recommended application dependencies to update.

In this article
Back to top