namespace PS.IPAM.Cmdlets; using System; using System.Collections.Generic; using System.Management.Automation; using PS.IPAM; using PS.IPAM.Helpers; [Cmdlet(VerbsCommon.Get, "Section", DefaultParameterSetName = "NoParams")] [OutputType(typeof(Section))] public class GetSectionCmdlet : PSCmdlet { [Parameter( Mandatory = false, ValueFromPipeline = true, Position = 0, ParameterSetName = "ByID")] [ValidateNotNullOrEmpty] public int? Id { get; set; } [Parameter( Mandatory = true, ValueFromPipeline = true, Position = 0, ParameterSetName = "ByName")] [ValidateNotNullOrEmpty] public string? Name { get; set; } protected override void ProcessRecord() { try { var identifiers = new List(); if (ParameterSetName == "ByID" && Id.HasValue) { identifiers.Add(Id.Value.ToString()); } else if (ParameterSetName == "ByName") { identifiers.Add(Name!); } var result = RequestHelper.InvokeRequest("GET", controllers.sections, types.Section, null, null, identifiers.Count > 0 ? identifiers.ToArray() : null) .GetAwaiter().GetResult(); if (result != null) { if (result is System.Collections.IEnumerable enumerable && !(result is string)) { foreach (var item in enumerable) { WriteObject(item); } } else { WriteObject(result); } } } catch (Exception ex) { WriteError(new ErrorRecord(ex, "GetSectionError", ErrorCategory.InvalidOperation, null)); } } }