private/api/Nutanix/Powershell/Models/PublicKey.cs
namespace Nutanix.Powershell.Models { using static Microsoft.Rest.ClientRuntime.Extensions; /// <summary>Public Key</summary> public partial class PublicKey : Nutanix.Powershell.Models.IPublicKey, Microsoft.Rest.ClientRuntime.IValidates { /// <summary>Backing field for <see cref="Key" /> property.</summary> private string _key; public string Key { get { return this._key; } set { this._key = value; } } /// <summary>Backing field for <see cref="Name" /> property.</summary> private string _name; public string Name { get { return this._name; } set { this._name = value; } } /// <summary>Creates an new <see cref="PublicKey" /> instance.</summary> public PublicKey() { } /// <summary>Validates that this object meets the validation criteria.</summary> /// <param name="eventListener">an <see cref="Microsoft.Rest.ClientRuntime.IEventListener" /> instance that will receive validation /// events.</param> /// <returns> /// A <see cref="System.Threading.Tasks.Task" /> that will be complete when validation is completed. /// </returns> public async System.Threading.Tasks.Task Validate(Microsoft.Rest.ClientRuntime.IEventListener eventListener) { await eventListener.AssertNotNull(nameof(Name),Name); await eventListener.AssertMaximumLength(nameof(Name),Name,64); await eventListener.AssertNotNull(nameof(Key),Key); } } /// Public Key public partial interface IPublicKey : Microsoft.Rest.ClientRuntime.IJsonSerializable { string Key { get; set; } string Name { get; set; } } } |