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 Microsoft.Rest;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ClusterRole is a cluster level, logical grouping of PolicyRules that
|
|
|
|
|
/// can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
|
|
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public partial class V1ClusterRole
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the V1ClusterRole class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public V1ClusterRole()
|
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-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the V1ClusterRole class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="rules">Rules holds all the PolicyRules for this
|
|
|
|
|
/// ClusterRole</param>
|
2018-01-27 04:25:58 +08:00
|
|
|
/// <param name="aggregationRule">AggregationRule is an optional field
|
|
|
|
|
/// that describes how to build the Rules for this ClusterRole. If
|
|
|
|
|
/// AggregationRule is set, then the Rules are controller managed and
|
|
|
|
|
/// direct changes to Rules will be stomped by the controller.</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="apiVersion">APIVersion defines the versioned schema of
|
|
|
|
|
/// this representation of an object. Servers should convert recognized
|
|
|
|
|
/// schemas to the latest internal value, and may reject unrecognized
|
|
|
|
|
/// values. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="kind">Kind is a string value representing the REST
|
|
|
|
|
/// resource this object represents. Servers may infer this from the
|
|
|
|
|
/// endpoint the client submits requests to. Cannot be updated. In
|
|
|
|
|
/// CamelCase. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="metadata">Standard object's metadata.</param>
|
2018-01-27 04:25:58 +08:00
|
|
|
public V1ClusterRole(IList<V1PolicyRule> rules, V1AggregationRule aggregationRule = default(V1AggregationRule), string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta))
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
2018-01-27 04:25:58 +08:00
|
|
|
AggregationRule = aggregationRule;
|
2017-06-06 23:02:14 -07:00
|
|
|
ApiVersion = apiVersion;
|
|
|
|
|
Kind = kind;
|
|
|
|
|
Metadata = metadata;
|
|
|
|
|
Rules = rules;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
2018-01-27 04:25:58 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets aggregationRule is an optional field that describes
|
|
|
|
|
/// how to build the Rules for this ClusterRole. If AggregationRule is
|
|
|
|
|
/// set, then the Rules are controller managed and direct changes to
|
|
|
|
|
/// Rules will be stomped by the controller.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "aggregationRule")]
|
|
|
|
|
public V1AggregationRule AggregationRule { get; set; }
|
|
|
|
|
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets aPIVersion defines the versioned schema of this
|
|
|
|
|
/// representation of an object. Servers should convert recognized
|
|
|
|
|
/// schemas to the latest internal value, and may reject unrecognized
|
|
|
|
|
/// values. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "apiVersion")]
|
|
|
|
|
public string ApiVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets kind is a string value representing the REST resource
|
|
|
|
|
/// this object represents. Servers may infer this from the endpoint
|
|
|
|
|
/// the client submits requests to. Cannot be updated. In CamelCase.
|
|
|
|
|
/// More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "kind")]
|
|
|
|
|
public string Kind { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets standard object's metadata.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "metadata")]
|
|
|
|
|
public V1ObjectMeta Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets rules holds all the PolicyRules for this ClusterRole
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "rules")]
|
2017-10-19 19:53:02 +00:00
|
|
|
public IList<V1PolicyRule> Rules { get; set; }
|
2017-06-06 23:02:14 -07:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Validate the object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <exception cref="ValidationException">
|
|
|
|
|
/// Thrown if validation fails
|
|
|
|
|
/// </exception>
|
|
|
|
|
public virtual void Validate()
|
|
|
|
|
{
|
|
|
|
|
if (Rules == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ValidationException(ValidationRules.CannotBeNull, "Rules");
|
|
|
|
|
}
|
2017-10-19 19:53:02 +00:00
|
|
|
if (Metadata != null)
|
|
|
|
|
{
|
|
|
|
|
Metadata.Validate();
|
|
|
|
|
}
|
2017-06-06 23:02:14 -07:00
|
|
|
if (Rules != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var element in Rules)
|
|
|
|
|
{
|
|
|
|
|
if (element != null)
|
|
|
|
|
{
|
|
|
|
|
element.Validate();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|