// Copyright 2024 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.osconfig.agentendpoint.v1; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/cloud/osconfig/agentendpoint/v1/config_common.proto"; import "google/cloud/osconfig/agentendpoint/v1/os_policy.proto"; import "google/cloud/osconfig/agentendpoint/v1/patch_jobs.proto"; option go_package = "cloud.google.com/go/osconfig/agentendpoint/apiv1/agentendpointpb;agentendpointpb"; option java_multiple_files = true; option java_outer_classname = "Tasks"; option java_package = "com.google.cloud.osconfig.agentendpoint.v1"; option (google.api.resource_definition) = { type: "osconfig.googleapis.com/OSPolicyAssignment" pattern: "projects/{project}/locations/{location}/osPolicyAssignments/{os_policy_assignment}" }; // Specifies the current agent behavior. enum TaskDirective { // Unspecified is invalid. TASK_DIRECTIVE_UNSPECIFIED = 0; // The task should continue to progress. CONTINUE = 1; // Task should not be started, or if already in progress, should stop // at first safe stopping point. Task should be considered done and will // never repeat. STOP = 2; } // Specifies the type of task to perform. enum TaskType { // Unspecified is invalid. TASK_TYPE_UNSPECIFIED = 0; // The apply patches task. APPLY_PATCHES = 1; // The exec step task. EXEC_STEP_TASK = 2; // The apply config task APPLY_CONFIG_TASK = 3; } // A unit of work to be performed by the agent. message Task { // Unique task id. string task_id = 1; // The type of task to perform. // // Task details must include the appropriate message based on this enum as // specified below: // APPLY_PATCHES = ApplyPatchesTask // EXEC_STEP = ExecStepTask // APPLY_CONFIG_TASK = ApplyConfigTask TaskType task_type = 2; // Current directive to the agent. TaskDirective task_directive = 3; // Specific details about the current task to perform. oneof task_details { // Details about the apply patches task to perform. ApplyPatchesTask apply_patches_task = 4; // Details about the exec step task to perform. ExecStepTask exec_step_task = 5; // Details about the apply config step task to perform. ApplyConfigTask apply_config_task = 7; } // Labels describing the task. Used for logging by the agent. map service_labels = 6; } // Message which instructs agent to apply patches. message ApplyPatchesTask { // Specific information about how patches should be applied. PatchConfig patch_config = 1; // If true, the agent will report its status as it goes through the motions // but won't actually run any updates or perform any reboots. bool dry_run = 3; } // Information reported from the agent about applying patches execution. message ApplyPatchesTaskProgress { // The intermediate states of applying patches. enum State { // Unspecified is invalid. STATE_UNSPECIFIED = 0; // The agent has started the patch task. STARTED = 4; // The agent is currently downloading patches. DOWNLOADING_PATCHES = 1; // The agent is currently applying patches. APPLYING_PATCHES = 2; // The agent is currently rebooting the instance. REBOOTING = 3; } // Required. The current state of this patch execution. State state = 1 [(google.api.field_behavior) = REQUIRED]; } // Information reported from the agent about applying patches execution. message ApplyPatchesTaskOutput { // The final states of applying patches. enum State { // Unspecified is invalid. STATE_UNSPECIFIED = 0; // Applying patches completed successfully. SUCCEEDED = 1; // Applying patches completed successfully, but a reboot is required. SUCCEEDED_REBOOT_REQUIRED = 2; // Applying patches failed. FAILED = 3; } // Required. The final state of this task. State state = 1 [(google.api.field_behavior) = REQUIRED]; } // Message which instructs agent to execute the following command. message ExecStepTask { // Details of the exec step to run. ExecStep exec_step = 1; } // Information reported from the agent about the exec step execution. message ExecStepTaskProgress { // The intermediate states of exec steps. enum State { // Unspecified is invalid. STATE_UNSPECIFIED = 0; // The agent has started the exec step task. STARTED = 1; } // Required. The current state of this exec step. State state = 1 [(google.api.field_behavior) = REQUIRED]; } // Information reported from the agent about the exec step execution. message ExecStepTaskOutput { // The final states of exec steps. enum State { // Unspecified is invalid. STATE_UNSPECIFIED = 0; // The exec step completed normally. COMPLETED = 1; // The exec step was terminated because it took too long. TIMED_OUT = 2; // The exec step task was cancelled before it started. CANCELLED = 3; } // Required. The final state of the exec step. State state = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The exit code received from the script which ran as part of the exec step. int32 exit_code = 2 [(google.api.field_behavior) = REQUIRED]; } // Message which instructs OS Config agent to apply the desired state // configuration. message ApplyConfigTask { // Message representing an OS policy. message OSPolicy { // User provided policy id. // Used for reporting and logging by the agent. string id = 1; // The policy mode .google.cloud.osconfig.agentendpoint.v1.OSPolicy.Mode mode = 2; // Reference to the `OSPolicyAssignment` API resource that this `OSPolicy` // belongs to. // Format: // projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id@revision_id} // Used for reporting and logging by the agent. string os_policy_assignment = 3 [(google.api.resource_reference) = { type: "osconfig.googleapis.com/OSPolicyAssignment" }]; // List of resources associated with the policy to be set to their // desired state. repeated .google.cloud.osconfig.agentendpoint.v1.OSPolicy.Resource resources = 4; } // List of os policies to be applied for the instance. repeated OSPolicy os_policies = 1; } // Information reported from the agent regarding the progress of the task of // applying desired state configuration. message ApplyConfigTaskProgress { // The intermediate states of apply config task. enum State { // Invalid state STATE_UNSPECIFIED = 0; // The agent has started the task. STARTED = 1; // The agent is in the process of applying the configuration. APPLYING_CONFIG = 2; } // The current state of this task. State state = 1; } // Information reported from the agent regarding the output of the task of // applying desired state configuration. message ApplyConfigTaskOutput { // Result of applying desired state config for an OS policy. message OSPolicyResult { // The OS policy id string os_policy_id = 1; // Reference to the `OSPolicyAssignment` API resource that this `OSPolicy` // belongs to. // Format: // projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id@revision_id} // Used for reporting and logging by the agent. string os_policy_assignment = 2 [(google.api.resource_reference) = { type: "osconfig.googleapis.com/OSPolicyAssignment" }]; // Results of applying desired state config for the OS policy resources. repeated OSPolicyResourceCompliance os_policy_resource_compliances = 3; } // The final state of this task. enum State { // Unspecified is invalid. STATE_UNSPECIFIED = 0; // The apply config task completed successfully. SUCCEEDED = 1; // The apply config task failed. FAILED = 2; // The apply config task was cancelled. CANCELLED = 3; } // Required. The final state of this task. State state = 1 [(google.api.field_behavior) = REQUIRED]; // Results of applying desired state config for the OS policies. repeated OSPolicyResult os_policy_results = 2; }