tasks.proto 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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/field_behavior.proto";
  17. import "google/cloud/osconfig/agentendpoint/v1beta/patch_jobs.proto";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/agentendpoint/v1beta;agentendpoint";
  19. option java_outer_classname = "Tasks";
  20. option java_package = "com.google.cloud.osconfig.agentendpoint.v1beta";
  21. option php_namespace = "Google\\Cloud\\OsConfig\\V1beta";
  22. // Specifies the current agent behavior.
  23. enum TaskDirective {
  24. // Unspecified is invalid.
  25. TASK_DIRECTIVE_UNSPECIFIED = 0;
  26. // The task should continue to progress.
  27. CONTINUE = 1;
  28. // Task should not be started, or if already in progress, should stop
  29. // at first safe stopping point. Task should be considered done and will
  30. // never repeat.
  31. STOP = 2;
  32. }
  33. // Specifies the type of task to perform.
  34. enum TaskType {
  35. // Unspecified is invalid.
  36. TASK_TYPE_UNSPECIFIED = 0;
  37. // The apply patches task.
  38. APPLY_PATCHES = 1;
  39. // The exec step task.
  40. EXEC_STEP_TASK = 2;
  41. }
  42. // A unit of work to be performed by the agent.
  43. message Task {
  44. // Unique task id.
  45. string task_id = 1;
  46. // The type of task to perform.
  47. //
  48. // Task details must include the appropriate message based on this enum as
  49. // specified below:
  50. // APPLY_PATCHES = ApplyPatchesTask
  51. // EXEC_STEP = ExecStepTask;
  52. TaskType task_type = 2;
  53. // Current directive to the agent.
  54. TaskDirective task_directive = 3;
  55. // Specific details about the current task to perform.
  56. oneof task_details {
  57. // Details about the apply patches task to perform.
  58. ApplyPatchesTask apply_patches_task = 4;
  59. // Details about the exec step task to perform.
  60. ExecStepTask exec_step_task = 5;
  61. }
  62. // Labels describing the task. Used for logging by the agent.
  63. map<string, string> service_labels = 6;
  64. }
  65. // Message which instructs agent to apply patches.
  66. message ApplyPatchesTask {
  67. // Specific information about how patches should be applied.
  68. PatchConfig patch_config = 1;
  69. // If true, the agent will report its status as it goes through the motions
  70. // but won't actually run any updates or perform any reboots.
  71. bool dry_run = 3;
  72. }
  73. // Information reported from the agent about applying patches execution.
  74. message ApplyPatchesTaskProgress {
  75. // The intermediate states of applying patches.
  76. enum State {
  77. // Unspecified is invalid.
  78. STATE_UNSPECIFIED = 0;
  79. // The agent has started the patch task.
  80. STARTED = 4;
  81. // The agent is currently downloading patches.
  82. DOWNLOADING_PATCHES = 1;
  83. // The agent is currently applying patches.
  84. APPLYING_PATCHES = 2;
  85. // The agent is currently rebooting the VM instance.
  86. REBOOTING = 3;
  87. }
  88. // Required. The current state of this patch execution.
  89. State state = 1 [(google.api.field_behavior) = REQUIRED];
  90. }
  91. // Information reported from the agent about applying patches execution.
  92. message ApplyPatchesTaskOutput {
  93. // The final states of applying patches.
  94. enum State {
  95. // Unspecified is invalid.
  96. STATE_UNSPECIFIED = 0;
  97. // Applying patches completed successfully.
  98. SUCCEEDED = 1;
  99. // Applying patches completed successfully, but a reboot is required.
  100. SUCCEEDED_REBOOT_REQUIRED = 2;
  101. // Applying patches failed.
  102. FAILED = 3;
  103. }
  104. // Required. The final state of this task.
  105. State state = 1 [(google.api.field_behavior) = REQUIRED];
  106. }
  107. // Message which instructs agent to execute the following command.
  108. message ExecStepTask {
  109. // Details of the exec step to run.
  110. ExecStep exec_step = 1;
  111. }
  112. // Information reported from the agent about the exec step execution.
  113. message ExecStepTaskProgress {
  114. // The intermediate states of exec steps.
  115. enum State {
  116. // Unspecified is invalid.
  117. STATE_UNSPECIFIED = 0;
  118. // The agent has started the exec step task.
  119. STARTED = 1;
  120. }
  121. // Required. The current state of this exec step.
  122. State state = 1 [(google.api.field_behavior) = REQUIRED];
  123. }
  124. // Information reported from the agent about the exec step execution.
  125. message ExecStepTaskOutput {
  126. // The final states of exec steps.
  127. enum State {
  128. // Unspecified is invalid.
  129. STATE_UNSPECIFIED = 0;
  130. // The exec step completed normally.
  131. COMPLETED = 1;
  132. // The exec step was terminated because it took too long.
  133. TIMED_OUT = 2;
  134. // The exec step task was cancelled before it started.
  135. CANCELLED = 3;
  136. }
  137. // Required. The final state of the exec step.
  138. State state = 1 [(google.api.field_behavior) = REQUIRED];
  139. // Required. The exit code received from the script which ran as part of the exec step.
  140. int32 exit_code = 2 [(google.api.field_behavior) = REQUIRED];
  141. }