Skip to content

Commit addf5f1

Browse files
authored
[GitHubEnterpriseCloud] Update to 1.1.4-5b5d2dfb0c53d647bd4e9dd38b133ce5 from 1.1.4-45dce2ed399472083195502444f0a800
Detected Schema changes: ERROR: error: Error thrown when comparing: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [216963:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [216965:11] ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [216118:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [216120:11]
1 parent 88d0ffa commit addf5f1

File tree

67 files changed

+5970
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+5970
-231
lines changed

README.md

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,206 @@ $client->operations()->apps()->getBySlug( app_slug: 'generated',
574574
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app).
575575

576576

577+
### classroom/get-an-assignment
578+
579+
Get an assignment
580+
581+
Using the `call` method:
582+
```php
583+
$client->call('GET /assignments/{assignment_id}', [
584+
'assignment_id' => 13,
585+
]);
586+
```
587+
588+
Operations method:
589+
```php
590+
$client->operations()->classroom()->getAnAssignment( assignment_id: 13,
591+
);
592+
```
593+
594+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#get-an-assignment).
595+
596+
597+
### classroom/list-accepted-assigments-for-an-assignment
598+
599+
List accepted assignments for an assignment
600+
601+
Using the `call` method:
602+
```php
603+
$client->call('GET /assignments/{assignment_id}/accepted_assignments', [
604+
'assignment_id' => 13,
605+
'page' => 1,
606+
'per_page' => 8,
607+
]);
608+
```
609+
610+
Operations method:
611+
```php
612+
$client->operations()->classroom()->listAcceptedAssigmentsForAnAssignment( assignment_id: 13,
613+
page: 1,
614+
per_page: 8,
615+
);
616+
```
617+
618+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-accepted-assignments-for-an-assignment).
619+
620+
621+
### classroom/list-accepted-assigments-for-an-assignment
622+
623+
List accepted assignments for an assignment
624+
625+
Using the `call` method:
626+
```php
627+
$client->call('LIST /assignments/{assignment_id}/accepted_assignments', [
628+
'assignment_id' => 13,
629+
'page' => 1,
630+
'per_page' => 8,
631+
]);
632+
```
633+
634+
Operations method:
635+
```php
636+
$client->operations()->classroom()->listAcceptedAssigmentsForAnAssignmentListing( assignment_id: 13,
637+
page: 1,
638+
per_page: 8,
639+
);
640+
```
641+
642+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-accepted-assignments-for-an-assignment).
643+
644+
645+
### classroom/get-assignment-grades
646+
647+
Get assignment grades
648+
649+
Using the `call` method:
650+
```php
651+
$client->call('GET /assignments/{assignment_id}/grades', [
652+
'assignment_id' => 13,
653+
]);
654+
```
655+
656+
Operations method:
657+
```php
658+
$client->operations()->classroom()->getAssignmentGrades( assignment_id: 13,
659+
);
660+
```
661+
662+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#get-assignment-grades).
663+
664+
665+
### classroom/list-classrooms
666+
667+
List classrooms
668+
669+
Using the `call` method:
670+
```php
671+
$client->call('GET /classrooms', [
672+
'page' => 1,
673+
'per_page' => 8,
674+
]);
675+
```
676+
677+
Operations method:
678+
```php
679+
$client->operations()->classroom()->listClassrooms( page: 1,
680+
per_page: 8,
681+
);
682+
```
683+
684+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-classrooms).
685+
686+
687+
### classroom/list-classrooms
688+
689+
List classrooms
690+
691+
Using the `call` method:
692+
```php
693+
$client->call('LIST /classrooms', [
694+
'page' => 1,
695+
'per_page' => 8,
696+
]);
697+
```
698+
699+
Operations method:
700+
```php
701+
$client->operations()->classroom()->listClassroomsListing( page: 1,
702+
per_page: 8,
703+
);
704+
```
705+
706+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-classrooms).
707+
708+
709+
### classroom/get-a-classroom
710+
711+
Get a classroom
712+
713+
Using the `call` method:
714+
```php
715+
$client->call('GET /classrooms/{classroom_id}', [
716+
'classroom_id' => 12,
717+
]);
718+
```
719+
720+
Operations method:
721+
```php
722+
$client->operations()->classroom()->getAClassroom( classroom_id: 12,
723+
);
724+
```
725+
726+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#get-a-classroom).
727+
728+
729+
### classroom/list-assignments-for-a-classroom
730+
731+
List assignments for a classroom
732+
733+
Using the `call` method:
734+
```php
735+
$client->call('GET /classrooms/{classroom_id}/assignments', [
736+
'classroom_id' => 12,
737+
'page' => 1,
738+
'per_page' => 8,
739+
]);
740+
```
741+
742+
Operations method:
743+
```php
744+
$client->operations()->classroom()->listAssignmentsForAClassroom( classroom_id: 12,
745+
page: 1,
746+
per_page: 8,
747+
);
748+
```
749+
750+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-assignments-for-a-classroom).
751+
752+
753+
### classroom/list-assignments-for-a-classroom
754+
755+
List assignments for a classroom
756+
757+
Using the `call` method:
758+
```php
759+
$client->call('LIST /classrooms/{classroom_id}/assignments', [
760+
'classroom_id' => 12,
761+
'page' => 1,
762+
'per_page' => 8,
763+
]);
764+
```
765+
766+
Operations method:
767+
```php
768+
$client->operations()->classroom()->listAssignmentsForAClassroomListing( classroom_id: 12,
769+
page: 1,
770+
per_page: 8,
771+
);
772+
```
773+
774+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/classroom/classroom#list-assignments-for-a-classroom).
775+
776+
577777
### codes-of-conduct/get-all-codes-of-conduct
578778

579779
Get all codes of conduct

0 commit comments

Comments
 (0)