#[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 GetDataScopeBoundsRequest {
#[serde(rename = "dataSourceRid")]
data_source_rid: 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 GetDataScopeBoundsRequest {
#[inline]
pub fn new(data_source_rid: conjure_object::ResourceIdentifier) -> Self {
Self::builder().data_source_rid(data_source_rid).build()
}
#[inline]
pub fn data_source_rid(&self) -> &conjure_object::ResourceIdentifier {
&self.data_source_rid
}
#[inline]
pub fn tags(&self) -> &std::collections::BTreeMap<String, String> {
&self.tags
}
}