//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
//
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
///
/// NonResourceAttributes includes the authorization attributes available
/// for non-resource requests to the Authorizer interface
///
public partial class V1NonResourceAttributes
{
///
/// Initializes a new instance of the V1NonResourceAttributes class.
///
public V1NonResourceAttributes()
{
CustomInit();
}
///
/// Initializes a new instance of the V1NonResourceAttributes class.
///
/// Path is the URL path of the request
/// Verb is the standard HTTP verb
public V1NonResourceAttributes(string path = default(string), string verb = default(string))
{
Path = path;
Verb = verb;
CustomInit();
}
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
///
/// Gets or sets path is the URL path of the request
///
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
///
/// Gets or sets verb is the standard HTTP verb
///
[JsonProperty(PropertyName = "verb")]
public string Verb { get; set; }
}
}