Struct k8s_openapi::api::core::v1::ResourceQuotaSpec
source · pub struct ResourceQuotaSpec {
pub hard: Option<BTreeMap<String, Quantity>>,
pub scope_selector: Option<ScopeSelector>,
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://kubernetes.io/docs/concepts/policy/resource-quotas/
scope_selector: Option<ScopeSelector>
scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
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 DeepMerge for ResourceQuotaSpec
impl DeepMerge for ResourceQuotaSpec
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.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
source§impl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
impl PartialEq<ResourceQuotaSpec> for ResourceQuotaSpec
source§fn eq(&self, other: &ResourceQuotaSpec) -> bool
fn eq(&self, other: &ResourceQuotaSpec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.