use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[allow(unused_imports)]
use super::*;
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateManagementStationDetails {
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub hostname: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub is_auto_config_enabled: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub proxy: Option<UpdateProxyConfigurationDetails>,
#[serde(skip_serializing_if = "Option::is_none")]
pub mirror: Option<UpdateMirrorConfigurationDetails>,
#[serde(skip_serializing_if = "Option::is_none")]
pub freeform_tags: Option<HashMap<String, String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub defined_tags: Option<HashMap<String, HashMap<String, serde_json::Value>>>,
}
impl UpdateManagementStationDetails {
pub fn new() -> Self {
Self {
display_name: None,
description: None,
hostname: None,
is_auto_config_enabled: None,
proxy: None,
mirror: None,
freeform_tags: None,
defined_tags: None,
}
}
pub fn set_display_name(mut self, value: Option<String>) -> Self {
self.display_name = value;
self
}
pub fn set_description(mut self, value: Option<String>) -> Self {
self.description = value;
self
}
pub fn set_hostname(mut self, value: Option<String>) -> Self {
self.hostname = value;
self
}
pub fn set_is_auto_config_enabled(mut self, value: Option<bool>) -> Self {
self.is_auto_config_enabled = value;
self
}
pub fn set_proxy(mut self, value: Option<UpdateProxyConfigurationDetails>) -> Self {
self.proxy = value;
self
}
pub fn set_mirror(mut self, value: Option<UpdateMirrorConfigurationDetails>) -> Self {
self.mirror = value;
self
}
pub fn set_freeform_tags(mut self, value: Option<HashMap<String, String>>) -> Self {
self.freeform_tags = value;
self
}
pub fn set_defined_tags(
mut self,
value: Option<HashMap<String, HashMap<String, serde_json::Value>>>,
) -> Self {
self.defined_tags = value;
self
}
pub fn with_display_name(mut self, value: impl Into<String>) -> Self {
self.display_name = Some(value.into());
self
}
pub fn with_description(mut self, value: impl Into<String>) -> Self {
self.description = Some(value.into());
self
}
pub fn with_hostname(mut self, value: impl Into<String>) -> Self {
self.hostname = Some(value.into());
self
}
pub fn with_is_auto_config_enabled(mut self, value: bool) -> Self {
self.is_auto_config_enabled = Some(value);
self
}
pub fn with_proxy(mut self, value: UpdateProxyConfigurationDetails) -> Self {
self.proxy = Some(value);
self
}
pub fn with_mirror(mut self, value: UpdateMirrorConfigurationDetails) -> Self {
self.mirror = Some(value);
self
}
pub fn with_freeform_tags(mut self, value: HashMap<String, String>) -> Self {
self.freeform_tags = Some(value);
self
}
pub fn with_defined_tags(
mut self,
value: HashMap<String, HashMap<String, serde_json::Value>>,
) -> Self {
self.defined_tags = Some(value);
self
}
}
impl Default for UpdateManagementStationDetails {
fn default() -> Self {
Self::new()
}
}