1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct NodeView {
/// Caps is the capability list the node reported. It is a self-report, useful to SHOW and never load-bearing: what a node may actually be asked to do is decided at the socket by the deployment's allowlist.
#[serde(rename = "caps", skip_serializing_if = "Option::is_none")]
pub caps: Option<Vec<String>>,
/// Commands is the command list the node reported. Same standing as Caps: a self-report, checked again at the socket before anything runs.
#[serde(rename = "commands", skip_serializing_if = "Option::is_none")]
pub commands: Option<Vec<String>>,
/// ConnectedAt is when this node's socket was established, RFC3339 UTC.
#[serde(rename = "connectedAt", skip_serializing_if = "Option::is_none")]
pub connected_at: Option<String>,
/// DisplayName is the human name the node reported for itself.
#[serde(rename = "displayName", skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
/// ID is the node's own identifier within the org — the value POST /v1/node/{id}/invoke addresses it by.
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
/// Platform is the operating system and architecture the node reported.
#[serde(rename = "platform", skip_serializing_if = "Option::is_none")]
pub platform: Option<String>,
/// Version is the node agent's own version string.
#[serde(rename = "version", skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
}
impl NodeView {
pub fn new() -> NodeView {
NodeView {
caps: None,
commands: None,
connected_at: None,
display_name: None,
id: None,
platform: None,
version: None,
}
}
}