Files
csharp/src/KubernetesClient/generated/Models/V1ResourceQuotaStatus.cs

64 lines
2.3 KiB
C#

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