google-apis-classroom_v1 0.47.0 → 0.49.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a79d7d6d3f7a405d55f5042604c2ec37b46d11649ffb6bc5341a7fd4e0c4162
|
|
4
|
+
data.tar.gz: e036368af44b121b9f2097cc128b4474800424416bf17fae302000eccca41c1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09e813855681188f9e1dd01b158381e0bf9165de801c9fc430d0153e50f3c83fefbae48b98a3d1d7f37c3dfae5eaab4bcd9bb16e41d61bed4173521f9130bd0e'
|
|
7
|
+
data.tar.gz: 782789785ef6bc9f766074acb1637ef5ea80f4c7748e4c50a4ac126e77cda62548730d535064ce5f36b54aeed2438f89c47c68e06b591dd39d98bf8bf4c4dca1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-classroom_v1
|
|
2
2
|
|
|
3
|
+
### v0.49.0 (2026-01-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260106
|
|
6
|
+
|
|
7
|
+
### v0.48.0 (2025-12-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251202
|
|
10
|
+
|
|
3
11
|
### v0.47.0 (2025-11-09)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251104
|
|
@@ -544,6 +544,11 @@ module Google
|
|
|
544
544
|
# @return [String]
|
|
545
545
|
attr_accessor :section
|
|
546
546
|
|
|
547
|
+
# Optional. The subject of the course.
|
|
548
|
+
# Corresponds to the JSON property `subject`
|
|
549
|
+
# @return [String]
|
|
550
|
+
attr_accessor :subject
|
|
551
|
+
|
|
547
552
|
# Representation of a Google Drive folder.
|
|
548
553
|
# Corresponds to the JSON property `teacherFolder`
|
|
549
554
|
# @return [Google::Apis::ClassroomV1::DriveFolder]
|
|
@@ -584,6 +589,7 @@ module Google
|
|
|
584
589
|
@owner_id = args[:owner_id] if args.key?(:owner_id)
|
|
585
590
|
@room = args[:room] if args.key?(:room)
|
|
586
591
|
@section = args[:section] if args.key?(:section)
|
|
592
|
+
@subject = args[:subject] if args.key?(:subject)
|
|
587
593
|
@teacher_folder = args[:teacher_folder] if args.key?(:teacher_folder)
|
|
588
594
|
@teacher_group_email = args[:teacher_group_email] if args.key?(:teacher_group_email)
|
|
589
595
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -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.49.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -636,6 +636,7 @@ module Google
|
|
|
636
636
|
property :owner_id, as: 'ownerId'
|
|
637
637
|
property :room, as: 'room'
|
|
638
638
|
property :section, as: 'section'
|
|
639
|
+
property :subject, as: 'subject'
|
|
639
640
|
property :teacher_folder, as: 'teacherFolder', class: Google::Apis::ClassroomV1::DriveFolder, decorator: Google::Apis::ClassroomV1::DriveFolder::Representation
|
|
640
641
|
|
|
641
642
|
property :teacher_group_email, as: 'teacherGroupEmail'
|
|
@@ -263,11 +263,12 @@ module Google
|
|
|
263
263
|
# @param [String] update_mask
|
|
264
264
|
# Mask that identifies which fields on the course to update. This field is
|
|
265
265
|
# required to do an update. The update will fail if invalid fields are specified.
|
|
266
|
-
# The following fields are valid: * `
|
|
267
|
-
# `
|
|
268
|
-
# are treated as being effective immediately, but in
|
|
269
|
-
# time for the ownership transfer of all affected
|
|
270
|
-
# set in a query parameter, this field should be
|
|
266
|
+
# The following fields are valid: * `courseState` * `description` * `
|
|
267
|
+
# descriptionHeading` * `name` * `ownerId` * `room` * `section` * `subject` Note:
|
|
268
|
+
# patches to ownerId are treated as being effective immediately, but in
|
|
269
|
+
# practice it may take some time for the ownership transfer of all affected
|
|
270
|
+
# resources to complete. When set in a query parameter, this field should be
|
|
271
|
+
# specified as `updateMask=,,...`
|
|
271
272
|
# @param [String] fields
|
|
272
273
|
# Selector specifying which fields to include in a partial response.
|
|
273
274
|
# @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.49.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.49.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:
|