2017-10-19 19:53:02 +00:00
|
|
|
// <auto-generated>
|
|
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
2017-06-06 23:02:14 -07:00
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
|
|
|
|
// regenerated.
|
2017-10-19 19:53:02 +00:00
|
|
|
// </auto-generated>
|
2017-06-06 23:02:14 -07:00
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
|
|
|
|
|
/// </summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
public partial class V1ResourceQuotaSpec
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
/// Initializes a new instance of the V1ResourceQuotaSpec class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
public V1ResourceQuotaSpec()
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
2017-10-19 19:53:02 +00:00
|
|
|
CustomInit();
|
2017-06-06 23:02:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
/// Initializes a new instance of the V1ResourceQuotaSpec class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2018-07-02 22:22:11 +08:00
|
|
|
/// <param name="hard">hard is the set of desired hard limits for each
|
2017-06-06 23:02:14 -07:00
|
|
|
/// named resource. More info:
|
2018-01-27 04:25:58 +08:00
|
|
|
/// https://kubernetes.io/docs/concepts/policy/resource-quotas/</param>
|
2018-07-02 22:22:11 +08:00
|
|
|
/// <param name="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.</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="scopes">A collection of filters that must match each
|
|
|
|
|
/// object tracked by a quota. If not specified, the quota matches all
|
|
|
|
|
/// objects.</param>
|
2018-07-02 22:22:11 +08:00
|
|
|
public V1ResourceQuotaSpec(IDictionary<string, ResourceQuantity> hard = default(IDictionary<string, ResourceQuantity>), V1ScopeSelector scopeSelector = default(V1ScopeSelector), IList<string> scopes = default(IList<string>))
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
Hard = hard;
|
2018-07-02 22:22:11 +08:00
|
|
|
ScopeSelector = scopeSelector;
|
2017-06-06 23:02:14 -07:00
|
|
|
Scopes = scopes;
|
|
|
|
|
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 desired hard limits for each named
|
|
|
|
|
/// resource. More info:
|
2018-01-27 04:25:58 +08:00
|
|
|
/// https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "hard")]
|
2017-11-24 12:10:51 +08:00
|
|
|
public IDictionary<string, ResourceQuantity> Hard { get; set; }
|
2017-06-06 23:02:14 -07:00
|
|
|
|
2018-07-02 22:22:11 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets 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.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "scopeSelector")]
|
|
|
|
|
public V1ScopeSelector ScopeSelector { get; set; }
|
|
|
|
|
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a collection of filters that must match each object
|
|
|
|
|
/// tracked by a quota. If not specified, the quota matches all
|
|
|
|
|
/// objects.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "scopes")]
|
|
|
|
|
public IList<string> Scopes { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|