Show / Hide Table of Contents

Class RecommendationsRequest

Inheritance
object
RecommendationsRequest
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.DatacatalogService.Requests
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class RecommendationsRequest : IOciRequest
Examples

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

Properties

CatalogId

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

Unique catalog identifier.

Remarks

Required

OpcRequestId

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

The client request ID for tracing.

RecommendationStatus

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

A filter used to return only recommendations having the requested status.

RecommendationType

Declaration
[Required(ErrorMessage = "RecommendationType is required.")]
[HttpConverter(TargetEnum.Query, "recommendationType", CollectionFormatType.Multi)]
public List<RecommendationType> RecommendationType { get; set; }
Property Value
Type Description
List<RecommendationType>

A filter used to return only recommendations of the specified type.

Remarks

Required

SourceObjectKey

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

A filter used to provide the unique identifier of the source object, for which a list of recommendations will be returned for review.

Remarks

Required

SourceObjectType

Declaration
[Required(ErrorMessage = "SourceObjectType is required.")]
[HttpConverter(TargetEnum.Query, "sourceObjectType")]
public RecommendationResourceType? SourceObjectType { get; set; }
Property Value
Type Description
RecommendationResourceType?

A filter used to provide the type of the source object, for which a list of recommendations will be returned for review.

Remarks

Required

Implements

IOciRequest
In this article
Back to top