Files
csharp/src/generated/Models/Apiauthenticationv1TokenReview.cs

120 lines
4.8 KiB
C#
Raw Normal View History

2017-10-19 19:53:02 +00:00
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
2017-10-19 19:53:02 +00:00
// </auto-generated>
namespace k8s.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// TokenReview attempts to authenticate a token to a known user. Note:
/// TokenReview requests may be cached by the webhook token authenticator
/// plugin in the kube-apiserver.
/// </summary>
2017-10-19 19:53:02 +00:00
public partial class Apiauthenticationv1TokenReview
{
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the Apiauthenticationv1TokenReview
/// class.
/// </summary>
2017-10-19 19:53:02 +00:00
public Apiauthenticationv1TokenReview()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the Apiauthenticationv1TokenReview
/// class.
/// </summary>
/// <param name="spec">Spec holds information about the request being
/// evaluated</param>
/// <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>
/// <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>
/// <param name="status">Status is filled in by the server and
/// indicates whether the request can be authenticated.</param>
2017-10-19 19:53:02 +00:00
public Apiauthenticationv1TokenReview(Apiauthenticationv1TokenReviewSpec spec, string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), Apiauthenticationv1TokenReviewStatus status = default(Apiauthenticationv1TokenReviewStatus))
{
ApiVersion = apiVersion;
Kind = kind;
Metadata = metadata;
Spec = spec;
Status = status;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <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
/// </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
/// </summary>
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
/// <summary>
/// </summary>
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
/// <summary>
/// Gets or sets spec holds information about the request being
/// evaluated
/// </summary>
[JsonProperty(PropertyName = "spec")]
2017-10-19 19:53:02 +00:00
public Apiauthenticationv1TokenReviewSpec Spec { get; set; }
/// <summary>
/// Gets or sets status is filled in by the server and indicates
/// whether the request can be authenticated.
/// </summary>
[JsonProperty(PropertyName = "status")]
2017-10-19 19:53:02 +00:00
public Apiauthenticationv1TokenReviewStatus Status { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Spec == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Spec");
}
2017-10-19 19:53:02 +00:00
if (Metadata != null)
{
Metadata.Validate();
}
}
}
}