use std::collections::HashMap;
#[derive(Debug, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Cluster {
pub actions: HashMap<String, String>,
pub agent_features: Option<HashMap<String, bool>>,
pub agent_image: String,
pub agent_image_override: String,
pub aks_status: Option<HashMap<String, Option<String>>>,
pub allocatable: HashMap<String, String>,
pub annotations: HashMap<String, String>,
pub api_endpoint: String,
pub applied_enable_network_policy: bool,
pub applied_pod_security_policy_template_id: String,
pub auth_image: String,
pub base_type: String,
pub ca_cert: String,
pub capacity: HashMap<String, String>,
pub cluster_template_id: String,
pub cluster_template_revision_id: String,
pub created: String,
#[serde(rename = "createdTS")]
pub created_ts: i64,
pub creator_id: String,
pub id: String,
pub labels: HashMap<String, String>,
pub name: String,
}