private static string ProcessRecordAsync(string Token, string netid, SetStaticRoute route, string routeid) { var task = UpdateStaticRoutes(Token, netid, route, routeid); task.Wait(); var result = task.Result; return(result); }
// This method will be called for each input received from the pipeline to this cmdlet; if no input is received, this method is not called protected override void ProcessRecord() { SetStaticRoute route = new SetStaticRoute(); route.name = name; route.subnet = subnet; route.gatewayIp = gatewayIp; route.enabled = enabled; WriteVerbose("Entering Get Orgs call"); var list = ProcessRecordAsync(Token, netid, route, routeid); SetStaticRoute result = JsonSerializer.Deserialize <SetStaticRoute>(list); WriteObject(result, true); WriteVerbose("Exiting foreach"); }
private static async Task <string> UpdateStaticRoutes(string Token, string netid, SetStaticRoute route, string routeid) { using (HttpClient client = new HttpClient()) { string jsonString; string uri; uri = $"https://dashboard.meraki.com/api/v0/networks/{netid}/staticRoutes/{routeid}"; jsonString = JsonSerializer.Serialize <SetStaticRoute>(route); var content = new StringContent(jsonString); content.Headers.ContentType = new MediaTypeHeaderValue("application/json"); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add( new MediaTypeWithQualityHeaderValue("application/json")); client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "application/json; charset=utf-8"); client.DefaultRequestHeaders.Add("X-Cisco-Meraki-API-Key", Token); var response = await client.PutAsync(uri, content); var contents = await response.Content.ReadAsStringAsync(); return(contents); } }