mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
94 lines
3.3 KiB
C#
94 lines
3.3 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>
|
|
/// A blocking HA resource
|
|
/// </summary>
|
|
[DataContract(Name = "createClusterHaResourcesSingleRelocate_200_response_data_blocking_resources_inner")]
|
|
public partial class CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner" /> class.
|
|
/// </summary>
|
|
/// <param name="cause">The reason why the HA resource is blocking the relocation..</param>
|
|
/// <param name="sid">The blocking HA resource id.</param>
|
|
public CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner(string cause = default(string), string sid = default(string))
|
|
{
|
|
this.Cause = cause;
|
|
this.Sid = sid;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The reason why the HA resource is blocking the relocation.
|
|
/// </summary>
|
|
/// <value>The reason why the HA resource is blocking the relocation.</value>
|
|
[DataMember(Name = "cause", EmitDefaultValue = false)]
|
|
public string Cause { get; set; }
|
|
|
|
/// <summary>
|
|
/// The blocking HA resource id
|
|
/// </summary>
|
|
/// <value>The blocking HA resource id</value>
|
|
[DataMember(Name = "sid", EmitDefaultValue = false)]
|
|
public string Sid { 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 CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner {\n");
|
|
sb.Append(" Cause: ").Append(Cause).Append("\n");
|
|
sb.Append(" Sid: ").Append(Sid).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;
|
|
}
|
|
}
|
|
|
|
}
|