#[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 NotAuthorizedAdmin {
#[serde(rename = "rid")]
rid: conjure_object::ResourceIdentifier,
}
impl NotAuthorizedAdmin {
#[inline]
pub fn new(rid: conjure_object::ResourceIdentifier) -> Self {
Self::builder().rid(rid).build()
}
#[inline]
pub fn rid(&self) -> &conjure_object::ResourceIdentifier {
&self.rid
}
}
impl conjure_error::ErrorType for NotAuthorizedAdmin {
#[inline]
fn code() -> conjure_error::ErrorCode {
conjure_error::ErrorCode::PermissionDenied
}
#[inline]
fn name() -> &'static str {
"Authorization:NotAuthorizedAdmin"
}
#[inline]
fn safe_args() -> &'static [&'static str] {
&["rid"]
}
}