mirror of
https://github.com/Tribufu/ProxmoxSharp
synced 2026-08-07 20:06:24 +00:00
93 lines
3.2 KiB
C#
93 lines
3.2 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>
|
|
/// CreateClusterHaResourcesSingleRelocateRequest
|
|
/// </summary>
|
|
[DataContract(Name = "CreateClusterHaResourcesSingleRelocateRequest")]
|
|
public partial class CreateClusterHaResourcesSingleRelocateRequest : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterHaResourcesSingleRelocateRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected CreateClusterHaResourcesSingleRelocateRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterHaResourcesSingleRelocateRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="node">node (required).</param>
|
|
public CreateClusterHaResourcesSingleRelocateRequest(string node = default(string))
|
|
{
|
|
// to ensure "node" is required (not null)
|
|
if (node == null)
|
|
{
|
|
throw new ArgumentNullException("node is a required property for CreateClusterHaResourcesSingleRelocateRequest and cannot be null");
|
|
}
|
|
this.Node = node;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Node
|
|
/// </summary>
|
|
[DataMember(Name = "node", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Node { 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 CreateClusterHaResourcesSingleRelocateRequest {\n");
|
|
sb.Append(" Node: ").Append(Node).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;
|
|
}
|
|
}
|
|
|
|
}
|