mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
111 lines
3.7 KiB
C#
111 lines
3.7 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>
|
|
/// AddVMFirewallIPSetIPRequest
|
|
/// </summary>
|
|
[DataContract(Name = "AddVMFirewallIPSetIPRequest")]
|
|
public partial class AddVMFirewallIPSetIPRequest : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AddVMFirewallIPSetIPRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected AddVMFirewallIPSetIPRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AddVMFirewallIPSetIPRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="cidr">cidr (required).</param>
|
|
/// <param name="comment">comment.</param>
|
|
/// <param name="nomatch">nomatch.</param>
|
|
public AddVMFirewallIPSetIPRequest(string cidr = default(string), string comment = default(string), bool nomatch = default(bool))
|
|
{
|
|
// to ensure "cidr" is required (not null)
|
|
if (cidr == null)
|
|
{
|
|
throw new ArgumentNullException("cidr is a required property for AddVMFirewallIPSetIPRequest and cannot be null");
|
|
}
|
|
this.Cidr = cidr;
|
|
this.Comment = comment;
|
|
this.Nomatch = nomatch;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Cidr
|
|
/// </summary>
|
|
[DataMember(Name = "cidr", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Cidr { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Comment
|
|
/// </summary>
|
|
[DataMember(Name = "comment", EmitDefaultValue = false)]
|
|
public string Comment { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Nomatch
|
|
/// </summary>
|
|
[DataMember(Name = "nomatch", EmitDefaultValue = true)]
|
|
public bool Nomatch { 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 AddVMFirewallIPSetIPRequest {\n");
|
|
sb.Append(" Cidr: ").Append(Cidr).Append("\n");
|
|
sb.Append(" Comment: ").Append(Comment).Append("\n");
|
|
sb.Append(" Nomatch: ").Append(Nomatch).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;
|
|
}
|
|
}
|
|
|
|
}
|