-
Notifications
You must be signed in to change notification settings - Fork 5
/
SetNetUplinkSettings.cs
177 lines (152 loc) · 5.75 KB
/
SetNetUplinkSettings.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
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.Text.Json.Serialization;
using System.Collections.Generic;
namespace GetMerakiOrgsCmdlet
{
[Cmdlet(VerbsCommon.Set, "UplinkSettings")]
[OutputType(typeof(UplinkSettings))]
public class SetUplinkSettingsCommand : 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 = false,
Position = 2,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int wan1UpLimit { get; set; }
[Parameter(
Mandatory = false,
Position = 3,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int wan1DownLimit { get; set; }
[Parameter(
Mandatory = false,
Position = 4,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int wan2UpLimit { get; set; }
[Parameter(
Mandatory = false,
Position = 5,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int wan2DownLimit { get; set; }
[Parameter(
Mandatory = false,
Position = 6,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int CellularUpLimit { get; set; }
[Parameter(
Mandatory = false,
Position = 7,
ValueFromPipeline = true,
ValueFromPipelineByPropertyName = true)]
public int CellularDownLimit { get; set; }
private static async Task<string> UpdateUplinks(string Token, string netid, UplinkSettings set)
{
using (HttpClient client = new HttpClient())
{
string jsonString;
string uri;
uri = $"https://dashboard.meraki.com/api/v0/networks/{netid}/uplinkSettings";
jsonString = JsonSerializer.Serialize<UplinkSettings>(set);
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;
}
}
private static string ProcessRecordAsync(string Token, string netid, UplinkSettings set)
{
var task = UpdateUplinks(Token, netid, set);
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);
}
// 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()
{
UplinkSettings set = new UplinkSettings();
SetBandwidthLimits band = new SetBandwidthLimits();
Cellular cell = new Cellular();
Wan1 wan1 = new Wan1();
Wan2 wan2 = new Wan2();
wan1.limitDown = wan1DownLimit;
wan1.limitUp = wan1UpLimit;
wan2.limitDown = wan2DownLimit;
wan2.limitUp = wan2UpLimit;
cell.limitUp = CellularUpLimit;
cell.limitDown = CellularDownLimit;
band.wan1 = wan1;
band.wan2 = wan2;
band.cellular = cell;
set.bandwidthLimits = band;
WriteVerbose("Entering Get Orgs call");
var list = ProcessRecordAsync(Token, netid, set);
UplinkSettings result = JsonSerializer.Deserialize<UplinkSettings>(list);
WriteObject(result, 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!");
}
}
public class Wan1
{
public int limitUp { get; set; }
public int limitDown { get; set; }
}
public class Wan2
{
public int limitUp { get; set; }
public int limitDown { get; set; }
}
public class Cellular
{
public int limitUp { get; set; }
public int limitDown { get; set; }
}
public class SetBandwidthLimits
{
public Wan1 wan1 { get; set; }
public Wan2 wan2 { get; set; }
public Cellular cellular { get; set; }
}
public class UplinkSettings
{
public SetBandwidthLimits bandwidthLimits { get; set; }
}
}