File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
proto/viam/provisioning/v1 Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,16 @@ service ProvisioningService {
17
17
18
18
// GetNetworkList is to retrieve the list of networks that are visible to the smart machine.
19
19
rpc GetNetworkList (GetNetworkListRequest ) returns (GetNetworkListResponse );
20
+
21
+ // ExitProvisioning is called when "done" with all other calls.
22
+ // It causes the device to exit provisioning mode to try any newly added wifi networks and resume normal operation.
23
+ rpc ExitProvisioning (ExitProvisioningRequest ) returns (ExitProvisioningResponse );
20
24
}
21
25
26
+ message ExitProvisioningRequest {}
27
+
28
+ message ExitProvisioningResponse {}
29
+
22
30
message GetSmartMachineStatusRequest {}
23
31
24
32
message GetSmartMachineStatusResponse {
@@ -27,6 +35,7 @@ message GetSmartMachineStatusResponse {
27
35
bool is_online = 3 ;
28
36
NetworkInfo latest_connection_attempt = 4 ;
29
37
repeated string errors = 5 ;
38
+ string agent_version = 6 ;
30
39
}
31
40
32
41
message SetNetworkCredentialsRequest {
You can’t perform that action at this time.
0 commit comments