private/cmdlets/models/NewNutanixCredential_ServerPortProtocolUsernameExpanded.cs
namespace Nutanix.Powershell.ModelCmdlets { using static Microsoft.Rest.ClientRuntime.Extensions; /// <summary> /// Cmdlet to create an in-memory instance of the <see cref="Disk" /> object. /// </summary> [System.Management.Automation.Cmdlet(System.Management.Automation.VerbsCommon.New, @"NutanixCredential_ServerPortProtocolUsernameExpanded")] [System.Management.Automation.OutputType(typeof(Nutanix.Powershell.Models.NutanixCredential))] public class NewNutanixCredential_ServerPortProtocolUsernameExpanded : System.Management.Automation.PSCmdlet { /// <summary>Backing field for <see cref="VmDisk" /></summary> private Nutanix.Powershell.Models.NutanixCredential _credential = new Nutanix.Powershell.Models.NutanixCredential(); /// <summary>HELP MESSAGE MISSING</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "HELP MESSAGE MISSING")] public string Server { set { _credential.Server = value; } } /// <summary>HELP MESSAGE MISSING</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "HELP MESSAGE MISSING")] public string Port { set { _credential.Port = value; } } /// <summary>HELP MESSAGE MISSING</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "HELP MESSAGE MISSING")] public string Protocol { set { _credential.Protocol = value; } } /// <summary>HELP MESSAGE MISSING</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "HELP MESSAGE MISSING")] public string Username { set { _credential.Username = value; } } /// <summary>HELP MESSAGE MISSING</summary> [System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "HELP MESSAGE MISSING")] public string Password { set { System.Security.SecureString result = new System.Security.SecureString(); if (value.Length > 0 ) { foreach (char c in value) result.AppendChar(c); } _credential.Password = result; } } /// <summary>Performs execution of the command.</summary> protected override void ProcessRecord() { var _uri = new System.Uri($"{_credential.Protocol ?? "http" }://{_credential.Server}:{_credential.Port ?? "80" }"); _credential.Uri = _uri; WriteObject(_credential); } } } |