123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- // Copyright 2020 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.recommender.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/recommender/v1/insight.proto";
- import "google/cloud/recommender/v1/recommendation.proto";
- option csharp_namespace = "Google.Cloud.Recommender.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/recommender/v1;recommender";
- option java_multiple_files = true;
- option java_outer_classname = "RecommenderProto";
- option java_package = "com.google.cloud.recommender.v1";
- option objc_class_prefix = "CREC";
- // Provides insights and recommendations for cloud customers for various
- // categories like performance optimization, cost savings, reliability, feature
- // discovery, etc. Insights and recommendations are generated automatically
- // based on analysis of user resources, configuration and monitoring metrics.
- service Recommender {
- option (google.api.default_host) = "recommender.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
- // Lists insights for a Cloud project. Requires the recommender.*.list IAM
- // permission for the specified insight type.
- rpc ListInsights(ListInsightsRequest) returns (ListInsightsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*/insightTypes/*}/insights"
- additional_bindings {
- get: "/v1/{parent=billingAccounts/*/locations/*/insightTypes/*}/insights"
- }
- additional_bindings {
- get: "/v1/{parent=folders/*/locations/*/insightTypes/*}/insights"
- }
- additional_bindings {
- get: "/v1/{parent=organizations/*/locations/*/insightTypes/*}/insights"
- }
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets the requested insight. Requires the recommender.*.get IAM permission
- // for the specified insight type.
- rpc GetInsight(GetInsightRequest) returns (Insight) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/insightTypes/*/insights/*}"
- additional_bindings {
- get: "/v1/{name=billingAccounts/*/locations/*/insightTypes/*/insights/*}"
- }
- additional_bindings {
- get: "/v1/{name=folders/*/locations/*/insightTypes/*/insights/*}"
- }
- additional_bindings {
- get: "/v1/{name=organizations/*/locations/*/insightTypes/*/insights/*}"
- }
- };
- option (google.api.method_signature) = "name";
- }
- // 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.
- rpc MarkInsightAccepted(MarkInsightAcceptedRequest) returns (Insight) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/insightTypes/*/insights/*}:markAccepted"
- body: "*"
- additional_bindings {
- post: "/v1/{name=billingAccounts/*/locations/*/insightTypes/*/insights/*}:markAccepted"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=folders/*/locations/*/insightTypes/*/insights/*}:markAccepted"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=organizations/*/locations/*/insightTypes/*/insights/*}:markAccepted"
- body: "*"
- }
- };
- option (google.api.method_signature) = "name,state_metadata,etag";
- }
- // Lists recommendations for a Cloud project. Requires the recommender.*.list
- // IAM permission for the specified recommender.
- rpc ListRecommendations(ListRecommendationsRequest) returns (ListRecommendationsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*/recommenders/*}/recommendations"
- additional_bindings {
- get: "/v1/{parent=billingAccounts/*/locations/*/recommenders/*}/recommendations"
- }
- additional_bindings {
- get: "/v1/{parent=folders/*/locations/*/recommenders/*}/recommendations"
- }
- additional_bindings {
- get: "/v1/{parent=organizations/*/locations/*/recommenders/*}/recommendations"
- }
- };
- option (google.api.method_signature) = "parent";
- option (google.api.method_signature) = "parent,filter";
- }
- // Gets the requested recommendation. Requires the recommender.*.get
- // IAM permission for the specified recommender.
- rpc GetRecommendation(GetRecommendationRequest) returns (Recommendation) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/recommenders/*/recommendations/*}"
- additional_bindings {
- get: "/v1/{name=billingAccounts/*/locations/*/recommenders/*/recommendations/*}"
- }
- additional_bindings {
- get: "/v1/{name=folders/*/locations/*/recommenders/*/recommendations/*}"
- }
- additional_bindings {
- get: "/v1/{name=organizations/*/locations/*/recommenders/*/recommendations/*}"
- }
- };
- option (google.api.method_signature) = "name";
- }
- // 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.
- rpc MarkRecommendationClaimed(MarkRecommendationClaimedRequest) returns (Recommendation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/recommenders/*/recommendations/*}:markClaimed"
- body: "*"
- additional_bindings {
- post: "/v1/{name=billingAccounts/*/locations/*/recommenders/*/recommendations/*}:markClaimed"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=folders/*/locations/*/recommenders/*/recommendations/*}:markClaimed"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=organizations/*/locations/*/recommenders/*/recommendations/*}:markClaimed"
- body: "*"
- }
- };
- option (google.api.method_signature) = "name,state_metadata,etag";
- }
- // 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.
- rpc MarkRecommendationSucceeded(MarkRecommendationSucceededRequest) returns (Recommendation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/recommenders/*/recommendations/*}:markSucceeded"
- body: "*"
- additional_bindings {
- post: "/v1/{name=billingAccounts/*/locations/*/recommenders/*/recommendations/*}:markSucceeded"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=folders/*/locations/*/recommenders/*/recommendations/*}:markSucceeded"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=organizations/*/locations/*/recommenders/*/recommendations/*}:markSucceeded"
- body: "*"
- }
- };
- option (google.api.method_signature) = "name,state_metadata,etag";
- }
- // 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.
- rpc MarkRecommendationFailed(MarkRecommendationFailedRequest) returns (Recommendation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/recommenders/*/recommendations/*}:markFailed"
- body: "*"
- additional_bindings {
- post: "/v1/{name=billingAccounts/*/locations/*/recommenders/*/recommendations/*}:markFailed"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=folders/*/locations/*/recommenders/*/recommendations/*}:markFailed"
- body: "*"
- }
- additional_bindings {
- post: "/v1/{name=organizations/*/locations/*/recommenders/*/recommendations/*}:markFailed"
- body: "*"
- }
- };
- option (google.api.method_signature) = "name,state_metadata,etag";
- }
- }
- // Request for the `ListInsights` method.
- message ListInsightsRequest {
- // Required. The container resource on which to execute the request.
- // Acceptable formats:
- //
- // 1.
- // "projects/[PROJECT_NUMBER]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]",
- //
- // LOCATION here refers to GCP Locations:
- // https://cloud.google.com/about/locations/
- // INSIGHT_TYPE_ID refers to supported insight types:
- // https://cloud.google.com/recommender/docs/insights/insight-types.)
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/InsightType"
- }
- ];
- // Optional. The maximum number of results to return from this request. Non-positive
- // values are ignored. If not specified, the server will determine the number
- // of results to return.
- int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // Optional. If present, retrieves the next batch of results from the preceding call to
- // this method. `page_token` must be the value of `next_page_token` from the
- // previous response. The values of other method parameters must be identical
- // to those in the previous call.
- string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
- // Optional. Filter expression to restrict the insights returned. Supported
- // filter fields: state
- // Eg: `state:"DISMISSED" or state:"ACTIVE"
- string filter = 4 [(google.api.field_behavior) = OPTIONAL];
- }
- // Response to the `ListInsights` method.
- message ListInsightsResponse {
- // The set of insights for the `parent` resource.
- repeated Insight insights = 1;
- // A token that can be used to request the next page of results. This field is
- // empty if there are no additional results.
- string next_page_token = 2;
- }
- // Request to the `GetInsight` method.
- message GetInsightRequest {
- // Required. Name of the insight.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Insight"
- }
- ];
- }
- // Request for the `MarkInsightAccepted` method.
- message MarkInsightAcceptedRequest {
- // Required. Name of the insight.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Insight"
- }
- ];
- // Optional. State properties user wish to include with this state. Full replace of the
- // current state_metadata.
- map<string, string> state_metadata = 2 [(google.api.field_behavior) = OPTIONAL];
- // Required. Fingerprint of the Insight. Provides optimistic locking.
- string etag = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // Request for the `ListRecommendations` method.
- message ListRecommendationsRequest {
- // Required. The container resource on which to execute the request.
- // Acceptable formats:
- //
- // 1.
- // "projects/[PROJECT_NUMBER]/locations/[LOCATION]/recommenders/[RECOMMENDER_ID]",
- //
- // LOCATION here refers to GCP Locations:
- // https://cloud.google.com/about/locations/
- // RECOMMENDER_ID refers to supported recommenders:
- // https://cloud.google.com/recommender/docs/recommenders.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Recommender"
- }
- ];
- // Optional. The maximum number of results to return from this request. Non-positive
- // values are ignored. If not specified, the server will determine the number
- // of results to return.
- int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // Optional. If present, retrieves the next batch of results from the preceding call to
- // this method. `page_token` must be the value of `next_page_token` from the
- // previous response. The values of other method parameters must be identical
- // to those in the previous call.
- string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
- // Filter expression to restrict the recommendations returned. Supported
- // filter fields: state_info.state
- // Eg: `state_info.state:"DISMISSED" or state_info.state:"FAILED"
- string filter = 5;
- }
- // Response to the `ListRecommendations` method.
- message ListRecommendationsResponse {
- // The set of recommendations for the `parent` resource.
- repeated Recommendation recommendations = 1;
- // A token that can be used to request the next page of results. This field is
- // empty if there are no additional results.
- string next_page_token = 2;
- }
- // Request to the `GetRecommendation` method.
- message GetRecommendationRequest {
- // Required. Name of the recommendation.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Recommendation"
- }
- ];
- }
- // Request for the `MarkRecommendationClaimed` Method.
- message MarkRecommendationClaimedRequest {
- // Required. Name of the recommendation.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Recommendation"
- }
- ];
- // State properties to include with this state. Overwrites any existing
- // `state_metadata`.
- // Keys must match the regex /^[a-z0-9][a-z0-9_.-]{0,62}$/.
- // Values must match the regex /^[a-zA-Z0-9_./-]{0,255}$/.
- map<string, string> state_metadata = 2;
- // Required. Fingerprint of the Recommendation. Provides optimistic locking.
- string etag = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // Request for the `MarkRecommendationSucceeded` Method.
- message MarkRecommendationSucceededRequest {
- // Required. Name of the recommendation.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Recommendation"
- }
- ];
- // State properties to include with this state. Overwrites any existing
- // `state_metadata`.
- // Keys must match the regex /^[a-z0-9][a-z0-9_.-]{0,62}$/.
- // Values must match the regex /^[a-zA-Z0-9_./-]{0,255}$/.
- map<string, string> state_metadata = 2;
- // Required. Fingerprint of the Recommendation. Provides optimistic locking.
- string etag = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // Request for the `MarkRecommendationFailed` Method.
- message MarkRecommendationFailedRequest {
- // Required. Name of the recommendation.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "recommender.googleapis.com/Recommendation"
- }
- ];
- // State properties to include with this state. Overwrites any existing
- // `state_metadata`.
- // Keys must match the regex /^[a-z0-9][a-z0-9_.-]{0,62}$/.
- // Values must match the regex /^[a-zA-Z0-9_./-]{0,255}$/.
- map<string, string> state_metadata = 2;
- // Required. Fingerprint of the Recommendation. Provides optimistic locking.
- string etag = 3 [(google.api.field_behavior) = REQUIRED];
- }
|