openstack_sdk/api/placement/v1/allocation/
set_112.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, Clone)]
#[builder(setter(strip_option))]
pub struct Request<'a> {
#[builder(private, setter(name = "_allocations"))]
pub(crate) allocations: BTreeMap<Cow<'a, str>, AllocationsItem<'a>>,
#[builder(setter(into))]
pub(crate) project_id: Cow<'a, str>,
#[builder(setter(into))]
pub(crate) user_id: Cow<'a, str>,
#[builder(default, setter(into))]
consumer_uuid: Cow<'a, str>,
#[builder(setter(name = "_headers"), default, private)]
_headers: Option<HeaderMap>,
}
impl<'a> Request<'a> {
pub fn builder() -> RequestBuilder<'a> {
RequestBuilder::default()
}
}
impl<'a> RequestBuilder<'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 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
}
}
impl RestEndpoint for Request<'_> {
fn method(&self) -> http::Method {
http::Method::PUT
}
fn endpoint(&self) -> Cow<'static, str> {
format!(
"allocations/{consumer_uuid}",
consumer_uuid = self.consumer_uuid.as_ref(),
)
.into()
}
fn parameters(&self) -> QueryParams {
QueryParams::default()
}
fn body(&self) -> Result<Option<(&'static str, Vec<u8>)>, BodyError> {
let mut params = JsonBodyParams::default();
params.push("allocations", serde_json::to_value(&self.allocations)?);
params.push("project_id", serde_json::to_value(&self.project_id)?);
params.push("user_id", serde_json::to_value(&self.user_id)?);
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, 12))
}
}
#[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()
.allocations(BTreeMap::<String, AllocationsItem<'_>>::new().into_iter())
.project_id("foo")
.user_id("foo")
.build()
.unwrap()
.service_type(),
ServiceType::Placement
);
}
#[test]
fn test_response_key() {
assert!(Request::builder()
.allocations(BTreeMap::<String, AllocationsItem<'_>>::new().into_iter())
.project_id("foo")
.user_id("foo")
.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::PUT).path(format!(
"/allocations/{consumer_uuid}",
consumer_uuid = "consumer_uuid",
));
then.status(200)
.header("content-type", "application/json")
.json_body(json!({ "dummy": {} }));
});
let endpoint = Request::builder()
.consumer_uuid("consumer_uuid")
.allocations(BTreeMap::<String, AllocationsItem<'_>>::new().into_iter())
.project_id("foo")
.user_id("foo")
.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::PUT)
.path(format!(
"/allocations/{consumer_uuid}",
consumer_uuid = "consumer_uuid",
))
.header("foo", "bar")
.header("not_foo", "not_bar");
then.status(200)
.header("content-type", "application/json")
.json_body(json!({ "dummy": {} }));
});
let endpoint = Request::builder()
.consumer_uuid("consumer_uuid")
.allocations(BTreeMap::<String, AllocationsItem<'_>>::new().into_iter())
.project_id("foo")
.user_id("foo")
.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();
}
}