openstack_sdk/api/placement/v1/allocation/
create_138.rsuse derive_builder::Builder;
use http::{HeaderMap, HeaderName, HeaderValue};
use crate::api::rest_endpoint_prelude::*;
use serde::Deserialize;
use serde::Serialize;
use std::borrow::Cow;
use std::collections::BTreeMap;
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
#[builder(setter(strip_option))]
pub struct AllocationsItem<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(default)]
pub(crate) generation: Option<i32>,
#[serde()]
#[builder(private, setter(name = "_resources"))]
pub(crate) resources: BTreeMap<Cow<'a, str>, i32>,
}
impl<'a> AllocationsItemBuilder<'a> {
pub fn resources<I, K, V>(&mut self, iter: I) -> &mut Self
where
I: Iterator<Item = (K, V)>,
K: Into<Cow<'a, str>>,
V: Into<i32>,
{
self.resources
.get_or_insert_with(BTreeMap::new)
.extend(iter.map(|(k, v)| (k.into(), v.into())));
self
}
}
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
#[builder(setter(strip_option))]
pub struct Item<'a> {
#[serde()]
#[builder(private, setter(name = "_allocations"))]
pub(crate) allocations: BTreeMap<Cow<'a, str>, AllocationsItem<'a>>,
#[serde()]
#[builder(setter(into))]
pub(crate) consumer_generation: Option<i32>,
#[serde()]
#[builder(setter(into))]
pub(crate) consumer_type: Cow<'a, str>,
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(default, private, setter(name = "_mappings"))]
pub(crate) mappings: Option<BTreeMap<Cow<'a, str>, Vec<Cow<'a, str>>>>,
#[serde()]
#[builder(setter(into))]
pub(crate) project_id: Cow<'a, str>,
#[serde()]
#[builder(setter(into))]
pub(crate) user_id: Cow<'a, str>,
}
impl<'a> ItemBuilder<'a> {
pub fn allocations<I, K, V>(&mut self, iter: I) -> &mut Self
where
I: Iterator<Item = (K, V)>,
K: Into<Cow<'a, str>>,
V: Into<AllocationsItem<'a>>,
{
self.allocations
.get_or_insert_with(BTreeMap::new)
.extend(iter.map(|(k, v)| (k.into(), v.into())));
self
}
pub fn mappings<I, K, V, V1>(&mut self, iter: I) -> &mut Self
where
I: Iterator<Item = (K, V)>,
K: Into<Cow<'a, str>>,
V: IntoIterator<Item = V1>,
V1: Into<Cow<'a, str>>,
{
self.mappings
.get_or_insert(None)
.get_or_insert_with(BTreeMap::new)
.extend(iter.map(|(k, v)| (k.into(), v.into_iter().map(Into::into).collect())));
self
}
}
#[derive(Builder, Debug, Clone)]
#[builder(setter(strip_option))]
pub struct Request<'a> {
#[builder(setter(name = "_headers"), default, private)]
_headers: Option<HeaderMap>,
#[builder(setter(name = "_properties"), default, private)]
_properties: BTreeMap<Cow<'a, str>, Item<'a>>,
}
impl<'a> Request<'a> {
pub fn builder() -> RequestBuilder<'a> {
RequestBuilder::default()
}
}
impl<'a> RequestBuilder<'a> {
pub fn header(&mut self, header_name: &'static str, header_value: &'static str) -> &mut Self
where {
self._headers
.get_or_insert(None)
.get_or_insert_with(HeaderMap::new)
.insert(header_name, HeaderValue::from_static(header_value));
self
}
pub fn headers<I, T>(&mut self, iter: I) -> &mut Self
where
I: Iterator<Item = T>,
T: Into<(Option<HeaderName>, HeaderValue)>,
{
self._headers
.get_or_insert(None)
.get_or_insert_with(HeaderMap::new)
.extend(iter.map(Into::into));
self
}
pub fn properties<I, K, V>(&mut self, iter: I) -> &mut Self
where
I: Iterator<Item = (K, V)>,
K: Into<Cow<'a, str>>,
V: Into<Item<'a>>,
{
self._properties
.get_or_insert_with(BTreeMap::new)
.extend(iter.map(|(k, v)| (k.into(), v.into())));
self
}
}
impl RestEndpoint for Request<'_> {
fn method(&self) -> http::Method {
http::Method::POST
}
fn endpoint(&self) -> Cow<'static, str> {
"allocations".to_string().into()
}
fn parameters(&self) -> QueryParams {
QueryParams::default()
}
fn body(&self) -> Result<Option<(&'static str, Vec<u8>)>, BodyError> {
let mut params = JsonBodyParams::default();
for (key, val) in &self._properties {
params.push(key.clone(), serde_json::to_value(val)?);
}
params.into_body()
}
fn service_type(&self) -> ServiceType {
ServiceType::Placement
}
fn response_key(&self) -> Option<Cow<'static, str>> {
None
}
fn request_headers(&self) -> Option<&HeaderMap> {
self._headers.as_ref()
}
fn api_version(&self) -> Option<ApiVersion> {
Some(ApiVersion::new(1, 38))
}
}
#[cfg(test)]
mod tests {
#![allow(unused_imports)]
use super::*;
#[cfg(feature = "sync")]
use crate::api::Query;
#[cfg(feature = "sync")]
use crate::test::client::MockServerClient;
use crate::types::ServiceType;
use http::{HeaderName, HeaderValue};
use serde_json::json;
#[test]
fn test_service_type() {
assert_eq!(
Request::builder().build().unwrap().service_type(),
ServiceType::Placement
);
}
#[test]
fn test_response_key() {
assert!(Request::builder().build().unwrap().response_key().is_none())
}
#[cfg(feature = "sync")]
#[test]
fn endpoint() {
let client = MockServerClient::new();
let mock = client.server.mock(|when, then| {
when.method(httpmock::Method::POST)
.path("/allocations".to_string());
then.status(200)
.header("content-type", "application/json")
.json_body(json!({ "dummy": {} }));
});
let endpoint = Request::builder().build().unwrap();
let _: serde_json::Value = endpoint.query(&client).unwrap();
mock.assert();
}
#[cfg(feature = "sync")]
#[test]
fn endpoint_headers() {
let client = MockServerClient::new();
let mock = client.server.mock(|when, then| {
when.method(httpmock::Method::POST)
.path("/allocations".to_string())
.header("foo", "bar")
.header("not_foo", "not_bar");
then.status(200)
.header("content-type", "application/json")
.json_body(json!({ "dummy": {} }));
});
let endpoint = Request::builder()
.headers(
[(
Some(HeaderName::from_static("foo")),
HeaderValue::from_static("bar"),
)]
.into_iter(),
)
.header("not_foo", "not_bar")
.build()
.unwrap();
let _: serde_json::Value = endpoint.query(&client).unwrap();
mock.assert();
}
}