google-apis-classroom_v1 0.32.0 → 0.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52fb871e9cb0af99e10c557c7a3765e4a79996d25ce0ab3a909e676164755f8f
4
- data.tar.gz: 590e23d1b1e79ab4559b39df87ad106e0fdac0837788653acc0a52fb28c13777
3
+ metadata.gz: b2469a7415b47ffcca4ec27d293b453ebcd0cb289f4713641d7a6882233dc74c
4
+ data.tar.gz: 0fe26ee1c350b7d48cf1d3c8253ad1817fd7991def33a88dfb00f21e86bef151
5
5
  SHA512:
6
- metadata.gz: a818558e70e6c239cc4e4870c2df795b716bb61cd93b0ab5c4d985bda22e2025f6855b8ef8cf215ab8f75634162fd275457bf57ec0e714718269af4a272b6275
7
- data.tar.gz: b55f878059807700f41d98f45c00b5aab42465cb16b5352cabf9f84c07cbf821cfa374b5a12de9fec9183d6d4ae8aea0fedd85bcf1670fd74816547f5febf6ae
6
+ metadata.gz: 936b59158bba828d5ddb1157816f43f1ac4f3b18f5a9da2618135a90206ac1de99bcbce3ca946029fd8b37345b954b37356a877c28e8893d95f3b03aa979eee3
7
+ data.tar.gz: 8d097eb659ab3ffce6cefa168a80a48beeba4ed0634b5f142b1399d38c8722dbfd212ffd01d4802b039dcfceb9bec0e575ae3609860ce0b24a4afe42125862d5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-classroom_v1
2
2
 
3
+ ### v0.34.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240713
6
+
7
+ ### v0.33.0 (2024-06-30)
8
+
9
+ * Regenerated from discovery document revision 20240626
10
+
3
11
  ### v0.32.0 (2024-06-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20240617
@@ -138,12 +138,6 @@ module Google
138
138
  # @return [String]
139
139
  attr_accessor :post_submission_state
140
140
 
141
- # Identifier for the student that owns this submission. This field is part of an
142
- # experimental API change and is populated only if sufficient scopes are granted.
143
- # Corresponds to the JSON property `userId`
144
- # @return [String]
145
- attr_accessor :user_id
146
-
147
141
  def initialize(**args)
148
142
  update!(**args)
149
143
  end
@@ -152,7 +146,6 @@ module Google
152
146
  def update!(**args)
153
147
  @points_earned = args[:points_earned] if args.key?(:points_earned)
154
148
  @post_submission_state = args[:post_submission_state] if args.key?(:post_submission_state)
155
- @user_id = args[:user_id] if args.key?(:user_id)
156
149
  end
157
150
  end
158
151
 
@@ -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.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240617"
25
+ REVISION = "20240713"
26
26
  end
27
27
  end
28
28
  end
@@ -477,7 +477,6 @@ module Google
477
477
  class Representation < Google::Apis::Core::JsonRepresentation
478
478
  property :points_earned, as: 'pointsEarned'
479
479
  property :post_submission_state, as: 'postSubmissionState'
480
- property :user_id, as: 'userId'
481
480
  end
482
481
  end
483
482
 
@@ -565,9 +565,10 @@ module Google
565
565
  # add-on has attachments on the post. * The developer project issuing the
566
566
  # request is the same project that created the post.
567
567
  # @param [String] attachment_id
568
- # Optional. The identifier of the attachment. This field is required for student
569
- # users and optional for teacher users. If not provided in the student case, an
570
- # error is returned.
568
+ # Optional. The identifier of the attachment. This field is required for all
569
+ # requests except when the user is in the [Attachment Discovery iframe](https://
570
+ # developers.google.com/classroom/add-ons/get-started/iframes/attachment-
571
+ # discovery-iframe).
571
572
  # @param [String] post_id
572
573
  # Optional. Deprecated, use item_id instead.
573
574
  # @param [String] fields
@@ -1147,9 +1148,10 @@ module Google
1147
1148
  # add-on has attachments on the post. * The developer project issuing the
1148
1149
  # request is the same project that created the post.
1149
1150
  # @param [String] attachment_id
1150
- # Optional. The identifier of the attachment. This field is required for student
1151
- # users and optional for teacher users. If not provided in the student case, an
1152
- # error is returned.
1151
+ # Optional. The identifier of the attachment. This field is required for all
1152
+ # requests except when the user is in the [Attachment Discovery iframe](https://
1153
+ # developers.google.com/classroom/add-ons/get-started/iframes/attachment-
1154
+ # discovery-iframe).
1153
1155
  # @param [String] post_id
1154
1156
  # Optional. Deprecated, use item_id instead.
1155
1157
  # @param [String] fields
@@ -1292,7 +1294,7 @@ module Google
1292
1294
  # modification to the student submission, or for access errors. * `
1293
1295
  # INVALID_ARGUMENT` if the request is malformed. * `FAILED_PRECONDITION` if the
1294
1296
  # requested course work has already been deleted. * `NOT_FOUND` if the requested
1295
- # course, course work, or student submission does not exist.
1297
+ # course or course work does not exist.
1296
1298
  # @param [String] course_id
1297
1299
  # Identifier of the course. This identifier can be either the Classroom-assigned
1298
1300
  # identifier or an alias.
@@ -1308,7 +1310,9 @@ module Google
1308
1310
  # CourseWork` object, an `INVALID_ARGUMENT` error is returned. The following
1309
1311
  # fields may be specified by teachers: * `title` * `description` * `state` * `
1310
1312
  # due_date` * `due_time` * `max_points` * `scheduled_time` * `
1311
- # submission_modification_mode` * `topic_id`
1313
+ # submission_modification_mode` * `topic_id` * `grading_period_id` Available in [
1314
+ # V1_20240401_PREVIEW](https://developers.google.com/classroom/reference/preview)
1315
+ # and later.
1312
1316
  # @param [String] fields
1313
1317
  # Selector specifying which fields to include in a partial response.
1314
1318
  # @param [String] quota_user
@@ -2207,9 +2211,10 @@ module Google
2207
2211
  # add-on has attachments on the post. * The developer project issuing the
2208
2212
  # request is the same project that created the post.
2209
2213
  # @param [String] attachment_id
2210
- # Optional. The identifier of the attachment. This field is required for student
2211
- # users and optional for teacher users. If not provided in the student case, an
2212
- # error is returned.
2214
+ # Optional. The identifier of the attachment. This field is required for all
2215
+ # requests except when the user is in the [Attachment Discovery iframe](https://
2216
+ # developers.google.com/classroom/add-ons/get-started/iframes/attachment-
2217
+ # discovery-iframe).
2213
2218
  # @param [String] post_id
2214
2219
  # Optional. Deprecated, use item_id instead.
2215
2220
  # @param [String] fields
@@ -2632,9 +2637,10 @@ module Google
2632
2637
  # add-on has attachments on the post. * The developer project issuing the
2633
2638
  # request is the same project that created the post.
2634
2639
  # @param [String] attachment_id
2635
- # Optional. The identifier of the attachment. This field is required for student
2636
- # users and optional for teacher users. If not provided in the student case, an
2637
- # error is returned.
2640
+ # Optional. The identifier of the attachment. This field is required for all
2641
+ # requests except when the user is in the [Attachment Discovery iframe](https://
2642
+ # developers.google.com/classroom/add-ons/get-started/iframes/attachment-
2643
+ # discovery-iframe).
2638
2644
  # @param [String] item_id
2639
2645
  # Identifier of the announcement, courseWork, or courseWorkMaterial under which
2640
2646
  # the attachment is attached. This field is required, but is not marked as such
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-classroom_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-classroom_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-classroom_v1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-classroom_v1/v0.34.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-classroom_v1
63
63
  post_install_message:
64
64
  rdoc_options: []