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

71 lines
2.5 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>
/// ServiceReference holds a reference to Service.legacy.k8s.io
/// </summary>
2018-01-27 04:25:58 +08:00
public partial class Apiregistrationv1beta1ServiceReference
2017-10-19 19:53:02 +00:00
{
/// <summary>
2018-01-27 04:25:58 +08:00
/// Initializes a new instance of the
/// Apiregistrationv1beta1ServiceReference class.
2017-10-19 19:53:02 +00:00
/// </summary>
2018-01-27 04:25:58 +08:00
public Apiregistrationv1beta1ServiceReference()
2017-10-19 19:53:02 +00:00
{
CustomInit();
}
/// <summary>
2018-01-27 04:25:58 +08:00
/// Initializes a new instance of the
/// Apiregistrationv1beta1ServiceReference class.
2017-10-19 19:53:02 +00:00
/// </summary>
/// <param name="name">Name is the name of the service</param>
/// <param name="namespaceProperty">Namespace is the namespace of the
/// service</param>
2019-06-22 21:57:10 +00:00
/// <param name="port">If specified, the port on the service that
/// hosting webhook. Default to 443 for backward compatibility. `port`
/// should be a valid port number (1-65535, inclusive).</param>
public Apiregistrationv1beta1ServiceReference(string name = default(string), string namespaceProperty = default(string), int? port = default(int?))
2017-10-19 19:53:02 +00:00
{
Name = name;
NamespaceProperty = namespaceProperty;
2019-06-22 21:57:10 +00:00
Port = port;
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets name is the name of the service
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// Gets or sets namespace is the namespace of the service
/// </summary>
[JsonProperty(PropertyName = "namespace")]
public string NamespaceProperty { get; set; }
2019-06-22 21:57:10 +00:00
/// <summary>
/// Gets or sets if specified, the port on the service that hosting
/// webhook. Default to 443 for backward compatibility. `port` should
/// be a valid port number (1-65535, inclusive).
/// </summary>
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
2017-10-19 19:53:02 +00:00
}
}