action_log.proto 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.recommender.logging.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/recommender/v1/insight.proto";
  19. import "google/cloud/recommender/v1/recommendation.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/recommender/logging/v1;logging";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "ActionLogProto";
  23. option java_package = "com.google.cloud.recommender.logging.v1";
  24. // Log content of an action on a recommendation. This includes Mark* actions.
  25. message ActionLog {
  26. // Required. User that executed this action. Eg, foo@gmail.com
  27. string actor = 1;
  28. // Required. State change that was made by the actor. Eg, SUCCEEDED.
  29. google.cloud.recommender.v1.RecommendationStateInfo.State state = 2;
  30. // Optional. Metadata that was included with the action that was taken.
  31. map<string, string> state_metadata = 3;
  32. // Required. Name of the recommendation which was acted on. Eg, :
  33. // 'projects/123/locations/global/recommenders/roleReco/recommendations/r1'
  34. string recommendation_name = 4;
  35. }
  36. // Log content of an action on an insight. This includes Mark* actions.
  37. message InsightActionLog {
  38. // Required. User that executed this action. Eg, foo@gmail.com
  39. string actor = 1 [(google.api.field_behavior) = REQUIRED];
  40. // Required. State change that was made by the actor. Eg, ACCEPTED.
  41. google.cloud.recommender.v1.InsightStateInfo.State state = 2 [(google.api.field_behavior) = REQUIRED];
  42. // Optional. Metadata that was included with the action that was taken.
  43. map<string, string> state_metadata = 3 [(google.api.field_behavior) = OPTIONAL];
  44. // Required. Name of the insight which was acted on. Eg, :
  45. // 'projects/123/locations/global/insightTypes/roleInsight/insights/i1'
  46. string insight = 4 [
  47. (google.api.field_behavior) = REQUIRED,
  48. (google.api.resource_reference) = {
  49. type: "recommender.googleapis.com/Insight"
  50. }
  51. ];
  52. }