Show / Hide Table of Contents

Class ListApplicationDependencyRecommendationsRequest

Inheritance
object
ListApplicationDependencyRecommendationsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AdmService.Requests
Assembly: OCI.DotNetSDK.Adm.dll
Syntax
public class ListApplicationDependencyRecommendationsRequest : IOciRequest
Examples

Click here to see an example of how to use ListApplicationDependencyRecommendations request.

Properties

Gav

Declaration
[HttpConverter(TargetEnum.Query, "gav")]
public string Gav { get; set; }
Property Value
Type Description
string

A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

A token representing the position at which to start retrieving results. This must come from the opc-next-page header field of a previous response.

Purl

Declaration
[HttpConverter(TargetEnum.Query, "purl")]
public string Purl { get; set; }
Property Value
Type Description
string

A filter to return only resources that match the entire purl given.

RemediationRunId

Declaration
[Required(ErrorMessage = "RemediationRunId is required.")]
[HttpConverter(TargetEnum.Path, "remediationRunId")]
public string RemediationRunId { get; set; }
Property Value
Type Description
string

Unique Remediation Run identifier path parameter.

Remarks

Required

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListApplicationDependencyRecommendationsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListApplicationDependencyRecommendationsRequest.SortByEnum?

The field to sort by. Only one sort order may be provided. If sort order is dfs, the nodes are returned by going through the application dependency tree in a depth-first manner. Children are sorted based on their GAV property alphabetically (either ascending or descending, depending on the order parameter). Default order is ascending. If sort order is bfs, the nodes are returned by going through the application dependency tree in a breadth-first manner. Children are sorted based on their GAV property alphabetically (either ascending or descending, depending on the order parameter). Default order is ascending. Default order for gav is ascending where ascending corresponds to alphanumerical order. Default order for purl is ascending where ascending corresponds to alphabetical order Default order for nodeId is ascending where ascending corresponds to alphanumerical order. Sorting by DFS or BFS cannot be used in conjunction with the following query parameters: "gav", "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual" and "vulnerabilityId".

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

The sort order to use, either 'ASC' or 'DESC'.

Implements

IOciRequest
In this article
Back to top