mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
134 lines
4.8 KiB
C#
134 lines
4.8 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>
|
|
/// CreateClusterMappingPciRequest
|
|
/// </summary>
|
|
[DataContract(Name = "CreateClusterMappingPciRequest")]
|
|
public partial class CreateClusterMappingPciRequest : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterMappingPciRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected CreateClusterMappingPciRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateClusterMappingPciRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="description">description.</param>
|
|
/// <param name="id">id (required).</param>
|
|
/// <param name="liveMigrationCapable">liveMigrationCapable.</param>
|
|
/// <param name="map">map (required).</param>
|
|
/// <param name="mdev">mdev.</param>
|
|
public CreateClusterMappingPciRequest(string description = default(string), string id = default(string), bool liveMigrationCapable = default(bool), List<string> map = default(List<string>), bool mdev = default(bool))
|
|
{
|
|
// to ensure "id" is required (not null)
|
|
if (id == null)
|
|
{
|
|
throw new ArgumentNullException("id is a required property for CreateClusterMappingPciRequest and cannot be null");
|
|
}
|
|
this.Id = id;
|
|
// to ensure "map" is required (not null)
|
|
if (map == null)
|
|
{
|
|
throw new ArgumentNullException("map is a required property for CreateClusterMappingPciRequest and cannot be null");
|
|
}
|
|
this.Map = map;
|
|
this.Description = description;
|
|
this.LiveMigrationCapable = liveMigrationCapable;
|
|
this.Mdev = mdev;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Description
|
|
/// </summary>
|
|
[DataMember(Name = "description", EmitDefaultValue = false)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Id
|
|
/// </summary>
|
|
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets LiveMigrationCapable
|
|
/// </summary>
|
|
[DataMember(Name = "live-migration-capable", EmitDefaultValue = true)]
|
|
public bool LiveMigrationCapable { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Map
|
|
/// </summary>
|
|
[DataMember(Name = "map", IsRequired = true, EmitDefaultValue = true)]
|
|
public List<string> Map { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Mdev
|
|
/// </summary>
|
|
[DataMember(Name = "mdev", EmitDefaultValue = true)]
|
|
public bool Mdev { 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 CreateClusterMappingPciRequest {\n");
|
|
sb.Append(" Description: ").Append(Description).Append("\n");
|
|
sb.Append(" Id: ").Append(Id).Append("\n");
|
|
sb.Append(" LiveMigrationCapable: ").Append(LiveMigrationCapable).Append("\n");
|
|
sb.Append(" Map: ").Append(Map).Append("\n");
|
|
sb.Append(" Mdev: ").Append(Mdev).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;
|
|
}
|
|
}
|
|
|
|
}
|