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.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// NonResourceAttributes includes the authorization attributes available
|
|
|
|
|
/// for non-resource requests to the Authorizer interface
|
|
|
|
|
/// </summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
public partial class V1beta1NonResourceAttributes
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
/// Initializes a new instance of the V1beta1NonResourceAttributes
|
|
|
|
|
/// class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2017-11-24 12:10:51 +08:00
|
|
|
public V1beta1NonResourceAttributes()
|
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 V1beta1NonResourceAttributes
|
|
|
|
|
/// class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">Path is the URL path of the request</param>
|
|
|
|
|
/// <param name="verb">Verb is the standard HTTP verb</param>
|
2017-11-24 12:10:51 +08:00
|
|
|
public V1beta1NonResourceAttributes(string path = default(string), string verb = default(string))
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
Path = path;
|
|
|
|
|
Verb = verb;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets path is the URL path of the request
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "path")]
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets verb is the standard HTTP verb
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "verb")]
|
|
|
|
|
public string Verb { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|