nominal-api 0.1240.0

API bindings for the Nominal platform
Documentation
#[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 GetMetadataUsageCountRequest {
    #[builder(custom(type = super::MetadataUsageQuery, convert = Box::new))]
    #[serde(rename = "query")]
    query: Box<super::MetadataUsageQuery>,
    #[builder(default, into)]
    #[serde(rename = "resourceTypes", skip_serializing_if = "Option::is_none", default)]
    resource_types: Option<std::collections::BTreeSet<super::ResourceType>>,
    #[builder(default, into)]
    #[serde(rename = "workspaces", skip_serializing_if = "Option::is_none", default)]
    workspaces: Option<
        std::collections::BTreeSet<super::super::super::api::rids::WorkspaceRid>,
    >,
}
impl GetMetadataUsageCountRequest {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(query: super::MetadataUsageQuery) -> Self {
        Self::builder().query(query).build()
    }
    #[inline]
    pub fn query(&self) -> &super::MetadataUsageQuery {
        &*self.query
    }
    /// If omitted, all resource types are included.
    #[inline]
    pub fn resource_types(
        &self,
    ) -> Option<&std::collections::BTreeSet<super::ResourceType>> {
        self.resource_types.as_ref().map(|o| &*o)
    }
    /// If omitted, results will come from all workspaces the user belongs to.
    #[inline]
    pub fn workspaces(
        &self,
    ) -> Option<
        &std::collections::BTreeSet<super::super::super::api::rids::WorkspaceRid>,
    > {
        self.workspaces.as_ref().map(|o| &*o)
    }
}