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.
|
|
|
|
|
// </auto-generated>
|
|
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// NetworkPolicyPort describes a port to allow traffic on
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class Apinetworkingv1NetworkPolicyPort
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the Apinetworkingv1NetworkPolicyPort
|
|
|
|
|
/// class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Apinetworkingv1NetworkPolicyPort()
|
|
|
|
|
{
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the Apinetworkingv1NetworkPolicyPort
|
|
|
|
|
/// class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="port">The port on the given protocol. This can either
|
|
|
|
|
/// be a numerical or named port on a pod. If this field is not
|
|
|
|
|
/// provided, this matches all port names and numbers.</param>
|
|
|
|
|
/// <param name="protocol">The protocol (TCP or UDP) which traffic must
|
|
|
|
|
/// match. If not specified, this field defaults to TCP.</param>
|
2017-11-16 20:44:53 +08:00
|
|
|
public Apinetworkingv1NetworkPolicyPort(IntOrString port = default(IntOrString), string protocol = default(string))
|
2017-10-19 19:53:02 +00:00
|
|
|
{
|
|
|
|
|
Port = port;
|
|
|
|
|
Protocol = protocol;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the port on the given protocol. This can either be a
|
|
|
|
|
/// numerical or named port on a pod. If this field is not provided,
|
|
|
|
|
/// this matches all port names and numbers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "port")]
|
2017-11-16 20:44:53 +08:00
|
|
|
public IntOrString Port { get; set; }
|
2017-10-19 19:53:02 +00:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the protocol (TCP or UDP) which traffic must match. If
|
|
|
|
|
/// not specified, this field defaults to TCP.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "protocol")]
|
|
|
|
|
public string Protocol { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|