-
Notifications
You must be signed in to change notification settings - Fork 5
/
GetMerakiNetClientCmdlet.cs
116 lines (101 loc) · 4.02 KB
/
GetMerakiNetClientCmdlet.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using System;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text.Json;
using System.Collections.Generic;
namespace GetMerakiOrgsCmdlet
{
[Cmdlet(VerbsCommon.Get, "merakinetclient")]
[OutputType(typeof(NetworkClient))]
public class GetMerakiClientCommand : PSCmdlet
{
[Parameter(
Mandatory = true,
Position = 0,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public string Token { get; set; }
[Parameter(
Mandatory = true,
Position = 1,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public string netid { get; set; }
[Parameter(
Mandatory = true,
Position = 2,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public string clientid { get; set; }
private static async Task<NetworkClient> GetClient(string Token, string netid, string clientid)
{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("X-Cisco-Meraki-API-Key", Token);
var streamTask = client.GetStreamAsync($"https://dashboard.meraki.com/api/v0/networks/{netid}/clients/{clientid}");
return await JsonSerializer.DeserializeAsync<NetworkClient>(await streamTask);
}
}
private static NetworkClient ProcessRecordAsync(string Token, string netid, string clientid)
{
var task = GetClient(Token, netid, clientid);
task.Wait();
var result = task.Result;
return result;
}
// This method gets called once for each cmdlet in the pipeline when the pipeline starts executing
protected override void BeginProcessing()
{
WriteVerbose("Begin!");
WriteVerbose(Token);
WriteVerbose(clientid);
}
// 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()
{
WriteVerbose("Entering Get Orgs call");
var list = ProcessRecordAsync(Token, netid, clientid);
WriteObject(list,true);
WriteVerbose("Exiting foreach");
}
// // This method will be called once at the end of pipeline execution; if no input is received, this method is not called
protected override void EndProcessing()
{
WriteVerbose("End!");
}
} // end Get-MerakiOrgs
public class ClientVpnConnection
{
public string remoteIp { get; set; }
public int connectedAt { get; set; }
public int disconnectedAt { get; set; }
}
public class NetworkClient
{
public string id { get; set; }
public string description { get; set; }
public string mac { get; set; }
public string ip { get; set; }
public string user { get; set; }
public string vlan { get; set; }
public object switchport { get; set; }
public string ip6 { get; set; }
public int firstSeen { get; set; }
public int lastSeen { get; set; }
public string manufacturer { get; set; }
public string os { get; set; }
public string ssid { get; set; }
public string wirelessCapabilities { get; set; }
public bool smInstalled { get; set; }
public string recentDeviceMac { get; set; }
public ClientVpnConnection[] clientVpnConnections { get; set; }
public object cdp { get; set; }
public string status { get; set; }
}
}