google-apis-classroom_v1 0.56.0 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/classroom_v1/gem_version.rb +2 -2
- data/lib/google/apis/classroom_v1/service.rb +47 -38
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 166b59069ffe4e8f45d92207d1de02fdb58c50e3920443de6320107c607af40a
|
|
4
|
+
data.tar.gz: 0f5c1b404152c40b7f42c26599b2ee6500ae1cb5bc6447c12992412b00e01677
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccb87ccf916ca4c4cbe3db606866d9a42bbdca5f394ee963afda9a3ba6bcbafee4303a0bf98e0c56ef2a50ba22bfa4be5f576ea68a0d003e107ba3df93a209a3
|
|
7
|
+
data.tar.gz: a8fcf50299833d0b4496f1db14072c060dac345d54220af73e061b390625497e9cabb101597a57ac6a49d4bf032b0c11c40a9c1adc75707810fbb01a872997e8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-classroom_v1
|
|
2
2
|
|
|
3
|
+
### v0.58.0 (2026-08-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260825
|
|
6
|
+
|
|
7
|
+
### v0.57.0 (2026-08-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260816
|
|
10
|
+
|
|
3
11
|
### v0.56.0 (2026-07-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260708
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ClassroomV1
|
|
18
18
|
# Version of the google-apis-classroom_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.58.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260825"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1380,13 +1380,15 @@ module Google
|
|
|
1380
1380
|
# CourseWork for details of which fields may be updated and who may change them.
|
|
1381
1381
|
# This request must be made by the Developer Console project of the [OAuth
|
|
1382
1382
|
# client ID](https://support.google.com/cloud/answer/6158849) used to create the
|
|
1383
|
-
# corresponding course work item
|
|
1384
|
-
#
|
|
1385
|
-
#
|
|
1386
|
-
#
|
|
1387
|
-
#
|
|
1388
|
-
#
|
|
1389
|
-
#
|
|
1383
|
+
# corresponding course work item or an add-on attachment on the corresponding
|
|
1384
|
+
# course work item. This method returns the following error codes: * `
|
|
1385
|
+
# PERMISSION_DENIED` if the requesting developer project did not create the
|
|
1386
|
+
# corresponding course work or an add-on attachment on the corresponding course
|
|
1387
|
+
# work, if the user is not permitted to make the requested modification to the
|
|
1388
|
+
# student submission, or for access errors. * `INVALID_ARGUMENT` if the request
|
|
1389
|
+
# is malformed. * `FAILED_PRECONDITION` if the requested course work has already
|
|
1390
|
+
# been deleted. * `NOT_FOUND` if the requested course or course work does not
|
|
1391
|
+
# exist.
|
|
1390
1392
|
# @param [String] course_id
|
|
1391
1393
|
# Identifier of the course. This identifier can be either the Classroom-assigned
|
|
1392
1394
|
# identifier or an alias.
|
|
@@ -1402,7 +1404,8 @@ module Google
|
|
|
1402
1404
|
# CourseWork` object, an `INVALID_ARGUMENT` error is returned. The following
|
|
1403
1405
|
# fields may be specified by teachers: * `title` * `description` * `state` * `
|
|
1404
1406
|
# due_date` * `due_time` * `max_points` * `scheduled_time` * `
|
|
1405
|
-
# submission_modification_mode` * `topic_id` * `grading_period_id`
|
|
1407
|
+
# submission_modification_mode` * `topic_id` * `grading_period_id` * `
|
|
1408
|
+
# learning_goals`
|
|
1406
1409
|
# @param [String] fields
|
|
1407
1410
|
# Selector specifying which fields to include in a partial response.
|
|
1408
1411
|
# @param [String] quota_user
|
|
@@ -2222,12 +2225,13 @@ module Google
|
|
|
2222
2225
|
# student submissions belonging to course work objects with a `workType` of `
|
|
2223
2226
|
# ASSIGNMENT`. This request must be made by the Developer Console project of the
|
|
2224
2227
|
# [OAuth client ID](https://support.google.com/cloud/answer/6158849) used to
|
|
2225
|
-
# create the corresponding course work item
|
|
2226
|
-
#
|
|
2227
|
-
#
|
|
2228
|
-
#
|
|
2229
|
-
#
|
|
2230
|
-
#
|
|
2228
|
+
# create the corresponding course work item or an add-on attachment on the
|
|
2229
|
+
# corresponding course work item. This method returns the following error codes:
|
|
2230
|
+
# * `PERMISSION_DENIED` if the requesting user is not permitted to access the
|
|
2231
|
+
# requested course or course work, if the user is not permitted to modify
|
|
2232
|
+
# attachments on the requested student submission, or for access errors. * `
|
|
2233
|
+
# INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if the requested
|
|
2234
|
+
# course, course work, or student submission does not exist.
|
|
2231
2235
|
# @param [String] course_id
|
|
2232
2236
|
# Identifier of the course. This identifier can be either the Classroom-assigned
|
|
2233
2237
|
# identifier or an alias.
|
|
@@ -2271,12 +2275,14 @@ module Google
|
|
|
2271
2275
|
# StudentSubmission for details of which fields may be updated and who may
|
|
2272
2276
|
# change them. This request must be made by the Developer Console project of the
|
|
2273
2277
|
# [OAuth client ID](https://support.google.com/cloud/answer/6158849) used to
|
|
2274
|
-
# create the corresponding course work item
|
|
2275
|
-
#
|
|
2276
|
-
#
|
|
2277
|
-
#
|
|
2278
|
-
#
|
|
2279
|
-
#
|
|
2278
|
+
# create the corresponding course work item or an add-on attachment with Grade
|
|
2279
|
+
# Sync enabled on the corresponding course work item. This method returns the
|
|
2280
|
+
# following error codes: * `PERMISSION_DENIED` if the requesting developer
|
|
2281
|
+
# project did not create the corresponding course work or an add-on attachment
|
|
2282
|
+
# on the corresponding course work with Grade Sync enabled, if the user is not
|
|
2283
|
+
# permitted to make the requested modification to the student submission, or for
|
|
2284
|
+
# access errors. * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND`
|
|
2285
|
+
# if the requested course, course work, or student submission does not exist.
|
|
2280
2286
|
# @param [String] course_id
|
|
2281
2287
|
# Identifier of the course. This identifier can be either the Classroom-assigned
|
|
2282
2288
|
# identifier or an alias.
|
|
@@ -2328,11 +2334,12 @@ module Google
|
|
|
2328
2334
|
# requested student submission may call this method, and only for a student
|
|
2329
2335
|
# submission that has been turned in. This request must be made by the Developer
|
|
2330
2336
|
# Console project of the [OAuth client ID](https://support.google.com/cloud/
|
|
2331
|
-
# answer/6158849) used to create the corresponding course work item
|
|
2332
|
-
#
|
|
2333
|
-
#
|
|
2334
|
-
# the requested
|
|
2335
|
-
#
|
|
2337
|
+
# answer/6158849) used to create the corresponding course work item or an add-on
|
|
2338
|
+
# attachment on the corresponding course work item. This method returns the
|
|
2339
|
+
# following error codes: * `PERMISSION_DENIED` if the requesting user is not
|
|
2340
|
+
# permitted to access the requested course or course work, unsubmit the
|
|
2341
|
+
# requested student submission, or for access errors. * `FAILED_PRECONDITION` if
|
|
2342
|
+
# the student submission has not been turned in. * `INVALID_ARGUMENT` if the
|
|
2336
2343
|
# request is malformed. * `NOT_FOUND` if the requested course, course work, or
|
|
2337
2344
|
# student submission does not exist.
|
|
2338
2345
|
# @param [String] course_id
|
|
@@ -2381,12 +2388,13 @@ module Google
|
|
|
2381
2388
|
# of the course that contains the requested student submission may call this
|
|
2382
2389
|
# method. This request must be made by the Developer Console project of the [
|
|
2383
2390
|
# OAuth client ID](https://support.google.com/cloud/answer/6158849) used to
|
|
2384
|
-
# create the corresponding course work item
|
|
2385
|
-
#
|
|
2386
|
-
#
|
|
2387
|
-
#
|
|
2388
|
-
#
|
|
2389
|
-
# submission does
|
|
2391
|
+
# create the corresponding course work item or an add-on attachment on the
|
|
2392
|
+
# corresponding course work item. This method returns the following error codes:
|
|
2393
|
+
# * `PERMISSION_DENIED` if the requesting user is not permitted to access the
|
|
2394
|
+
# requested course or course work, return the requested student submission, or
|
|
2395
|
+
# for access errors. * `INVALID_ARGUMENT` if the request is malformed. * `
|
|
2396
|
+
# NOT_FOUND` if the requested course, course work, or student submission does
|
|
2397
|
+
# not exist.
|
|
2390
2398
|
# @param [String] course_id
|
|
2391
2399
|
# Identifier of the course. This identifier can be either the Classroom-assigned
|
|
2392
2400
|
# identifier or an alias.
|
|
@@ -2431,12 +2439,13 @@ module Google
|
|
|
2431
2439
|
# submission state. This may only be called by the student that owns the
|
|
2432
2440
|
# specified student submission. This request must be made by the Developer
|
|
2433
2441
|
# Console project of the [OAuth client ID](https://support.google.com/cloud/
|
|
2434
|
-
# answer/6158849) used to create the corresponding course work item
|
|
2435
|
-
#
|
|
2436
|
-
#
|
|
2437
|
-
# the requested
|
|
2438
|
-
#
|
|
2439
|
-
# work, or student
|
|
2442
|
+
# answer/6158849) used to create the corresponding course work item or an add-on
|
|
2443
|
+
# attachment on the corresponding course work item. This method returns the
|
|
2444
|
+
# following error codes: * `PERMISSION_DENIED` if the requesting user is not
|
|
2445
|
+
# permitted to access the requested course or course work, turn in the requested
|
|
2446
|
+
# student submission, or for access errors. * `INVALID_ARGUMENT` if the request
|
|
2447
|
+
# is malformed. * `NOT_FOUND` if the requested course, course work, or student
|
|
2448
|
+
# submission does not exist.
|
|
2440
2449
|
# @param [String] course_id
|
|
2441
2450
|
# Identifier of the course. This identifier can be either the Classroom-assigned
|
|
2442
2451
|
# identifier or an alias.
|
|
@@ -2742,7 +2751,7 @@ module Google
|
|
|
2742
2751
|
# that does not support empty values is included in the update mask and not set
|
|
2743
2752
|
# in the course work material object, an `INVALID_ARGUMENT` error is returned.
|
|
2744
2753
|
# The following fields may be specified by teachers: * `title` * `description` *
|
|
2745
|
-
# `state` * `scheduled_time` * `topic_id`
|
|
2754
|
+
# `state` * `scheduled_time` * `topic_id` * `learning_goals`
|
|
2746
2755
|
# @param [String] fields
|
|
2747
2756
|
# Selector specifying which fields to include in a partial response.
|
|
2748
2757
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-classroom_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.58.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-classroom_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-classroom_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-classroom_v1/v0.58.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-classroom_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|