File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
proto/jumpstarter/client/v1 Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,17 @@ message Exporter {
6767
6868 string name = 1 [(google.api.field_behavior ) = IDENTIFIER ];
6969 map <string , string > labels = 2 ;
70- bool online = 3 [(google.api.field_behavior ) = OUTPUT_ONLY ];
70+ bool online = 3 [(google.api.field_behavior ) = OUTPUT_ONLY , deprecated = true ];
71+ ExporterStatus status = 4 [(google.api.field_behavior ) = OUTPUT_ONLY ];
72+ }
73+
74+ enum ExporterStatus {
75+ EXPORTER_STATUS_UNSPECIFIED = 0 ; // Unspecified exporter status
76+ EXPORTER_STATUS_OFFLINE = 1 ; // Exporter is offline
77+ EXPORTER_STATUS_AVAILABLE = 2 ; // Exporter is available to be leased
78+ EXPORTER_STATUS_BEFORE_LEASE_HOOK = 3 ; // Exporter is executing before lease hook(s)
79+ EXPORTER_STATUS_LEASE_READY = 4 ; // Exporter is leased and ready to accept commands
80+ EXPORTER_STATUS_AFTER_LEASE_HOOK = 5 ; // Exporter is executing after lease hook(s)
7181}
7282
7383message Lease {
You can’t perform that action at this time.
0 commit comments