forked from robertj/GDataCmdLet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDataTypes.cs
366 lines (292 loc) · 9.27 KB
/
GDataTypes.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Web;
using System.Xml;
using System.Xml.Linq;
using Google.Contacts;
using Google.GData.Contacts;
using Google.GData.Client;
using Google.GData.Extensions;
using Google.GData.Apps;
using Google.GData.Extensions.Apps;
using Google.GData.Calendar;
using Google.GData.Apps.GoogleMailSettings;
namespace Microsoft.PowerShell.GData
{
public class GDataTypes
{
#region Service
public class GDataService
{
public AppsService AppsService;
public CalendarService CalendarService;
public CalendarService OauthCalendarService;
public GoogleMailSettingsService GoogleMailSettingsService;
public GDataTypes.GDataProfileService ProfileService;
public GDataTypes.GDataResourceService ResourceService;
public ContactsService ContactsService;
public ContactsService OauthContactsService;
public GDataTypes.Oauth Oauth;
}
#endregion Service
#region Group
public class GDataGroupEntrys : System.Collections.CollectionBase
{
public void Add(GDataGroupEntry GDataGroupEntry)
{
List.Add(GDataGroupEntry);
}
}
public class GDataGroupEntry
{
public string GroupId;
public string GroupName;
public string EmailPermission;
public string Description;
public string SelfUri;
}
public class GDataGroupMemberEntrys : System.Collections.CollectionBase
{
public void Add(GDataGroupMemberEntry GDataGroupMemberEntry)
{
List.Add(GDataGroupMemberEntry);
}
}
public class GDataGroupMemberEntry
{
public string MemberId;
public string MemberType;
public string DirectMember;
}
public class GDataGroupOwnerEntrys : System.Collections.CollectionBase
{
public void Add(GDataGroupOwnerEntry GDataGroupOwnerEntry)
{
List.Add(GDataGroupOwnerEntry);
}
}
public class GDataGroupOwnerEntry
{
public string MemberId;
public string MemberType;
}
#endregion Group
#region Contact
public class GDataContactEntrys : System.Collections.CollectionBase
{
public void Add(GDataContactEntry GDataContactEntry)
{
List.Add(GDataContactEntry);
}
}
public class GDataContactEntry
{
public string Name;
public string Email;
public string PhoneNumber;
public string HomePhoneNumber;
public string MobilePhoneNumber;
public string OtherPhoneNumber;
public string PostalAddress;
public string HomeAddress;
public string SelfUri;
}
public class Oauth
{
public string ConsumerKey;
public string ConsumerSecret;
}
#endregion Contact
#region Calendar
public class GDataCalendarEntrys : System.Collections.CollectionBase
{
public void Add(GDataCalendarEntry GDataCalendarEntry)
{
List.Add(GDataCalendarEntry);
}
}
public class GDataCalendarEntry
{
public string Name;
public string AccessLevel;
public string Description;
public string Location;
public string TimeZone;
public string Color;
public bool Hidden;
public bool Selected;
public string SelfUri;
}
public class GDataCalendarAclEntrys : System.Collections.CollectionBase
{
public void Add(GDataCalendarAclEntry GDataCalendarAclEntry)
{
List.Add(GDataCalendarAclEntry);
}
}
public class GDataCalendarAclEntry
{
public string UserId;
public string AccessLevel;
}
#endregion Contact
#region Resource
public class GDataResourceEntrys : System.Collections.CollectionBase
{
public void Add(GDataResourceEntry ResourceEntry)
{
List.Add(ResourceEntry);
}
}
public class GDataResourceEntry
{
public string ResourceId;
public string CommonName;
public string Email;
public string Description;
public string Type;
}
public class GDataResourceService
{
public string AdminUser { get; set; }
public string Token { get; set; }
public string Domain { get; set; }
}
#endregion Resource
#region XmlTypes
public class XmlReturn
{
public string name { get; set; }
public string value { get; set; }
public IEnumerable<XAttribute> at;
public IEnumerable<XmlSubReturn> sub;
}
public class XmlSubReturn
{
public string name { get; set; }
public string value { get; set; }
public IEnumerable<XAttribute> at;
public IEnumerable<XElement> sub;
}
#endregion XmlTypes
#region Profile
public class GDataProfileEntrys : System.Collections.CollectionBase
{
public void Add(GDataProfileEntry ProfileEntry)
{
List.Add(ProfileEntry);
}
}
public class GDataProfileEntry
{
public string UserName;
public string Domain;
public string PhoneNumber;
public string MobilePhoneNumber;
public string OtherPhoneNumber;
public string HomePhoneNumber;
public string HomePostalAddress;
public string PostalAddress;
}
public class GDataProfileService
{
public string AdminUser { get; set; }
public string Token { get; set; }
public string Domain { get; set; }
}
#endregion Profile
#region User
public class GDataUserEntrys : System.Collections.CollectionBase
{
public void Add(GDataUserEntry UserEntry)
{
List.Add(UserEntry);
}
}
public class GDataUserEntry
{
public string UserName;
public string GivenName;
public string FamilyName;
public bool susspended;
public bool Admin;
public bool AgreedToTerms;
public bool ChangePasswordAtNextLogin;
public int Limit;
public string SelfUri;
}
public class GDataUserAliasEntrys : System.Collections.CollectionBase
{
public void Add(GDataUserAliasEntry GDataUserAliasEntry)
{
List.Add(GDataUserAliasEntry);
}
}
public class GDataUserAliasEntry : System.Collections.CollectionBase
{
public void Add(GDataAliasEntry GDataAliasEntry)
{
List.Add(GDataAliasEntry);
}
}
public class GDataAliasEntry
{
public string UserName;
public string aliasEmail;
}
#endregion User
#region MailSettings
public class GDataSenderAddress
{
public string Address;
public string ReplyTo;
public string Name;
public string Default;
}
public class GDataImap
{
public string Enabled;
}
public class GDataPop3
{
public string Action;
public string Enabled;
public string EnabledFor;
}
public class GDataLanguage
{
public string Language;
}
public class GDataWebClips
{
public string Enabled;
}
#endregion Mailsettings
public class ParseXML
{
public IEnumerable<XmlReturn> ListFormat;
public ParseXML(string XMLString)
{
XElement Elem = XElement.Parse(XMLString);
XNamespace Ns = "http://schemas.google.com/apps/2006";
ListFormat = from c in Elem.Elements()
select new XmlReturn
{
name = c.Name.ToString(),
value = c.Value.ToString(),
at = c.Attributes(),
sub = from e in c.Elements()
select new XmlSubReturn
{
name = e.Name.ToString(),
value = e.Value.ToString(),
at = e.Attributes(),
}
};
}
}
}
}