Struct k8s_openapi::v1_7::kubernetes::pkg::api::v1::ResourceQuotaSpec
source · pub struct ResourceQuotaSpec {
pub hard: Option<BTreeMap<String, Quantity>>,
pub scopes: Option<Vec<String>>,
}
Expand description
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
Fields§
§hard: Option<BTreeMap<String, Quantity>>
Hard is the set of desired hard limits for each named resource. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md
scopes: Option<Vec<String>>
A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
Trait Implementations§
source§impl Clone for ResourceQuotaSpec
impl Clone for ResourceQuotaSpec
source§fn clone(&self) -> ResourceQuotaSpec
fn clone(&self) -> ResourceQuotaSpec
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ResourceQuotaSpec
impl Debug for ResourceQuotaSpec
source§impl Default for ResourceQuotaSpec
impl Default for ResourceQuotaSpec
source§fn default() -> ResourceQuotaSpec
fn default() -> ResourceQuotaSpec
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ResourceQuotaSpec
impl<'de> Deserialize<'de> for ResourceQuotaSpec
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more