Files
csharp/src/KubernetesClient/generated/Models/V1NetworkPolicyPort.cs

63 lines
2.2 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.
// </auto-generated>
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// NetworkPolicyPort describes a port to allow traffic on
/// </summary>
public partial class V1NetworkPolicyPort
2017-10-19 19:53:02 +00:00
{
/// <summary>
/// Initializes a new instance of the V1NetworkPolicyPort class.
2017-10-19 19:53:02 +00:00
/// </summary>
public V1NetworkPolicyPort()
2017-10-19 19:53:02 +00:00
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1NetworkPolicyPort class.
2017-10-19 19:53:02 +00:00
/// </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, UDP, or SCTP) which
/// traffic must match. If not specified, this field defaults to
/// TCP.</param>
public V1NetworkPolicyPort(IntstrIntOrString port = default(IntstrIntOrString), 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")]
public IntstrIntOrString Port { get; set; }
2017-10-19 19:53:02 +00:00
/// <summary>
/// Gets or sets the protocol (TCP, UDP, or SCTP) which traffic must
/// match. If not specified, this field defaults to TCP.
2017-10-19 19:53:02 +00:00
/// </summary>
[JsonProperty(PropertyName = "protocol")]
public string Protocol { get; set; }
}
}