agentendpoint.proto 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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.osconfig.agentendpoint.v1beta;
  16. import "google/api/client.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/cloud/osconfig/agentendpoint/v1beta/guest_policies.proto";
  19. import "google/cloud/osconfig/agentendpoint/v1beta/tasks.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/agentendpoint/v1beta;agentendpoint";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "AgentEndpointProto";
  23. option java_package = "com.google.cloud.osconfig.agentendpoint.v1beta";
  24. option php_namespace = "Google\\Cloud\\OsConfig\\V1beta";
  25. // OS Config agent endpoint API.
  26. service AgentEndpointService {
  27. option (google.api.default_host) = "osconfig.googleapis.com";
  28. // Stream established by client to receive Task notifications.
  29. rpc ReceiveTaskNotification(ReceiveTaskNotificationRequest) returns (stream ReceiveTaskNotificationResponse) {
  30. option (google.api.method_signature) = "instance_id_token,agent_version";
  31. }
  32. // Signals the start of a task execution and returns the task info.
  33. rpc StartNextTask(StartNextTaskRequest) returns (StartNextTaskResponse) {
  34. option (google.api.method_signature) = "instance_id_token";
  35. }
  36. // Signals an intermediary progress checkpoint in task execution.
  37. rpc ReportTaskProgress(ReportTaskProgressRequest) returns (ReportTaskProgressResponse) {
  38. option (google.api.method_signature) = "instance_id_token,task_id,task_type";
  39. }
  40. // Signals that the task execution is complete and optionally returns the next
  41. // task.
  42. rpc ReportTaskComplete(ReportTaskCompleteRequest) returns (ReportTaskCompleteResponse) {
  43. option (google.api.method_signature) = "instance_id_token,task_id,task_type,error_message";
  44. }
  45. // Lookup the effective guest policy that applies to a VM instance. This
  46. // lookup merges all policies that are assigned to the instance ancestry.
  47. rpc LookupEffectiveGuestPolicy(LookupEffectiveGuestPolicyRequest) returns (EffectiveGuestPolicy) {
  48. option (google.api.method_signature) = "instance_id_token,os_short_name,os_version,os_architecture";
  49. }
  50. // Registers the agent running on the VM.
  51. rpc RegisterAgent(RegisterAgentRequest) returns (RegisterAgentResponse) {
  52. option (google.api.method_signature) = "instance_id_token,agent_version,supported_capabilities";
  53. }
  54. }
  55. // A request message to receive task notifications.
  56. message ReceiveTaskNotificationRequest {
  57. // Required. This is the Compute Engine instance identity token described in
  58. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  59. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  60. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  61. // Required. The version of the agent making the request.
  62. string agent_version = 2 [(google.api.field_behavior) = REQUIRED];
  63. }
  64. // The streaming rpc message that notifies the agent when it has a task
  65. // that it needs to perform on the VM instance.
  66. message ReceiveTaskNotificationResponse {
  67. }
  68. // A request message for signaling the start of a task execution.
  69. message StartNextTaskRequest {
  70. // Required. This is the Compute Engine instance identity token described in
  71. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  72. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  73. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  74. }
  75. // A response message that contains the details of the task to work on.
  76. message StartNextTaskResponse {
  77. // The details of the task that should be worked on. Can be empty if there
  78. // is no new task to work on.
  79. Task task = 1;
  80. }
  81. // A request message for reporting the progress of current task.
  82. message ReportTaskProgressRequest {
  83. // Required. This is the Compute Engine instance identity token described in
  84. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  85. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  86. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  87. // Required. Unique identifier of the task this applies to.
  88. string task_id = 2 [(google.api.field_behavior) = REQUIRED];
  89. // Required. The type of task to report progress on.
  90. //
  91. // Progress must include the appropriate message based on this enum as
  92. // specified below:
  93. // APPLY_PATCHES = ApplyPatchesTaskProgress
  94. // EXEC_STEP = Progress not supported for this type.
  95. // APPLY_CONFIG_TASK = ApplyConfigTaskProgress
  96. TaskType task_type = 3 [(google.api.field_behavior) = REQUIRED];
  97. // Intermediate progress of the current task.
  98. oneof progress {
  99. // Details about the progress of the apply patches task.
  100. ApplyPatchesTaskProgress apply_patches_task_progress = 4;
  101. // Details about the progress of the exec step task.
  102. ExecStepTaskProgress exec_step_task_progress = 5;
  103. }
  104. }
  105. // The response message after the agent reported the current task progress.
  106. message ReportTaskProgressResponse {
  107. // Instructs agent to continue or not.
  108. TaskDirective task_directive = 1;
  109. }
  110. // A request message for signaling the completion of a task execution.
  111. message ReportTaskCompleteRequest {
  112. // Required. This is the Compute Engine instance identity token described in
  113. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  114. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  115. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  116. // Required. Unique identifier of the task this applies to.
  117. string task_id = 2 [(google.api.field_behavior) = REQUIRED];
  118. // Required. The type of task to report completed.
  119. //
  120. // The output must include the appropriate message based on the following
  121. // enum values:
  122. // APPLY_PATCHES = ApplyPatchesTaskOutput
  123. // EXEC_STEP = ExecStepTaskOutput
  124. // APPLY_CONFIG_TASK = ApplyConfigTaskOutput
  125. TaskType task_type = 3 [(google.api.field_behavior) = REQUIRED];
  126. // Descriptive error message if the task execution ended in error.
  127. string error_message = 4;
  128. // Final output details of the current task.
  129. oneof output {
  130. // Final output details of the apply patches task;
  131. ApplyPatchesTaskOutput apply_patches_task_output = 5;
  132. // Final output details of the exec step task;
  133. ExecStepTaskOutput exec_step_task_output = 6;
  134. }
  135. }
  136. // The response message after the agent signaled the current task complete.
  137. message ReportTaskCompleteResponse {
  138. }
  139. // The request message for registering the agent.
  140. message RegisterAgentRequest {
  141. // Required. This is the Compute Engine instance identity token described in
  142. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  143. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  144. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  145. // Required. The version of the agent.
  146. string agent_version = 2 [(google.api.field_behavior) = REQUIRED];
  147. // Required. The capabilities supported by the agent. Supported values are:
  148. // PATCH_GA
  149. // GUEST_POLICY_BETA
  150. // CONFIG_V1
  151. repeated string supported_capabilities = 3 [(google.api.field_behavior) = REQUIRED];
  152. // The operating system long name.
  153. // For example 'Debian GNU/Linux 9' or 'Microsoft Window Server 2019
  154. // Datacenter'.
  155. string os_long_name = 4;
  156. // The operating system short name.
  157. // For example, 'windows' or 'debian'.
  158. string os_short_name = 5;
  159. // The version of the operating system.
  160. string os_version = 6;
  161. // The system architecture of the operating system.
  162. string os_architecture = 7;
  163. }
  164. // The response message after the agent registered.
  165. message RegisterAgentResponse {
  166. }