private/cmdlets/models/NewVmRecoveryPointListMetadataObject.cs
namespace Nutanix.Powershell.ModelCmdlets { using static Microsoft.Rest.ClientRuntime.Extensions; /// <summary> /// Cmdlet to create an in-memory instance of the <see cref="VmRecoveryPointListMetadata" /> object. /// </summary> [System.Management.Automation.Cmdlet(System.Management.Automation.VerbsCommon.New, @"VmRecoveryPointListMetadataObject")] [System.Management.Automation.OutputType(typeof(Nutanix.Powershell.Models.IVmRecoveryPointListMetadata))] public class NewVmRecoveryPointListMetadataObject : System.Management.Automation.PSCmdlet { /// <summary>Backing field for <see cref="VmRecoveryPointListMetadata" /></summary> private Nutanix.Powershell.Models.IVmRecoveryPointListMetadata _vmRecoveryPointListMetadata = new Nutanix.Powershell.Models.VmRecoveryPointListMetadata(); /// <summary>The filter in FIQL syntax used for the results.</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The filter in FIQL syntax used for the results.")] public string Filter { set { _vmRecoveryPointListMetadata.Filter = value; } } /// <summary>The number of records to retrieve relative to the offset</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The number of records to retrieve relative to the offset")] public int Length { set { _vmRecoveryPointListMetadata.Length = value; } } /// <summary>Offset from the start of the entity list</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Offset from the start of the entity list")] public int Offset { set { _vmRecoveryPointListMetadata.Offset = value; } } /// <summary>The attribute to perform sort on</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The attribute to perform sort on")] public string SortAttribute { set { _vmRecoveryPointListMetadata.SortAttribute = value; } } /// <summary>The sort order in which results are returned</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The sort order in which results are returned")] public string SortOrder { set { _vmRecoveryPointListMetadata.SortOrder = value; } } /// <summary>Performs execution of the command.</summary> protected override void ProcessRecord() { _vmRecoveryPointListMetadata.Kind = "recovery_point"; WriteObject(_vmRecoveryPointListMetadata); } } } |