// // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. // namespace k8s.Models { using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; using System.Linq; /// /// ResourceQuotaStatus defines the enforced hard limits and observed use. /// public partial class V1ResourceQuotaStatus { /// /// Initializes a new instance of the V1ResourceQuotaStatus class. /// public V1ResourceQuotaStatus() { CustomInit(); } /// /// Initializes a new instance of the V1ResourceQuotaStatus class. /// /// Hard is the set of enforced hard limits for each /// named resource. More info: /// https://kubernetes.io/docs/concepts/policy/resource-quotas/ /// Used is the current observed total usage of the /// resource in the namespace. public V1ResourceQuotaStatus(IDictionary hard = default(IDictionary), IDictionary used = default(IDictionary)) { Hard = hard; Used = used; CustomInit(); } /// /// An initialization method that performs custom operations like setting defaults /// partial void CustomInit(); /// /// Gets or sets hard is the set of enforced hard limits for each named /// resource. More info: /// https://kubernetes.io/docs/concepts/policy/resource-quotas/ /// [JsonProperty(PropertyName = "hard")] public IDictionary Hard { get; set; } /// /// Gets or sets used is the current observed total usage of the /// resource in the namespace. /// [JsonProperty(PropertyName = "used")] public IDictionary Used { get; set; } } }