[BindServiceMethod(typeof(Recommender), "BindService")]
public abstract class Recommender.RecommenderBaseReference documentation and code samples for the Google Cloud Recommender v1 API class Recommender.RecommenderBase.
Base class for server-side implementations of Recommender
Namespace
Google.Cloud.Recommender.V1Assembly
Google.Cloud.Recommender.V1.dll
Methods
GetInsight(GetInsightRequest, ServerCallContext)
public virtual Task<Insight> GetInsight(GetInsightRequest request, ServerCallContext context)Gets the requested insight. Requires the recommender.*.get IAM permission for the specified insight type.
| Parameters | |
|---|---|
| Name | Description |
request |
GetInsightRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskInsight |
The response to send back to the client (wrapped by a task). |
GetInsightTypeConfig(GetInsightTypeConfigRequest, ServerCallContext)
public virtual Task<InsightTypeConfig> GetInsightTypeConfig(GetInsightTypeConfigRequest request, ServerCallContext context)Gets the requested InsightTypeConfig. There is only one instance of the config for each InsightType.
| Parameters | |
|---|---|
| Name | Description |
request |
GetInsightTypeConfigRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskInsightTypeConfig |
The response to send back to the client (wrapped by a task). |
GetRecommendation(GetRecommendationRequest, ServerCallContext)
public virtual Task<Recommendation> GetRecommendation(GetRecommendationRequest request, ServerCallContext context)Gets the requested recommendation. Requires the recommender.*.get IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
GetRecommendationRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommendation |
The response to send back to the client (wrapped by a task). |
GetRecommenderConfig(GetRecommenderConfigRequest, ServerCallContext)
public virtual Task<RecommenderConfig> GetRecommenderConfig(GetRecommenderConfigRequest request, ServerCallContext context)Gets the requested Recommender Config. There is only one instance of the config for each Recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
GetRecommenderConfigRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommenderConfig |
The response to send back to the client (wrapped by a task). |
ListInsights(ListInsightsRequest, ServerCallContext)
public virtual Task<ListInsightsResponse> ListInsights(ListInsightsRequest request, ServerCallContext context)Lists insights for the specified Cloud Resource. Requires the recommender.*.list IAM permission for the specified insight type.
| Parameters | |
|---|---|
| Name | Description |
request |
ListInsightsRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskListInsightsResponse |
The response to send back to the client (wrapped by a task). |
ListRecommendations(ListRecommendationsRequest, ServerCallContext)
public virtual Task<ListRecommendationsResponse> ListRecommendations(ListRecommendationsRequest request, ServerCallContext context)Lists recommendations for the specified Cloud Resource. Requires the recommender.*.list IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
ListRecommendationsRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskListRecommendationsResponse |
The response to send back to the client (wrapped by a task). |
MarkInsightAccepted(MarkInsightAcceptedRequest, ServerCallContext)
public virtual Task<Insight> MarkInsightAccepted(MarkInsightAcceptedRequest request, ServerCallContext context)Marks the Insight State as Accepted. Users can use this method to indicate to the Recommender API that they have applied some action based on the insight. This stops the insight content from being updated.
MarkInsightAccepted can be applied to insights in ACTIVE state. Requires the recommender.*.update IAM permission for the specified insight.
| Parameters | |
|---|---|
| Name | Description |
request |
MarkInsightAcceptedRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskInsight |
The response to send back to the client (wrapped by a task). |
MarkRecommendationClaimed(MarkRecommendationClaimedRequest, ServerCallContext)
public virtual Task<Recommendation> MarkRecommendationClaimed(MarkRecommendationClaimedRequest request, ServerCallContext context)Marks the Recommendation State as Claimed. Users can use this method to indicate to the Recommender API that they are starting to apply the recommendation themselves. This stops the recommendation content from being updated. Associated insights are frozen and placed in the ACCEPTED state.
MarkRecommendationClaimed can be applied to recommendations in CLAIMED, SUCCEEDED, FAILED, or ACTIVE state.
Requires the recommender.*.update IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
MarkRecommendationClaimedRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommendation |
The response to send back to the client (wrapped by a task). |
MarkRecommendationDismissed(MarkRecommendationDismissedRequest, ServerCallContext)
public virtual Task<Recommendation> MarkRecommendationDismissed(MarkRecommendationDismissedRequest request, ServerCallContext context)Mark the Recommendation State as Dismissed. Users can use this method to indicate to the Recommender API that an ACTIVE recommendation has to be marked back as DISMISSED.
MarkRecommendationDismissed can be applied to recommendations in ACTIVE state.
Requires the recommender.*.update IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
MarkRecommendationDismissedRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommendation |
The response to send back to the client (wrapped by a task). |
MarkRecommendationFailed(MarkRecommendationFailedRequest, ServerCallContext)
public virtual Task<Recommendation> MarkRecommendationFailed(MarkRecommendationFailedRequest request, ServerCallContext context)Marks the Recommendation State as Failed. Users can use this method to indicate to the Recommender API that they have applied the recommendation themselves, and the operation failed. This stops the recommendation content from being updated. Associated insights are frozen and placed in the ACCEPTED state.
MarkRecommendationFailed can be applied to recommendations in ACTIVE, CLAIMED, SUCCEEDED, or FAILED state.
Requires the recommender.*.update IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
MarkRecommendationFailedRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommendation |
The response to send back to the client (wrapped by a task). |
MarkRecommendationSucceeded(MarkRecommendationSucceededRequest, ServerCallContext)
public virtual Task<Recommendation> MarkRecommendationSucceeded(MarkRecommendationSucceededRequest request, ServerCallContext context)Marks the Recommendation State as Succeeded. Users can use this method to indicate to the Recommender API that they have applied the recommendation themselves, and the operation was successful. This stops the recommendation content from being updated. Associated insights are frozen and placed in the ACCEPTED state.
MarkRecommendationSucceeded can be applied to recommendations in ACTIVE, CLAIMED, SUCCEEDED, or FAILED state.
Requires the recommender.*.update IAM permission for the specified recommender.
| Parameters | |
|---|---|
| Name | Description |
request |
MarkRecommendationSucceededRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommendation |
The response to send back to the client (wrapped by a task). |
UpdateInsightTypeConfig(UpdateInsightTypeConfigRequest, ServerCallContext)
public virtual Task<InsightTypeConfig> UpdateInsightTypeConfig(UpdateInsightTypeConfigRequest request, ServerCallContext context)Updates an InsightTypeConfig change. This will create a new revision of the config.
| Parameters | |
|---|---|
| Name | Description |
request |
UpdateInsightTypeConfigRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskInsightTypeConfig |
The response to send back to the client (wrapped by a task). |
UpdateRecommenderConfig(UpdateRecommenderConfigRequest, ServerCallContext)
public virtual Task<RecommenderConfig> UpdateRecommenderConfig(UpdateRecommenderConfigRequest request, ServerCallContext context)Updates a Recommender Config. This will create a new revision of the config.
| Parameters | |
|---|---|
| Name | Description |
request |
UpdateRecommenderConfigRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
TaskRecommenderConfig |
The response to send back to the client (wrapped by a task). |