123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- syntax = "proto3";
- package google.cloud.osconfig.logging;
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/logging;logging";
- option java_multiple_files = true;
- option java_outer_classname = "PatchJobLogProto";
- option java_package = "com.google.cloud.osconfig.logging";
- message PatchJobCompletedLog {
-
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- STARTED = 1;
-
- INSTANCE_LOOKUP = 2;
-
- PATCHING = 3;
-
- SUCCEEDED = 4;
-
- COMPLETED_WITH_ERRORS = 5;
-
- CANCELED = 6;
-
- TIMED_OUT = 7;
- }
-
-
-
-
- message InstanceDetailsSummary {
-
- int64 instances_pending = 1;
-
- int64 instances_inactive = 2;
-
- int64 instances_notified = 3;
-
- int64 instances_started = 4;
-
- int64 instances_downloading_patches = 5;
-
- int64 instances_applying_patches = 6;
-
- int64 instances_rebooting = 7;
-
- int64 instances_succeeded = 8;
-
- int64 instances_succeeded_reboot_required = 9;
-
- int64 instances_failed = 10;
-
- int64 instances_acked = 11;
-
- int64 instances_timed_out = 12;
-
- int64 instances_running_pre_patch_step = 13;
-
- int64 instances_running_post_patch_step = 14;
- }
-
-
- string patch_job = 1;
-
- State state = 2;
-
- InstanceDetailsSummary instance_details_summary = 3;
-
-
- bool dry_run = 4;
-
-
- string error_message = 5;
-
- google.protobuf.Timestamp create_time = 6;
-
- google.protobuf.Timestamp update_time = 7;
- }
|