mirror of
https://github.com/Tribufu/ProxmoxSharp
synced 2026-08-07 20:06:24 +00:00
161 lines
5.8 KiB
C#
161 lines
5.8 KiB
C#
/*
|
|
* ProxMox VE API
|
|
*
|
|
* ProxMox VE API
|
|
*
|
|
* The version of the OpenAPI document: 2.0
|
|
* Contact: support@lumaserv.com
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using OpenAPIDateConverter = ProxmoxSharp.Client.OpenAPIDateConverter;
|
|
|
|
namespace ProxmoxSharp.Model
|
|
{
|
|
/// <summary>
|
|
/// CreateClusterSDNVnetRequest
|
|
/// </summary>
|
|
[DataContract(Name = "CreateClusterSDNVnetRequest")]
|
|
public partial class CreateClusterSDNVnetRequest : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterSDNVnetRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected CreateClusterSDNVnetRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterSDNVnetRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="alias">alias.</param>
|
|
/// <param name="isolatePorts">isolatePorts.</param>
|
|
/// <param name="lockToken">lockToken.</param>
|
|
/// <param name="tag">tag.</param>
|
|
/// <param name="type">type.</param>
|
|
/// <param name="vlanaware">vlanaware.</param>
|
|
/// <param name="vnet">vnet (required).</param>
|
|
/// <param name="zone">zone (required).</param>
|
|
public CreateClusterSDNVnetRequest(string alias = default(string), bool isolatePorts = default(bool), string lockToken = default(string), int tag = default(int), string type = default(string), bool vlanaware = default(bool), string vnet = default(string), string zone = default(string))
|
|
{
|
|
// to ensure "vnet" is required (not null)
|
|
if (vnet == null)
|
|
{
|
|
throw new ArgumentNullException("vnet is a required property for CreateClusterSDNVnetRequest and cannot be null");
|
|
}
|
|
this.Vnet = vnet;
|
|
// to ensure "zone" is required (not null)
|
|
if (zone == null)
|
|
{
|
|
throw new ArgumentNullException("zone is a required property for CreateClusterSDNVnetRequest and cannot be null");
|
|
}
|
|
this.Zone = zone;
|
|
this.Alias = alias;
|
|
this.IsolatePorts = isolatePorts;
|
|
this.LockToken = lockToken;
|
|
this.Tag = tag;
|
|
this.Type = type;
|
|
this.Vlanaware = vlanaware;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Alias
|
|
/// </summary>
|
|
[DataMember(Name = "alias", EmitDefaultValue = false)]
|
|
public string Alias { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets IsolatePorts
|
|
/// </summary>
|
|
[DataMember(Name = "isolate-ports", EmitDefaultValue = true)]
|
|
public bool IsolatePorts { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets LockToken
|
|
/// </summary>
|
|
[DataMember(Name = "lock-token", EmitDefaultValue = false)]
|
|
public string LockToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Tag
|
|
/// </summary>
|
|
[DataMember(Name = "tag", EmitDefaultValue = false)]
|
|
public int Tag { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Type
|
|
/// </summary>
|
|
[DataMember(Name = "type", EmitDefaultValue = false)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Vlanaware
|
|
/// </summary>
|
|
[DataMember(Name = "vlanaware", EmitDefaultValue = true)]
|
|
public bool Vlanaware { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Vnet
|
|
/// </summary>
|
|
[DataMember(Name = "vnet", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Vnet { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Zone
|
|
/// </summary>
|
|
[DataMember(Name = "zone", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Zone { get; set; }
|
|
|
|
/// <summary>
|
|
/// Returns the string presentation of the object
|
|
/// </summary>
|
|
/// <returns>String presentation of the object</returns>
|
|
public override string ToString()
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.Append("class CreateClusterSDNVnetRequest {\n");
|
|
sb.Append(" Alias: ").Append(Alias).Append("\n");
|
|
sb.Append(" IsolatePorts: ").Append(IsolatePorts).Append("\n");
|
|
sb.Append(" LockToken: ").Append(LockToken).Append("\n");
|
|
sb.Append(" Tag: ").Append(Tag).Append("\n");
|
|
sb.Append(" Type: ").Append(Type).Append("\n");
|
|
sb.Append(" Vlanaware: ").Append(Vlanaware).Append("\n");
|
|
sb.Append(" Vnet: ").Append(Vnet).Append("\n");
|
|
sb.Append(" Zone: ").Append(Zone).Append("\n");
|
|
sb.Append("}\n");
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the JSON string presentation of the object
|
|
/// </summary>
|
|
/// <returns>JSON string presentation of the object</returns>
|
|
public virtual string ToJson()
|
|
{
|
|
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
|
}
|
|
|
|
/// <summary>
|
|
/// To validate all properties of the instance
|
|
/// </summary>
|
|
/// <param name="validationContext">Validation context</param>
|
|
/// <returns>Validation Result</returns>
|
|
IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
|
{
|
|
yield break;
|
|
}
|
|
}
|
|
|
|
}
|