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