google-apis-classroom_v1 0.43.0 → 0.44.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: 8547505a5c6347b03fa9c3e1115011b77a8639bba0424154bf80d1728b1bd9fb
|
4
|
+
data.tar.gz: 7f2086b0112a3197d88d846059ebfbc31188ef56bdbe7b6ff4f8c6e7805fe683
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a4fd2c7b59f809612136cb9a8fb43baa87b971329a9d0bfeb72688bb3966d36e89b82fa075de2835d0b5a4688bb1388d5457952ef94dd12e8f3471b10bf2150
|
7
|
+
data.tar.gz: 1bb6a485facc6d3f9b427c46df7c2dbf24c24abb0559b64176da938b54c515b3baca85f863c8f72308f2188683ef4fc35427c35ae38f4645f33112fddb886e48
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-classroom_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250526
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.43.0 (2025-05-04)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.17.0
|
@@ -1268,6 +1268,37 @@ module Google
|
|
1268
1268
|
end
|
1269
1269
|
end
|
1270
1270
|
|
1271
|
+
# Gemini Gem link.
|
1272
|
+
class GeminiGem
|
1273
|
+
include Google::Apis::Core::Hashable
|
1274
|
+
|
1275
|
+
# Gems resource id.
|
1276
|
+
# Corresponds to the JSON property `id`
|
1277
|
+
# @return [String]
|
1278
|
+
attr_accessor :id
|
1279
|
+
|
1280
|
+
# Title of the Gem. Read-only.
|
1281
|
+
# Corresponds to the JSON property `title`
|
1282
|
+
# @return [String]
|
1283
|
+
attr_accessor :title
|
1284
|
+
|
1285
|
+
# URL that can be used to access the Gem. Read-only.
|
1286
|
+
# Corresponds to the JSON property `url`
|
1287
|
+
# @return [String]
|
1288
|
+
attr_accessor :url
|
1289
|
+
|
1290
|
+
def initialize(**args)
|
1291
|
+
update!(**args)
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
# Update properties of this object
|
1295
|
+
def update!(**args)
|
1296
|
+
@id = args[:id] if args.key?(:id)
|
1297
|
+
@title = args[:title] if args.key?(:title)
|
1298
|
+
@url = args[:url] if args.key?(:url)
|
1299
|
+
end
|
1300
|
+
end
|
1301
|
+
|
1271
1302
|
# Global user permission description.
|
1272
1303
|
class GlobalPermission
|
1273
1304
|
include Google::Apis::Core::Hashable
|
@@ -2074,7 +2105,7 @@ module Google
|
|
2074
2105
|
end
|
2075
2106
|
|
2076
2107
|
# Material attached to course work. When creating attachments, setting the `form`
|
2077
|
-
# field is not supported.
|
2108
|
+
# , `gem`, or `notebook` field is not supported.
|
2078
2109
|
class Material
|
2079
2110
|
include Google::Apis::Core::Hashable
|
2080
2111
|
|
@@ -2088,11 +2119,21 @@ module Google
|
|
2088
2119
|
# @return [Google::Apis::ClassroomV1::Form]
|
2089
2120
|
attr_accessor :form
|
2090
2121
|
|
2122
|
+
# Gemini Gem link.
|
2123
|
+
# Corresponds to the JSON property `gem`
|
2124
|
+
# @return [Google::Apis::ClassroomV1::GeminiGem]
|
2125
|
+
attr_accessor :gem_prop
|
2126
|
+
|
2091
2127
|
# URL item.
|
2092
2128
|
# Corresponds to the JSON property `link`
|
2093
2129
|
# @return [Google::Apis::ClassroomV1::Link]
|
2094
2130
|
attr_accessor :link
|
2095
2131
|
|
2132
|
+
# NotebookLM Notebook link.
|
2133
|
+
# Corresponds to the JSON property `notebook`
|
2134
|
+
# @return [Google::Apis::ClassroomV1::NotebookLmNotebook]
|
2135
|
+
attr_accessor :notebook
|
2136
|
+
|
2096
2137
|
# YouTube video item.
|
2097
2138
|
# Corresponds to the JSON property `youtubeVideo`
|
2098
2139
|
# @return [Google::Apis::ClassroomV1::YouTubeVideo]
|
@@ -2106,7 +2147,9 @@ module Google
|
|
2106
2147
|
def update!(**args)
|
2107
2148
|
@drive_file = args[:drive_file] if args.key?(:drive_file)
|
2108
2149
|
@form = args[:form] if args.key?(:form)
|
2150
|
+
@gem_prop = args[:gem_prop] if args.key?(:gem_prop)
|
2109
2151
|
@link = args[:link] if args.key?(:link)
|
2152
|
+
@notebook = args[:notebook] if args.key?(:notebook)
|
2110
2153
|
@youtube_video = args[:youtube_video] if args.key?(:youtube_video)
|
2111
2154
|
end
|
2112
2155
|
end
|
@@ -2282,6 +2325,37 @@ module Google
|
|
2282
2325
|
end
|
2283
2326
|
end
|
2284
2327
|
|
2328
|
+
# NotebookLM Notebook link.
|
2329
|
+
class NotebookLmNotebook
|
2330
|
+
include Google::Apis::Core::Hashable
|
2331
|
+
|
2332
|
+
# Notebook resource id.
|
2333
|
+
# Corresponds to the JSON property `id`
|
2334
|
+
# @return [String]
|
2335
|
+
attr_accessor :id
|
2336
|
+
|
2337
|
+
# Title of the Notebook. Read-only.
|
2338
|
+
# Corresponds to the JSON property `title`
|
2339
|
+
# @return [String]
|
2340
|
+
attr_accessor :title
|
2341
|
+
|
2342
|
+
# URL that can be used to access the Notebook. Read-only.
|
2343
|
+
# Corresponds to the JSON property `url`
|
2344
|
+
# @return [String]
|
2345
|
+
attr_accessor :url
|
2346
|
+
|
2347
|
+
def initialize(**args)
|
2348
|
+
update!(**args)
|
2349
|
+
end
|
2350
|
+
|
2351
|
+
# Update properties of this object
|
2352
|
+
def update!(**args)
|
2353
|
+
@id = args[:id] if args.key?(:id)
|
2354
|
+
@title = args[:title] if args.key?(:title)
|
2355
|
+
@url = args[:url] if args.key?(:url)
|
2356
|
+
end
|
2357
|
+
end
|
2358
|
+
|
2285
2359
|
# Request to reclaim a student submission.
|
2286
2360
|
class ReclaimStudentSubmissionRequest
|
2287
2361
|
include Google::Apis::Core::Hashable
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250526"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,12 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class GeminiGem
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
175
181
|
class GlobalPermission
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
@@ -376,6 +382,12 @@ module Google
|
|
376
382
|
include Google::Apis::Core::JsonObjectSupport
|
377
383
|
end
|
378
384
|
|
385
|
+
class NotebookLmNotebook
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
379
391
|
class ReclaimStudentSubmissionRequest
|
380
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
393
|
|
@@ -807,6 +819,15 @@ module Google
|
|
807
819
|
end
|
808
820
|
end
|
809
821
|
|
822
|
+
class GeminiGem
|
823
|
+
# @private
|
824
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
825
|
+
property :id, as: 'id'
|
826
|
+
property :title, as: 'title'
|
827
|
+
property :url, as: 'url'
|
828
|
+
end
|
829
|
+
end
|
830
|
+
|
810
831
|
class GlobalPermission
|
811
832
|
# @private
|
812
833
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1057,8 +1078,12 @@ module Google
|
|
1057
1078
|
|
1058
1079
|
property :form, as: 'form', class: Google::Apis::ClassroomV1::Form, decorator: Google::Apis::ClassroomV1::Form::Representation
|
1059
1080
|
|
1081
|
+
property :gem_prop, as: 'gem', class: Google::Apis::ClassroomV1::GeminiGem, decorator: Google::Apis::ClassroomV1::GeminiGem::Representation
|
1082
|
+
|
1060
1083
|
property :link, as: 'link', class: Google::Apis::ClassroomV1::Link, decorator: Google::Apis::ClassroomV1::Link::Representation
|
1061
1084
|
|
1085
|
+
property :notebook, as: 'notebook', class: Google::Apis::ClassroomV1::NotebookLmNotebook, decorator: Google::Apis::ClassroomV1::NotebookLmNotebook::Representation
|
1086
|
+
|
1062
1087
|
property :youtube_video, as: 'youtubeVideo', class: Google::Apis::ClassroomV1::YouTubeVideo, decorator: Google::Apis::ClassroomV1::YouTubeVideo::Representation
|
1063
1088
|
|
1064
1089
|
end
|
@@ -1121,6 +1146,15 @@ module Google
|
|
1121
1146
|
end
|
1122
1147
|
end
|
1123
1148
|
|
1149
|
+
class NotebookLmNotebook
|
1150
|
+
# @private
|
1151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1152
|
+
property :id, as: 'id'
|
1153
|
+
property :title, as: 'title'
|
1154
|
+
property :url, as: 'url'
|
1155
|
+
end
|
1156
|
+
end
|
1157
|
+
|
1124
1158
|
class ReclaimStudentSubmissionRequest
|
1125
1159
|
# @private
|
1126
1160
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.44.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.44.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Classroom API V1
|
79
79
|
test_files: []
|