#[derive(Debug, Clone)]
pub struct ControllerClient<T> {
client: T,
path: String,
}
impl<T> ControllerClient<T>
where
T: crate::client::Client,
{
pub fn new(client: T, parent_path: &str, controller: &str) -> Self {
Self {
client,
path: format!("{}/{}", parent_path, controller),
}
}
}
impl<T> ControllerClient<T>
where
T: crate::client::Client,
{
#[doc = "Delete sdn controller object configuration."]
#[doc = ""]
#[doc = "Permission check: perm(\"/sdn/controllers\", [\"SDN.Allocate\"])"]
pub async fn delete(&self, params: DeleteParams) -> Result<(), T::Error> {
let path = self.path.to_string();
self.client.delete(&path, ¶ms).await
}
}
impl<T> ControllerClient<T>
where
T: crate::client::Client,
{
#[doc = "Read sdn controller configuration."]
#[doc = ""]
#[doc = "Permission check: perm(\"/sdn/controllers/{controller}\", [\"SDN.Allocate\"])"]
pub async fn get(&self, params: GetParams) -> Result<GetOutput, T::Error> {
let path = self.path.to_string();
self.client.get(&path, ¶ms).await
}
}
impl<T> ControllerClient<T>
where
T: crate::client::Client,
{
#[doc = "Update sdn controller object configuration."]
#[doc = ""]
#[doc = "Permission check: perm(\"/sdn/controllers\", [\"SDN.Allocate\"])"]
pub async fn put(&self, params: PutParams) -> Result<(), T::Error> {
let path = self.path.to_string();
self.client.put(&path, ¶ms).await
}
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct DeleteParams {
#[serde(rename = "lock-token")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "the token for unlocking the global SDN configuration"]
#[doc = ""]
pub lock_token: Option<String>,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
impl GetOutput {
pub fn new(controller: String, ty: Type) -> Self {
Self {
controller,
ty,
asn: ::std::default::Default::default(),
bgp_multipath_as_relax: ::std::default::Default::default(),
digest: ::std::default::Default::default(),
ebgp: ::std::default::Default::default(),
ebgp_multihop: ::std::default::Default::default(),
isis_domain: ::std::default::Default::default(),
isis_ifaces: ::std::default::Default::default(),
isis_net: ::std::default::Default::default(),
loopback: ::std::default::Default::default(),
node: ::std::default::Default::default(),
peers: ::std::default::Default::default(),
pending: ::std::default::Default::default(),
state: ::std::default::Default::default(),
additional_properties: ::std::default::Default::default(),
}
}
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize)]
pub struct GetOutput {
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "The local ASN of the controller. BGP & EVPN only."]
#[doc = ""]
pub asn: Option<AsnInt>,
#[serde(rename = "bgp-multipath-as-relax")]
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Consider different AS paths of equal length for multipath computation. BGP only."]
#[doc = ""]
pub bgp_multipath_as_relax: Option<bool>,
#[doc = "Name of the controller."]
#[doc = ""]
pub controller: String,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Digest of the controller section."]
#[doc = ""]
pub digest: Option<String>,
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Enable eBGP (remote-as external). BGP only."]
#[doc = ""]
pub ebgp: Option<bool>,
#[serde(rename = "ebgp-multihop")]
#[serde(
serialize_with = "crate::types::serialize_int_optional",
deserialize_with = "crate::types::deserialize_int_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Set maximum amount of hops for eBGP peers. Needs ebgp set to 1. BGP only."]
#[doc = ""]
pub ebgp_multihop: Option<i64>,
#[serde(rename = "isis-domain")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the IS-IS domain. IS-IS only."]
#[doc = ""]
pub isis_domain: Option<String>,
#[serde(rename = "isis-ifaces")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Comma-separated list of interfaces where IS-IS should be active. IS-IS only."]
#[doc = ""]
pub isis_ifaces: Option<String>,
#[serde(rename = "isis-net")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Network Entity title for this node in the IS-IS network. IS-IS only."]
#[doc = ""]
pub isis_net: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the loopback/dummy interface that provides the Router-IP. BGP only."]
#[doc = ""]
pub loopback: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Node(s) where this controller is active."]
#[doc = ""]
pub node: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Comma-separated list of the peers IP addresses."]
#[doc = ""]
pub peers: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Changes that have not yet been applied to the running configuration."]
#[doc = ""]
pub pending: Option<PendingGetOutputPending>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "State of the SDN configuration object."]
#[doc = ""]
pub state: Option<State>,
#[serde(rename = "type")]
#[doc = "Type of the controller"]
#[doc = ""]
pub ty: Type,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct GetParams {
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Display pending config."]
#[doc = ""]
pub pending: Option<bool>,
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Display running config."]
#[doc = ""]
pub running: Option<bool>,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct PendingGetOutputPending {
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "The local ASN of the controller. BGP & EVPN only."]
#[doc = ""]
pub asn: Option<AsnInt>,
#[serde(rename = "bgp-multipath-as-relax")]
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Consider different AS paths of equal length for multipath computation. BGP only."]
#[doc = ""]
pub bgp_multipath_as_relax: Option<bool>,
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Enable eBGP (remote-as external). BGP only."]
#[doc = ""]
pub ebgp: Option<bool>,
#[serde(rename = "ebgp-multihop")]
#[serde(
serialize_with = "crate::types::serialize_int_optional",
deserialize_with = "crate::types::deserialize_int_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Set maximum amount of hops for eBGP peers. Needs ebgp set to 1. BGP only."]
#[doc = ""]
pub ebgp_multihop: Option<i64>,
#[serde(rename = "isis-domain")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the IS-IS domain. IS-IS only."]
#[doc = ""]
pub isis_domain: Option<String>,
#[serde(rename = "isis-ifaces")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Comma-separated list of interfaces where IS-IS should be active. IS-IS only."]
#[doc = ""]
pub isis_ifaces: Option<String>,
#[serde(rename = "isis-net")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Network Entity title for this node in the IS-IS network. IS-IS only."]
#[doc = ""]
pub isis_net: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the loopback/dummy interface that provides the Router-IP. BGP only."]
#[doc = ""]
pub loopback: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Node(s) where this controller is active."]
#[doc = ""]
pub node: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Comma-separated list of the peers IP addresses."]
#[doc = ""]
pub peers: Option<String>,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, Default)]
pub struct PutParams {
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "autonomous system number"]
#[doc = ""]
pub asn: Option<AsnInt>,
#[serde(rename = "bgp-multipath-as-path-relax")]
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Consider different AS paths of equal length for multipath computation."]
#[doc = ""]
pub bgp_multipath_as_path_relax: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "A list of settings you want to delete."]
#[doc = ""]
pub delete: Option<DeleteStr>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications."]
#[doc = ""]
pub digest: Option<DigestStr>,
#[serde(
serialize_with = "crate::types::serialize_bool_optional",
deserialize_with = "crate::types::deserialize_bool_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Enable eBGP (remote-as external)."]
#[doc = ""]
pub ebgp: Option<bool>,
#[serde(rename = "ebgp-multihop")]
#[serde(
serialize_with = "crate::types::serialize_int_optional",
deserialize_with = "crate::types::deserialize_int_optional"
)]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Set maximum amount of hops for eBGP peers."]
#[doc = ""]
pub ebgp_multihop: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "SDN fabric to use as underlay for this EVPN controller."]
#[doc = ""]
pub fabric: Option<String>,
#[serde(rename = "isis-domain")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the IS-IS domain."]
#[doc = ""]
pub isis_domain: Option<String>,
#[serde(rename = "isis-ifaces")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Comma-separated list of interfaces where IS-IS should be active."]
#[doc = ""]
pub isis_ifaces: Option<String>,
#[serde(rename = "isis-net")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Network Entity title for this node in the IS-IS network."]
#[doc = ""]
pub isis_net: Option<String>,
#[serde(rename = "lock-token")]
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "the token for unlocking the global SDN configuration"]
#[doc = ""]
pub lock_token: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "Name of the loopback/dummy interface that provides the Router-IP."]
#[doc = ""]
pub loopback: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "The cluster node name."]
#[doc = ""]
pub node: Option<String>,
#[serde(skip_serializing_if = "Option::is_none", default)]
#[doc = "peers address list."]
#[doc = ""]
pub peers: Option<String>,
#[serde(
flatten,
default,
skip_serializing_if = "::std::collections::HashMap::is_empty"
)]
pub additional_properties: ::std::collections::HashMap<String, ::serde_json::Value>,
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, PartialEq)]
#[doc = "State of the SDN configuration object."]
#[doc = ""]
pub enum State {
#[serde(rename = "changed")]
Changed,
#[serde(rename = "deleted")]
Deleted,
#[serde(rename = "new")]
New,
}
impl TryFrom<&str> for State {
type Error = String;
fn try_from(value: &str) -> Result<Self, <Self as TryFrom<&str>>::Error> {
match value {
"changed" => Ok(Self::Changed),
"deleted" => Ok(Self::Deleted),
"new" => Ok(Self::New),
v => Err(format!("Unknown variant {v}")),
}
}
}
#[derive(Clone, Debug, :: serde :: Serialize, :: serde :: Deserialize, PartialEq)]
#[doc = "Type of the controller"]
#[doc = ""]
pub enum Type {
#[serde(rename = "bgp")]
Bgp,
#[serde(rename = "evpn")]
Evpn,
#[serde(rename = "faucet")]
Faucet,
#[serde(rename = "isis")]
Isis,
}
impl TryFrom<&str> for Type {
type Error = String;
fn try_from(value: &str) -> Result<Self, <Self as TryFrom<&str>>::Error> {
match value {
"bgp" => Ok(Self::Bgp),
"evpn" => Ok(Self::Evpn),
"faucet" => Ok(Self::Faucet),
"isis" => Ok(Self::Isis),
v => Err(format!("Unknown variant {v}")),
}
}
}
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct AsnInt(i128);
impl crate::types::bounded_integer::BoundedInteger for AsnInt {
const MIN: Option<i128> = Some(0i128);
const MAX: Option<i128> = Some(4294967295i128);
const DEFAULT: Option<i128> = None::<i128>;
const TYPE_DESCRIPTION: &'static str = "an integer between 0 and 4294967295";
fn get(&self) -> i128 {
self.0
}
fn new(value: i128) -> Result<Self, crate::types::bounded_integer::BoundedIntegerError> {
Self::validate(value)?;
Ok(Self(value))
}
}
impl std::convert::TryFrom<i128> for AsnInt {
type Error = crate::types::bounded_integer::BoundedIntegerError;
fn try_from(value: i128) -> Result<Self, Self::Error> {
crate::types::bounded_integer::BoundedInteger::new(value)
}
}
impl ::serde::Serialize for AsnInt {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ::serde::Serializer,
{
crate::types::bounded_integer::serialize_bounded_integer(self, serializer)
}
}
impl<'de> ::serde::Deserialize<'de> for AsnInt {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: ::serde::Deserializer<'de>,
{
crate::types::bounded_integer::deserialize_bounded_integer(deserializer)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct DeleteStr {
value: String,
}
impl crate::types::bounded_string::BoundedString for DeleteStr {
const MIN_LENGTH: Option<usize> = None::<usize>;
const MAX_LENGTH: Option<usize> = Some(4096usize);
const DEFAULT: Option<&'static str> = None::<&'static str>;
const PATTERN: Option<&'static str> = None::<&'static str>;
const TYPE_DESCRIPTION: &'static str = "a string with length at most 4096";
fn get_value(&self) -> &str {
&self.value
}
fn new(value: String) -> Result<Self, crate::types::bounded_string::BoundedStringError> {
Self::validate(&value)?;
Ok(Self { value })
}
}
impl std::convert::TryFrom<String> for DeleteStr {
type Error = crate::types::bounded_string::BoundedStringError;
fn try_from(value: String) -> Result<Self, Self::Error> {
crate::types::bounded_string::BoundedString::new(value)
}
}
impl ::serde::Serialize for DeleteStr {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ::serde::Serializer,
{
crate::types::bounded_string::serialize_bounded_string(self, serializer)
}
}
impl<'de> ::serde::Deserialize<'de> for DeleteStr {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: ::serde::Deserializer<'de>,
{
crate::types::bounded_string::deserialize_bounded_string(deserializer)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct DigestStr {
value: String,
}
impl crate::types::bounded_string::BoundedString for DigestStr {
const MIN_LENGTH: Option<usize> = None::<usize>;
const MAX_LENGTH: Option<usize> = Some(64usize);
const DEFAULT: Option<&'static str> = None::<&'static str>;
const PATTERN: Option<&'static str> = None::<&'static str>;
const TYPE_DESCRIPTION: &'static str = "a string with length at most 64";
fn get_value(&self) -> &str {
&self.value
}
fn new(value: String) -> Result<Self, crate::types::bounded_string::BoundedStringError> {
Self::validate(&value)?;
Ok(Self { value })
}
}
impl std::convert::TryFrom<String> for DigestStr {
type Error = crate::types::bounded_string::BoundedStringError;
fn try_from(value: String) -> Result<Self, Self::Error> {
crate::types::bounded_string::BoundedString::new(value)
}
}
impl ::serde::Serialize for DigestStr {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ::serde::Serializer,
{
crate::types::bounded_string::serialize_bounded_string(self, serializer)
}
}
impl<'de> ::serde::Deserialize<'de> for DigestStr {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: ::serde::Deserializer<'de>,
{
crate::types::bounded_string::deserialize_bounded_string(deserializer)
}
}