#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct ResolveSeriesRequest {
#[builder(into)]
#[serde(rename = "name")]
name: String,
#[serde(rename = "datasource")]
datasource: conjure_object::ResourceIdentifier,
#[builder(default, map(key(type = String, into), value(type = String, into)))]
#[serde(
rename = "tags",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
tags: std::collections::BTreeMap<String, String>,
}
impl ResolveSeriesRequest {
#[inline]
pub fn new(
name: impl Into<String>,
datasource: conjure_object::ResourceIdentifier,
) -> Self {
Self::builder().name(name).datasource(datasource).build()
}
#[inline]
pub fn name(&self) -> &str {
&*self.name
}
#[inline]
pub fn datasource(&self) -> &conjure_object::ResourceIdentifier {
&self.datasource
}
#[inline]
pub fn tags(&self) -> &std::collections::BTreeMap<String, String> {
&self.tags
}
}