forked from tanaikech/ToolsForMCPServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanagement_classroom.js
More file actions
3062 lines (2832 loc) · 120 KB
/
management_classroom.js
File metadata and controls
3062 lines (2832 loc) · 120 KB
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Management of Google Classroom
* Created on 20250818 09:57
*/
// REST Resource: courses: https://developers.google.com/workspace/classroom/reference/rest/v1/courses
function classroom_courses_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
const { queryParameters = {} } = object;
const { studentId, teacherId, courseStates } = queryParameters;
const options = { studentId, teacherId, courseStates };
Object.entries(options).forEach(([k, v]) => v || delete options[k]);
return for_google_apis.list({ func: Classroom.Courses.list, args: [options], jsonSchema: jsonSchemaForClassroom.Course, itemName: "courses" });
}
function classroom_courses_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.create, args: [object.requestBody], jsonSchema: jsonSchemaForClassroom.Course });
}
function classroom_courses_update(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.update, args: [object.requestBody, object.pathParameters?.id] });
}
function classroom_courses_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.patch, args: [object.requestBody, object.pathParameters?.id, object.queryParameters] });
}
function classroom_courses_remove(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.remove, args: [object.pathParameters?.id] });
}
function classroom_courses_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.get, args: [object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.Course });
}
function classroom_courses_getGradingPeriodSettings(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.getGradingPeriodSettings, args: [object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.GradingPeriodSettings });
}
function classroom_courses_updateGradingPeriodSettings(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.updateGradingPeriodSettings, args: [object.pathParameters?.courseId, object.queryParameters?.updateMask] });
}
// REST Resource: courses.aliases: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.aliases
function classroom_courses_aliases_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.Aliases.list, args: [object.pathParameters?.courseId, {}], jsonSchema: jsonSchemaForClassroom.CourseAlias, itemName: "aliases" });
}
function classroom_courses_aliases_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.Aliases.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.CourseAlias });
}
function classroom_courses_aliases_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.Aliases.remove, args: [object.pathParameters?.courseId, object.pathParameters?.alias] });
}
// REST Resource: courses.courseWork: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.courseWork
function classroom_courses_courseWork_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.CourseWork.list, args: [object.pathParameters?.courseId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.CourseWork, itemName: "courseWork" });
}
function classroom_courses_courseWork_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.CourseWork.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.CourseWork });
}
function classroom_courses_courseWork_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_courseWork_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.CourseWork.remove, args: [object.pathParameters?.courseId, object.pathParameters?.id] });
}
function classroom_courses_courseWork_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.CourseWork.get, args: [object.pathParameters?.courseId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.CourseWork });
}
function classroom_courses_courseWork_modifyAssignees(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.modifyAssignees, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id] });
}
// REST Resource: courses.students: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.students
function classroom_courses_students_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.Students.list, args: [object.pathParameters?.courseId, {}], jsonSchema: jsonSchemaForClassroom.Student, itemName: "students" });
}
function classroom_courses_students_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.Students.create, args: [object.requestBody, object.pathParameters?.courseId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.Student });
}
function classroom_courses_students_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.Students.remove, args: [object.pathParameters?.courseId, object.pathParameters?.userId] });
}
function classroom_courses_students_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.Students.get, args: [object.pathParameters?.courseId, object.pathParameters?.userId], jsonSchema: jsonSchemaForClassroom.Student });
}
// REST Resource: courses.teachers: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.teachers
function classroom_courses_teachers_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.Teachers.list, args: [object.pathParameters?.courseId, {}], jsonSchema: jsonSchemaForClassroom.Teacher, itemName: "teachers" });
}
function classroom_courses_teachers_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.Teachers.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.Teacher });
}
function classroom_courses_teachers_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.Teachers.remove, args: [object.pathParameters?.courseId, object.pathParameters?.userId] });
}
function classroom_courses_teachers_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.Teachers.get, args: [object.pathParameters?.courseId, object.pathParameters?.userId], jsonSchema: jsonSchemaForClassroom.Teacher });
}
// REST Resource: courses.courseWorkMaterials: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.courseWorkMaterials
function classroom_courses_courseWorkMaterials_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.CourseWorkMaterials.list, args: [object.pathParameters?.courseId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.CourseWorkMaterial, itemName: "courseWorkMaterial" });
}
function classroom_courses_courseWorkMaterials_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.CourseWorkMaterials.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.CourseWorkMaterial });
}
function classroom_courses_courseWorkMaterials_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWorkMaterials.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_courseWorkMaterials_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.CourseWorkMaterials.remove, args: [object.pathParameters?.courseId, object.pathParameters?.id] });
}
function classroom_courses_courseWorkMaterials_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.CourseWorkMaterials.get, args: [object.pathParameters?.courseId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.CourseWorkMaterial });
}
// REST Resource: courses.courseWork.studentSubmissions: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.courseWork.studentSubmissions
function classroom_courses_courseWork_studentSubmissions_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.CourseWork.StudentSubmissions.list, args: [object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.StudentSubmission, itemName: "studentSubmissions" });
}
function classroom_courses_courseWork_studentSubmissions_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.StudentSubmissions.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_courseWork_studentSubmissions_reclaim(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.StudentSubmissions.reclaim, args: [{}, object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id] });
}
function classroom_courses_courseWork_studentSubmissions_return(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.StudentSubmissions.return, args: [{}, object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id] });
}
function classroom_courses_courseWork_studentSubmissions_turnIn(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.StudentSubmissions.turnIn, args: [{}, object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id] });
}
function classroom_courses_courseWork_studentSubmissions_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.CourseWork.StudentSubmissions.get, args: [object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.StudentSubmission });
}
// REST Resource: courses.announcements: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.announcements
function classroom_courses_announcements_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.Announcements.list, args: [object.pathParameters?.courseId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.Announcement, itemName: "announcements" });
}
function classroom_courses_announcements_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.Announcements.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.Announcement });
}
function classroom_courses_announcements_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.Announcements.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_announcements_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.Announcements.remove, args: [object.pathParameters?.courseId, object.pathParameters?.id] });
}
function classroom_courses_announcements_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.Announcements.get, args: [object.pathParameters?.courseId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.CourseWorkMaterial });
}
function classroom_courses_announcements_modifyAssignees(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.Announcements.modifyAssignees, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id] });
}
// REST Resource: courses.courseWork.rubrics: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics
function classroom_courses_courseWork_rubrics_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.CourseWork.Rubrics.list, args: [object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.Rubric, itemName: "rubrics" });
}
function classroom_courses_courseWork_rubrics_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.CourseWork.Rubrics.create, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.courseWorkId], jsonSchema: jsonSchemaForClassroom.Rubric });
}
function classroom_courses_courseWork_rubrics_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.CourseWork.Rubrics.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_courseWork_rubrics_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.CourseWork.Rubrics.remove, args: [object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id] });
}
function classroom_courses_courseWork_rubrics_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.CourseWork.Rubrics.get, args: [object.pathParameters?.courseId, object.pathParameters?.courseWorkId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.Rubric });
}
// REST Resource: courses.topics: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.topics
function classroom_courses_topics_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.Courses.Topics.list, args: [object.pathParameters.courseId, {}], jsonSchema: jsonSchemaForClassroom.Topic, itemName: "topic" });
}
function classroom_courses_topics_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Courses.Topics.create, args: [object.requestBody, object.pathParameters?.courseId], jsonSchema: jsonSchemaForClassroom.Topic });
}
function classroom_courses_topics_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Courses.Topics.patch, args: [object.requestBody, object.pathParameters?.courseId, object.pathParameters?.id, object.queryParameters || {}] });
}
function classroom_courses_topics_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Courses.Topics.remove, args: [object.pathParameters?.courseId, object.pathParameters?.id] });
}
function classroom_courses_topics_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Courses.Topics.get, args: [object.pathParameters?.courseId, object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.Topic });
}
// REST Resource: invitations: https://developers.google.com/workspace/classroom/reference/rest/v1/invitations
function classroom_invitations_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
const { queryParameters } = object;
const { userId, courseId } = queryParameters;
const options = { userId, courseId };
Object.entries(options).forEach(([k, v]) => v || delete options[k]);
return for_google_apis.list({ func: Classroom.Invitations.list, args: [options], jsonSchema: jsonSchemaForClassroom.Invitation, itemName: "invitations" });
}
function classroom_invitations_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Invitations.create, args: [object.requestBody], jsonSchema: jsonSchemaForClassroom.Invitation });
}
function classroom_invitations_remove(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Invitations.remove, args: [object.pathParameters?.id] });
}
function classroom_invitations_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.Invitations.get, args: [object.pathParameters?.id], jsonSchema: jsonSchemaForClassroom.Invitation });
}
function classroom_invitations_accept(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.Invitations.accept, args: [object.pathParameters?.id] });
}
// REST Resource: registrations: https://developers.google.com/workspace/classroom/reference/rest/v1/registrations
function classroom_registrations_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.Registrations.create, args: [object.requestBody], jsonSchema: jsonSchemaForClassroom.Registration });
}
function classroom_registrations_delete(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.Registrations.remove, args: [object.pathParameters?.registrationId] });
}
// REST Resource: userProfiles: https://developers.google.com/workspace/classroom/reference/rest/v1/userProfiles
function classroom_userProfiles_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.UserProfiles.get, args: [object.pathParameters?.userId], jsonSchema: jsonSchemaForClassroom.UserProfile });
}
// REST Resource: userProfiles.guardianInvitations: https://developers.google.com/workspace/classroom/reference/rest/v1/userProfiles.guardianInvitations
function classroom_userProfiles_guardianInvitations_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.UserProfiles.GuardianInvitations.list, args: [object.pathParameters?.studentId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.GuardianInvitation, itemName: "guardianInvitations" });
}
function classroom_userProfiles_guardianInvitations_create(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.create({ func: Classroom.UserProfiles.GuardianInvitations.create, args: [object.requestBody, object.pathParameters?.studentId], jsonSchema: jsonSchemaForClassroom.GuardianInvitation });
}
function classroom_userProfiles_guardianInvitations_patch(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.update({ func: Classroom.UserProfiles.GuardianInvitations.patch, args: [object.requestBody, object.pathParameters?.studentId, object.pathParameters?.invitationId, object.queryParameters || {}] });
}
function classroom_userProfiles_guardianInvitations_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.UserProfiles.GuardianInvitations.get, args: [object.pathParameters?.studentId, object.pathParameters?.invitationId], jsonSchema: jsonSchemaForClassroom.GuardianInvitation });
}
// REST Resource: userProfiles.guardians: https://developers.google.com/workspace/classroom/reference/rest/v1/userProfiles.guardians
function classroom_userProfiles_guardians_list(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.list({ func: Classroom.UserProfiles.Guardians.list, args: [object.pathParameters?.studentId, object.queryParameters || {}], jsonSchema: jsonSchemaForClassroom.Guardian, itemName: "guardians" });
}
function classroom_userProfiles_guardians_remove(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.remove({ func: Classroom.UserProfiles.Guardians.remove, args: [object.pathParameters?.studentId, object.pathParameters?.guardianId] });
}
function classroom_userProfiles_guardians_get(object = {}) {
/**
* Check API
*/
const check = checkAPI_("Classroom");
if (check.result) {
return check;
}
return for_google_apis.get({ func: Classroom.UserProfiles.Guardians.get, args: [object.pathParameters?.studentId, object.pathParameters?.guardianId], jsonSchema: jsonSchemaForClassroom.Guardian });
}
// REST Resource: courses.studentGroups: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.studentGroups
// This has not been released on August 7, 2025, yet.
// REST Resource: courses.studentGroups.studentGroupMembers: https://developers.google.com/workspace/classroom/reference/rest/v1/courses.studentGroups.studentGroupMembers
// This has not been released on August 7, 2025, yet.
// Descriptions of the functions.
const descriptions_management_classroom = {
classroom_courses_list: {
title: "Get courses list",
description: [
`Use to retrieve courses of Google Classroom using a method "courses.list" of Google Classroom API.`,
`Unless otherwise specified, run this tool without parameters of "studentId", "teacherId", and "courseStates".`,
].join("\n"),
parameters: {
type: "object",
properties: {
queryParameters: {
type: "object",
properties: {
studentId: {
type: "string",
description: [
`Restricts returned courses to those having a student with the specified identifier. The identifier can be one of the following:`,
`- the numeric identifier for the user`,
`- the email address of the user`,
`- the string literal "me", indicating the requesting user`
].join("\n")
},
teacherId: {
type: "string",
description: [
`Restricts returned courses to those having a teacher with the specified identifier. The identifier can be one of the following:`,
`- the numeric identifier for the user`,
`- the email address of the user`,
`- the string literal "me", indicating the requesting user`,
].join("\n")
},
courseStates: {
type: "array",
description: "Restricts returned courses to those in one of the specified states The default value is ACTIVE, ARCHIVED, PROVISIONED, DECLINED.",
items: {
type: "string", description: "Restricts returned courses to those in one of the specified states The default value is ACTIVE, ARCHIVED, PROVISIONED, DECLINED."
}
}
}
}
},
required: ["queryParameters"]
}
},
classroom_courses_create: {
title: "Creates a course",
description: [
`Use to create a course using the "courses.create" method of Google Classroom API.`,
`The user specified in ownerId is the owner of the created course and added as a teacher. A non-admin requesting user can only create a course with themselves as the owner. Domain admins can create courses owned by any user within their domain.`,
].join("\n"),
parameters: {
type: "object",
properties: {
requestBody: jsonSchemaForClassroom.Course,
},
required: ["requestBody"]
}
},
classroom_courses_update: {
title: "Updates a course",
description: `Use to update a course using the "courses.update" method of Google Classroom API.`,
parameters: {
type: "object",
properties: {
requestBody: jsonSchemaForClassroom.Course,
pathParameters: {
type: "object",
properties: {
id: {
type: "string", description: "Course ID. Identifier of the course to update. This identifier can be either the Classroom-assigned identifier or an alias."
}
},
required: ["id"]
}
},
required: ["requestBody", "pathParameters"]
}
},
classroom_courses_patch: {
title: "Updates one or more fields in a course",
description: `Use to update one or more fields in a course using the "courses.patch" method of Google Classroom API.`,
parameters: {
type: "object",
properties: {
requestBody: jsonSchemaForClassroom.Course,
pathParameters: {
type: "object",
properties: {
id: {
type: "string", description: "Course ID. Identifier of the course to update. This identifier can be either the Classroom-assigned identifier or an alias."
},
},
required: ["id"]
},
queryParameters: {
type: "object",
properties: {
updateMask: {
type: "string", description: [
`Mask that identifies which fields on the course to update. This field is required to do an update. The update will fail if invalid fields are specified. The following fields are valid:`,
``,
`name`,
`section`,
`descriptionHeading`,
`description`,
`room`,
`courseState`,
`ownerId`,
``,
`Note: patches to ownerId are treated as being effective immediately, but in practice it may take some time for the ownership transfer of all affected resources to complete.`,
`When set in a query parameter, this field should be specified as`,
`updateMask=<field1>,<field2>,...`,
`This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".`,
].join("\n")
}
},
required: ["updateMask"]
}
},
required: ["requestBody", "pathParameters"]
}
},
classroom_courses_remove: {
title: "Deletes a course",
description: `Use to deletes a course using the "courses.delete" method of Google Classroom API.`,
parameters: {
type: "object",
properties: {
pathParameters: {
type: "object",
properties: {
id: { type: "string", description: "Course ID. Identifier of the course to delete. This identifier can be either the Classroom-assigned identifier or an alias." }
},
required: ["id"]
}
},
required: ["pathParameters"]
}
},