mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
156 lines
5.6 KiB
C#
156 lines
5.6 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>
|
|
/// CreateClusterHaResourcesRequest
|
|
/// </summary>
|
|
[DataContract(Name = "CreateClusterHaResourcesRequest")]
|
|
public partial class CreateClusterHaResourcesRequest : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterHaResourcesRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected CreateClusterHaResourcesRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterHaResourcesRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="comment">comment.</param>
|
|
/// <param name="failback">failback.</param>
|
|
/// <param name="group">group.</param>
|
|
/// <param name="maxRelocate">maxRelocate.</param>
|
|
/// <param name="maxRestart">maxRestart.</param>
|
|
/// <param name="sid">sid (required).</param>
|
|
/// <param name="state">state.</param>
|
|
/// <param name="type">type.</param>
|
|
public CreateClusterHaResourcesRequest(string comment = default(string), bool failback = default(bool), string group = default(string), int maxRelocate = default(int), int maxRestart = default(int), string sid = default(string), string state = default(string), string type = default(string))
|
|
{
|
|
// to ensure "sid" is required (not null)
|
|
if (sid == null)
|
|
{
|
|
throw new ArgumentNullException("sid is a required property for CreateClusterHaResourcesRequest and cannot be null");
|
|
}
|
|
this.Sid = sid;
|
|
this.Comment = comment;
|
|
this.Failback = failback;
|
|
this.Group = group;
|
|
this.MaxRelocate = maxRelocate;
|
|
this.MaxRestart = maxRestart;
|
|
this.State = state;
|
|
this.Type = type;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Comment
|
|
/// </summary>
|
|
[DataMember(Name = "comment", EmitDefaultValue = false)]
|
|
public string Comment { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Failback
|
|
/// </summary>
|
|
[DataMember(Name = "failback", EmitDefaultValue = true)]
|
|
public bool Failback { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Group
|
|
/// </summary>
|
|
[DataMember(Name = "group", EmitDefaultValue = false)]
|
|
public string Group { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets MaxRelocate
|
|
/// </summary>
|
|
[DataMember(Name = "max_relocate", EmitDefaultValue = false)]
|
|
public int MaxRelocate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets MaxRestart
|
|
/// </summary>
|
|
[DataMember(Name = "max_restart", EmitDefaultValue = false)]
|
|
public int MaxRestart { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Sid
|
|
/// </summary>
|
|
[DataMember(Name = "sid", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Sid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets State
|
|
/// </summary>
|
|
[DataMember(Name = "state", EmitDefaultValue = false)]
|
|
public string State { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Type
|
|
/// </summary>
|
|
[DataMember(Name = "type", EmitDefaultValue = false)]
|
|
public string Type { 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 CreateClusterHaResourcesRequest {\n");
|
|
sb.Append(" Comment: ").Append(Comment).Append("\n");
|
|
sb.Append(" Failback: ").Append(Failback).Append("\n");
|
|
sb.Append(" Group: ").Append(Group).Append("\n");
|
|
sb.Append(" MaxRelocate: ").Append(MaxRelocate).Append("\n");
|
|
sb.Append(" MaxRestart: ").Append(MaxRestart).Append("\n");
|
|
sb.Append(" Sid: ").Append(Sid).Append("\n");
|
|
sb.Append(" State: ").Append(State).Append("\n");
|
|
sb.Append(" Type: ").Append(Type).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;
|
|
}
|
|
}
|
|
|
|
}
|