patch_deployments.proto 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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.v1beta;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/osconfig/v1beta/patch_jobs.proto";
  19. import "google/protobuf/duration.proto";
  20. import "google/protobuf/field_mask.proto";
  21. import "google/protobuf/timestamp.proto";
  22. import "google/type/datetime.proto";
  23. import "google/type/dayofweek.proto";
  24. import "google/type/timeofday.proto";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/v1beta;osconfig";
  26. option java_outer_classname = "PatchDeployments";
  27. option java_package = "com.google.cloud.osconfig.v1beta";
  28. // Patch deployments are configurations that individual patch jobs use to
  29. // complete a patch. These configurations include instance filter, package
  30. // repository settings, and a schedule. For more information about creating and
  31. // managing patch deployments, see [Scheduling patch
  32. // jobs](https://cloud.google.com/compute/docs/os-patch-management/schedule-patch-jobs).
  33. message PatchDeployment {
  34. option (google.api.resource) = {
  35. type: "osconfig.googleapis.com/PatchDeployment"
  36. pattern: "projects/{project}/patchDeployments/{patch_deployment}"
  37. };
  38. // Represents state of patch peployment.
  39. enum State {
  40. // The default value. This value is used if the state is omitted.
  41. STATE_UNSPECIFIED = 0;
  42. // Active value means that patch deployment generates Patch Jobs.
  43. ACTIVE = 1;
  44. // Paused value means that patch deployment does not generate
  45. // Patch jobs. Requires user action to move in and out from this state.
  46. PAUSED = 2;
  47. }
  48. // Unique name for the patch deployment resource in a project. The patch
  49. // deployment name is in the form:
  50. // `projects/{project_id}/patchDeployments/{patch_deployment_id}`.
  51. // This field is ignored when you create a new patch deployment.
  52. string name = 1;
  53. // Optional. Description of the patch deployment. Length of the description is limited
  54. // to 1024 characters.
  55. string description = 2 [(google.api.field_behavior) = OPTIONAL];
  56. // Required. VM instances to patch.
  57. PatchInstanceFilter instance_filter = 3 [(google.api.field_behavior) = REQUIRED];
  58. // Optional. Patch configuration that is applied.
  59. PatchConfig patch_config = 4 [(google.api.field_behavior) = OPTIONAL];
  60. // Optional. Duration of the patch. After the duration ends, the patch times out.
  61. google.protobuf.Duration duration = 5 [(google.api.field_behavior) = OPTIONAL];
  62. // Schedule for the patch.
  63. oneof schedule {
  64. // Required. Schedule a one-time execution.
  65. OneTimeSchedule one_time_schedule = 6 [(google.api.field_behavior) = REQUIRED];
  66. // Required. Schedule recurring executions.
  67. RecurringSchedule recurring_schedule = 7 [(google.api.field_behavior) = REQUIRED];
  68. }
  69. // Output only. Time the patch deployment was created. Timestamp is in
  70. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  71. google.protobuf.Timestamp create_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  72. // Output only. Time the patch deployment was last updated. Timestamp is in
  73. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  74. google.protobuf.Timestamp update_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  75. // Output only. The last time a patch job was started by this deployment.
  76. // Timestamp is in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text
  77. // format.
  78. google.protobuf.Timestamp last_execute_time = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  79. // Optional. Rollout strategy of the patch job.
  80. PatchRollout rollout = 11 [(google.api.field_behavior) = OPTIONAL];
  81. // Output only. Current state of the patch deployment.
  82. State state = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  83. }
  84. // Sets the time for a one time patch deployment. Timestamp is in
  85. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  86. message OneTimeSchedule {
  87. // Required. The desired patch job execution time.
  88. google.protobuf.Timestamp execute_time = 1 [(google.api.field_behavior) = REQUIRED];
  89. }
  90. // Sets the time for recurring patch deployments.
  91. message RecurringSchedule {
  92. // Specifies the frequency of the recurring patch deployments.
  93. enum Frequency {
  94. // Invalid. A frequency must be specified.
  95. FREQUENCY_UNSPECIFIED = 0;
  96. // Indicates that the frequency of recurrence should be expressed in terms
  97. // of weeks.
  98. WEEKLY = 1;
  99. // Indicates that the frequency of recurrence should be expressed in terms
  100. // of months.
  101. MONTHLY = 2;
  102. // Indicates that the frequency of recurrence should be expressed in terms
  103. // of days.
  104. DAILY = 3;
  105. }
  106. // Required. Defines the time zone that `time_of_day` is relative to.
  107. // The rules for daylight saving time are determined by the chosen time zone.
  108. google.type.TimeZone time_zone = 1 [(google.api.field_behavior) = REQUIRED];
  109. // Optional. The time that the recurring schedule becomes effective.
  110. // Defaults to `create_time` of the patch deployment.
  111. google.protobuf.Timestamp start_time = 2 [(google.api.field_behavior) = OPTIONAL];
  112. // Optional. The end time at which a recurring patch deployment schedule is no longer
  113. // active.
  114. google.protobuf.Timestamp end_time = 3 [(google.api.field_behavior) = OPTIONAL];
  115. // Required. Time of the day to run a recurring deployment.
  116. google.type.TimeOfDay time_of_day = 4 [(google.api.field_behavior) = REQUIRED];
  117. // Required. The frequency unit of this recurring schedule.
  118. Frequency frequency = 5 [(google.api.field_behavior) = REQUIRED];
  119. // Configurations for this recurring schedule.
  120. // Configurations must match frequency.
  121. oneof schedule_config {
  122. // Required. Schedule with weekly executions.
  123. WeeklySchedule weekly = 6 [(google.api.field_behavior) = REQUIRED];
  124. // Required. Schedule with monthly executions.
  125. MonthlySchedule monthly = 7 [(google.api.field_behavior) = REQUIRED];
  126. }
  127. // Output only. The time the last patch job ran successfully.
  128. google.protobuf.Timestamp last_execute_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  129. // Output only. The time the next patch job is scheduled to run.
  130. google.protobuf.Timestamp next_execute_time = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  131. }
  132. // Represents a weekly schedule.
  133. message WeeklySchedule {
  134. // Required. Day of the week.
  135. google.type.DayOfWeek day_of_week = 1 [(google.api.field_behavior) = REQUIRED];
  136. }
  137. // Represents a monthly schedule. An example of a valid monthly schedule is
  138. // "on the third Tuesday of the month" or "on the 15th of the month".
  139. message MonthlySchedule {
  140. // One day in a month.
  141. oneof day_of_month {
  142. // Required. Week day in a month.
  143. WeekDayOfMonth week_day_of_month = 1 [(google.api.field_behavior) = REQUIRED];
  144. // Required. One day of the month. 1-31 indicates the 1st to the 31st day. -1
  145. // indicates the last day of the month.
  146. // Months without the target day will be skipped. For example, a schedule to
  147. // run "every month on the 31st" will not run in February, April, June, etc.
  148. int32 month_day = 2 [(google.api.field_behavior) = REQUIRED];
  149. }
  150. }
  151. // Represents one week day in a month. An example is "the 4th Sunday".
  152. message WeekDayOfMonth {
  153. // Required. Week number in a month. 1-4 indicates the 1st to 4th week of the month. -1
  154. // indicates the last week of the month.
  155. int32 week_ordinal = 1 [(google.api.field_behavior) = REQUIRED];
  156. // Required. A day of the week.
  157. google.type.DayOfWeek day_of_week = 2 [(google.api.field_behavior) = REQUIRED];
  158. // Optional. Represents the number of days before or after the given week day of month
  159. // that the patch deployment is scheduled for. For example if `week_ordinal`
  160. // and `day_of_week` values point to the second day of the month and this
  161. // `day_offset` value is set to `3`, the patch deployment takes place three
  162. // days after the second Tuesday of the month. If this value is negative, for
  163. // example -5, the patches are deployed five days before before the second
  164. // Tuesday of the month. Allowed values are in range `[-30, 30]`.
  165. int32 day_offset = 3 [(google.api.field_behavior) = OPTIONAL];
  166. }
  167. // A request message for creating a patch deployment.
  168. message CreatePatchDeploymentRequest {
  169. // Required. The project to apply this patch deployment to in the form `projects/*`.
  170. string parent = 1 [(google.api.field_behavior) = REQUIRED];
  171. // Required. A name for the patch deployment in the project. When creating a name
  172. // the following rules apply:
  173. // * Must contain only lowercase letters, numbers, and hyphens.
  174. // * Must start with a letter.
  175. // * Must be between 1-63 characters.
  176. // * Must end with a number or a letter.
  177. // * Must be unique within the project.
  178. string patch_deployment_id = 2 [(google.api.field_behavior) = REQUIRED];
  179. // Required. The patch deployment to create.
  180. PatchDeployment patch_deployment = 3 [(google.api.field_behavior) = REQUIRED];
  181. }
  182. // A request message for retrieving a patch deployment.
  183. message GetPatchDeploymentRequest {
  184. // Required. The resource name of the patch deployment in the form
  185. // `projects/*/patchDeployments/*`.
  186. string name = 1 [(google.api.field_behavior) = REQUIRED];
  187. }
  188. // A request message for listing patch deployments.
  189. message ListPatchDeploymentsRequest {
  190. // Required. The resource name of the parent in the form `projects/*`.
  191. string parent = 1 [(google.api.field_behavior) = REQUIRED];
  192. // Optional. The maximum number of patch deployments to return. Default is 100.
  193. int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
  194. // Optional. A pagination token returned from a previous call to ListPatchDeployments
  195. // that indicates where this listing should continue from.
  196. string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
  197. }
  198. // A response message for listing patch deployments.
  199. message ListPatchDeploymentsResponse {
  200. // The list of patch deployments.
  201. repeated PatchDeployment patch_deployments = 1;
  202. // A pagination token that can be used to get the next page of patch
  203. // deployments.
  204. string next_page_token = 2;
  205. }
  206. // A request message for deleting a patch deployment.
  207. message DeletePatchDeploymentRequest {
  208. // Required. The resource name of the patch deployment in the form
  209. // `projects/*/patchDeployments/*`.
  210. string name = 1 [(google.api.field_behavior) = REQUIRED];
  211. }
  212. // A request message for updating a patch deployment.
  213. message UpdatePatchDeploymentRequest {
  214. // Required. The patch deployment to Update.
  215. PatchDeployment patch_deployment = 1 [(google.api.field_behavior) = REQUIRED];
  216. // Optional. Field mask that controls which fields of the patch deployment should be
  217. // updated.
  218. google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = OPTIONAL];
  219. }
  220. // A request message for pausing a patch deployment.
  221. message PausePatchDeploymentRequest {
  222. // Required. The resource name of the patch deployment in the form
  223. // `projects/*/patchDeployments/*`.
  224. string name = 1 [
  225. (google.api.field_behavior) = REQUIRED,
  226. (google.api.resource_reference) = {
  227. type: "osconfig.googleapis.com/PatchDeployment"
  228. }
  229. ];
  230. }
  231. // A request message for resuming a patch deployment.
  232. message ResumePatchDeploymentRequest {
  233. // Required. The resource name of the patch deployment in the form
  234. // `projects/*/patchDeployments/*`.
  235. string name = 1 [
  236. (google.api.field_behavior) = REQUIRED,
  237. (google.api.resource_reference) = {
  238. type: "osconfig.googleapis.com/PatchDeployment"
  239. }
  240. ];
  241. }