google-apis-gmail_v1 0.20.0 → 0.21.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: 52d54d98a33bcb4321e1529c1b15c8176d3067344fb6f715e1eb5f9031088023
4
- data.tar.gz: d3de37d7809df84c0a79d7babe9606bbc4b3177d1cf5d89c80515f8fa8c175c2
3
+ metadata.gz: '0414582245300ecf8d2a89cea73b7fccc144452c17a4ee6bf12b747a053b1609'
4
+ data.tar.gz: 459962a61d9135e9f91f57e5404a36bc4ecae6141e4867004fce0b2466503d97
5
5
  SHA512:
6
- metadata.gz: de0d7c57889a42fa97d8ffcdd28b34a115657838798be386400cbfcdb3cb83eed90e75702a38698c9dcef348e61784272b914888bfb337dc3c2555d4db903516
7
- data.tar.gz: 3e86dbb3be799bf2cc09294442aaccbee1036438cf6e2147e5abee67974114c78312b0b25ab324be5e25347377a085b3ee498bff2305ebc88e342af840db4bed
6
+ metadata.gz: 6d75dd5d09ae07e156fbe81a0aacaec4d88fe0147b2331570a26db1253388d4dd78dd61eaec25df9176f1526546f04bc2fa8131cbfb57f134924471548911593
7
+ data.tar.gz: dfcafedfbf4885343fd63fb7da7b39c3373719c20722a3d05db0294ec63877c52a84021127b4d2e319bd0acb6f006500dce05be64d32415f7c16df6f27cdee7e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.21.0 (2022-12-22)
4
+
5
+ * Regenerated from discovery document revision 20221219
6
+
3
7
  ### v0.20.0 (2022-10-27)
4
8
 
5
9
  * Regenerated using generator version 0.11.0
@@ -105,6 +105,128 @@ module Google
105
105
  end
106
106
  end
107
107
 
108
+ # [Beta](https://workspace.google.com/terms/service-terms/index.html). The
109
+ # client-side encryption (CSE) configuration for the email address of an
110
+ # authenticated user. Gmail uses CSE configurations to save drafts of client-
111
+ # side encrypted email messages, and to sign and send encrypted email messages.
112
+ class CseIdentity
113
+ include Google::Apis::Core::Hashable
114
+
115
+ # The email address for the sending identity. The email address must be the
116
+ # primary email address of the authenticated user.
117
+ # Corresponds to the JSON property `emailAddress`
118
+ # @return [String]
119
+ attr_accessor :email_address
120
+
121
+ # If a key pair is associated, the identifier of the key pair, CseKeyPair.
122
+ # Corresponds to the JSON property `primaryKeyPairId`
123
+ # @return [String]
124
+ attr_accessor :primary_key_pair_id
125
+
126
+ def initialize(**args)
127
+ update!(**args)
128
+ end
129
+
130
+ # Update properties of this object
131
+ def update!(**args)
132
+ @email_address = args[:email_address] if args.key?(:email_address)
133
+ @primary_key_pair_id = args[:primary_key_pair_id] if args.key?(:primary_key_pair_id)
134
+ end
135
+ end
136
+
137
+ # [Beta](https://workspace.google.com/terms/service-terms/index.html). A client-
138
+ # side encryption S/MIME key pair, which is comprised of a public key, its
139
+ # certificate chain, and metadata for its paired private key. Gmail uses the key
140
+ # pair to complete the following tasks: - Sign outgoing client-side encrypted
141
+ # messages. - Save and reopen drafts of client-side encrypted messages. - Save
142
+ # and reopen sent messages. - Decrypt incoming or archived S/MIME messages.
143
+ class CseKeyPair
144
+ include Google::Apis::Core::Hashable
145
+
146
+ # Output only. If a key pair is set to `DISABLED`, the time that the key pair's
147
+ # state changed from `ENABLED` to `DISABLED`. This field is present only when
148
+ # the key pair is in state `DISABLED`.
149
+ # Corresponds to the JSON property `disableTime`
150
+ # @return [String]
151
+ attr_accessor :disable_time
152
+
153
+ # Output only. The current state of the key pair.
154
+ # Corresponds to the JSON property `enablementState`
155
+ # @return [String]
156
+ attr_accessor :enablement_state
157
+
158
+ # Output only. The immutable ID for the client-side encryption S/MIME key pair.
159
+ # Corresponds to the JSON property `keyPairId`
160
+ # @return [String]
161
+ attr_accessor :key_pair_id
162
+
163
+ # Output only. The public key and its certificate chain, in [PEM](https://en.
164
+ # wikipedia.org/wiki/Privacy-Enhanced_Mail) format.
165
+ # Corresponds to the JSON property `pem`
166
+ # @return [String]
167
+ attr_accessor :pem
168
+
169
+ # Input only. The public key and its certificate chain. The chain must be in [
170
+ # PKCS#7](https://en.wikipedia.org/wiki/PKCS_7) format and use PEM encoding and
171
+ # ASCII armor.
172
+ # Corresponds to the JSON property `pkcs7`
173
+ # @return [String]
174
+ attr_accessor :pkcs7
175
+
176
+ # Metadata for instances of this key pair's private key.
177
+ # Corresponds to the JSON property `privateKeyMetadata`
178
+ # @return [Array<Google::Apis::GmailV1::CsePrivateKeyMetadata>]
179
+ attr_accessor :private_key_metadata
180
+
181
+ # Output only. The email address identities that are specified on the leaf
182
+ # certificate.
183
+ # Corresponds to the JSON property `subjectEmailAddresses`
184
+ # @return [Array<String>]
185
+ attr_accessor :subject_email_addresses
186
+
187
+ def initialize(**args)
188
+ update!(**args)
189
+ end
190
+
191
+ # Update properties of this object
192
+ def update!(**args)
193
+ @disable_time = args[:disable_time] if args.key?(:disable_time)
194
+ @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
195
+ @key_pair_id = args[:key_pair_id] if args.key?(:key_pair_id)
196
+ @pem = args[:pem] if args.key?(:pem)
197
+ @pkcs7 = args[:pkcs7] if args.key?(:pkcs7)
198
+ @private_key_metadata = args[:private_key_metadata] if args.key?(:private_key_metadata)
199
+ @subject_email_addresses = args[:subject_email_addresses] if args.key?(:subject_email_addresses)
200
+ end
201
+ end
202
+
203
+ # Metadata for a private key instance.
204
+ class CsePrivateKeyMetadata
205
+ include Google::Apis::Core::Hashable
206
+
207
+ # Metadata for private keys managed by an external key access control list
208
+ # service. For details about managing key access, see [Google Workspace CSE API
209
+ # Reference](https://developers.google.com/workspace/cse/reference).
210
+ # Corresponds to the JSON property `kaclsKeyMetadata`
211
+ # @return [Google::Apis::GmailV1::KaclsKeyMetadata]
212
+ attr_accessor :kacls_key_metadata
213
+
214
+ # Output only. The immutable ID for the private key metadata instance.
215
+ # Corresponds to the JSON property `privateKeyMetadataId`
216
+ # @return [String]
217
+ attr_accessor :private_key_metadata_id
218
+
219
+ def initialize(**args)
220
+ update!(**args)
221
+ end
222
+
223
+ # Update properties of this object
224
+ def update!(**args)
225
+ @kacls_key_metadata = args[:kacls_key_metadata] if args.key?(:kacls_key_metadata)
226
+ @private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
227
+ end
228
+ end
229
+
108
230
  # Settings for a delegate. Delegates can read, send, and delete messages, as
109
231
  # well as view and add contacts, for the delegator's account. See "Set up mail
110
232
  # delegation" for more information about delegates.
@@ -133,6 +255,19 @@ module Google
133
255
  end
134
256
  end
135
257
 
258
+ # Requests to turn off a client-side encryption key pair.
259
+ class DisableCseKeyPairRequest
260
+ include Google::Apis::Core::Hashable
261
+
262
+ def initialize(**args)
263
+ update!(**args)
264
+ end
265
+
266
+ # Update properties of this object
267
+ def update!(**args)
268
+ end
269
+ end
270
+
136
271
  # A draft email in the user's mailbox.
137
272
  class Draft
138
273
  include Google::Apis::Core::Hashable
@@ -158,6 +293,19 @@ module Google
158
293
  end
159
294
  end
160
295
 
296
+ # Requests to turn on a client-side encryption key pair.
297
+ class EnableCseKeyPairRequest
298
+ include Google::Apis::Core::Hashable
299
+
300
+ def initialize(**args)
301
+ update!(**args)
302
+ end
303
+
304
+ # Update properties of this object
305
+ def update!(**args)
306
+ end
307
+ end
308
+
161
309
  # Resource definition for Gmail filters. Filters apply to specific messages
162
310
  # instead of an entire email thread.
163
311
  class Filter
@@ -509,6 +657,34 @@ module Google
509
657
  end
510
658
  end
511
659
 
660
+ # Metadata for private keys managed by an external key access control list
661
+ # service. For details about managing key access, see [Google Workspace CSE API
662
+ # Reference](https://developers.google.com/workspace/cse/reference).
663
+ class KaclsKeyMetadata
664
+ include Google::Apis::Core::Hashable
665
+
666
+ # Opaque data generated and used by the key access control list service. Maximum
667
+ # size: 8 KiB.
668
+ # Corresponds to the JSON property `kaclsData`
669
+ # @return [String]
670
+ attr_accessor :kacls_data
671
+
672
+ # The URI of the key access control list service that manages the private key.
673
+ # Corresponds to the JSON property `kaclsUri`
674
+ # @return [String]
675
+ attr_accessor :kacls_uri
676
+
677
+ def initialize(**args)
678
+ update!(**args)
679
+ end
680
+
681
+ # Update properties of this object
682
+ def update!(**args)
683
+ @kacls_data = args[:kacls_data] if args.key?(:kacls_data)
684
+ @kacls_uri = args[:kacls_uri] if args.key?(:kacls_uri)
685
+ end
686
+ end
687
+
512
688
  # Labels are used to categorize messages and threads within the user's mailbox.
513
689
  # The maximum number of labels supported for a user's mailbox is 10,000.
514
690
  class Label
@@ -675,6 +851,60 @@ module Google
675
851
  end
676
852
  end
677
853
 
854
+ #
855
+ class ListCseIdentitiesResponse
856
+ include Google::Apis::Core::Hashable
857
+
858
+ # One page of the list of CSE identities configured for the user.
859
+ # Corresponds to the JSON property `cseIdentities`
860
+ # @return [Array<Google::Apis::GmailV1::CseIdentity>]
861
+ attr_accessor :cse_identities
862
+
863
+ # Pagination token to be passed to a subsequent ListCseIdentities call in order
864
+ # to retrieve the next page of identities. If this value is not returned or is
865
+ # the empty string, then no further pages remain.
866
+ # Corresponds to the JSON property `nextPageToken`
867
+ # @return [String]
868
+ attr_accessor :next_page_token
869
+
870
+ def initialize(**args)
871
+ update!(**args)
872
+ end
873
+
874
+ # Update properties of this object
875
+ def update!(**args)
876
+ @cse_identities = args[:cse_identities] if args.key?(:cse_identities)
877
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
878
+ end
879
+ end
880
+
881
+ #
882
+ class ListCseKeyPairsResponse
883
+ include Google::Apis::Core::Hashable
884
+
885
+ # One page of the list of CSE key pairs installed for the user.
886
+ # Corresponds to the JSON property `cseKeyPairs`
887
+ # @return [Array<Google::Apis::GmailV1::CseKeyPair>]
888
+ attr_accessor :cse_key_pairs
889
+
890
+ # Pagination token to be passed to a subsequent ListCseKeyPairs call in order to
891
+ # retrieve the next page of key pairs. If this value is not returned, then no
892
+ # further pages remain.
893
+ # Corresponds to the JSON property `nextPageToken`
894
+ # @return [String]
895
+ attr_accessor :next_page_token
896
+
897
+ def initialize(**args)
898
+ update!(**args)
899
+ end
900
+
901
+ # Update properties of this object
902
+ def update!(**args)
903
+ @cse_key_pairs = args[:cse_key_pairs] if args.key?(:cse_key_pairs)
904
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
905
+ end
906
+ end
907
+
678
908
  # Response for the ListDelegates method.
679
909
  class ListDelegatesResponse
680
910
  include Google::Apis::Core::Hashable
@@ -1174,6 +1404,19 @@ module Google
1174
1404
  end
1175
1405
  end
1176
1406
 
1407
+ # Request to obliterate a CSE key pair.
1408
+ class ObliterateCseKeyPairRequest
1409
+ include Google::Apis::Core::Hashable
1410
+
1411
+ def initialize(**args)
1412
+ update!(**args)
1413
+ end
1414
+
1415
+ # Update properties of this object
1416
+ def update!(**args)
1417
+ end
1418
+ end
1419
+
1177
1420
  # POP settings for an account.
1178
1421
  class PopSettings
1179
1422
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GmailV1
18
18
  # Version of the google-apis-gmail_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220404"
25
+ REVISION = "20221219"
26
26
  end
27
27
  end
28
28
  end
@@ -40,18 +40,48 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class CseIdentity
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class CseKeyPair
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class CsePrivateKeyMetadata
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
43
61
  class Delegate
44
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
63
 
46
64
  include Google::Apis::Core::JsonObjectSupport
47
65
  end
48
66
 
67
+ class DisableCseKeyPairRequest
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
49
73
  class Draft
50
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
75
 
52
76
  include Google::Apis::Core::JsonObjectSupport
53
77
  end
54
78
 
79
+ class EnableCseKeyPairRequest
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
55
85
  class Filter
56
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
87
 
@@ -112,6 +142,12 @@ module Google
112
142
  include Google::Apis::Core::JsonObjectSupport
113
143
  end
114
144
 
145
+ class KaclsKeyMetadata
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
115
151
  class Label
116
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
153
 
@@ -130,6 +166,18 @@ module Google
130
166
  include Google::Apis::Core::JsonObjectSupport
131
167
  end
132
168
 
169
+ class ListCseIdentitiesResponse
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class ListCseKeyPairsResponse
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
133
181
  class ListDelegatesResponse
134
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
183
 
@@ -226,6 +274,12 @@ module Google
226
274
  include Google::Apis::Core::JsonObjectSupport
227
275
  end
228
276
 
277
+ class ObliterateCseKeyPairRequest
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
229
283
  class PopSettings
230
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
285
 
@@ -305,6 +359,37 @@ module Google
305
359
  end
306
360
  end
307
361
 
362
+ class CseIdentity
363
+ # @private
364
+ class Representation < Google::Apis::Core::JsonRepresentation
365
+ property :email_address, as: 'emailAddress'
366
+ property :primary_key_pair_id, as: 'primaryKeyPairId'
367
+ end
368
+ end
369
+
370
+ class CseKeyPair
371
+ # @private
372
+ class Representation < Google::Apis::Core::JsonRepresentation
373
+ property :disable_time, as: 'disableTime'
374
+ property :enablement_state, as: 'enablementState'
375
+ property :key_pair_id, as: 'keyPairId'
376
+ property :pem, as: 'pem'
377
+ property :pkcs7, as: 'pkcs7'
378
+ collection :private_key_metadata, as: 'privateKeyMetadata', class: Google::Apis::GmailV1::CsePrivateKeyMetadata, decorator: Google::Apis::GmailV1::CsePrivateKeyMetadata::Representation
379
+
380
+ collection :subject_email_addresses, as: 'subjectEmailAddresses'
381
+ end
382
+ end
383
+
384
+ class CsePrivateKeyMetadata
385
+ # @private
386
+ class Representation < Google::Apis::Core::JsonRepresentation
387
+ property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
388
+
389
+ property :private_key_metadata_id, as: 'privateKeyMetadataId'
390
+ end
391
+ end
392
+
308
393
  class Delegate
309
394
  # @private
310
395
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -313,6 +398,12 @@ module Google
313
398
  end
314
399
  end
315
400
 
401
+ class DisableCseKeyPairRequest
402
+ # @private
403
+ class Representation < Google::Apis::Core::JsonRepresentation
404
+ end
405
+ end
406
+
316
407
  class Draft
317
408
  # @private
318
409
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -322,6 +413,12 @@ module Google
322
413
  end
323
414
  end
324
415
 
416
+ class EnableCseKeyPairRequest
417
+ # @private
418
+ class Representation < Google::Apis::Core::JsonRepresentation
419
+ end
420
+ end
421
+
325
422
  class Filter
326
423
  # @private
327
424
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -426,6 +523,14 @@ module Google
426
523
  end
427
524
  end
428
525
 
526
+ class KaclsKeyMetadata
527
+ # @private
528
+ class Representation < Google::Apis::Core::JsonRepresentation
529
+ property :kacls_data, as: 'kaclsData'
530
+ property :kacls_uri, as: 'kaclsUri'
531
+ end
532
+ end
533
+
429
534
  class Label
430
535
  # @private
431
536
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -458,6 +563,24 @@ module Google
458
563
  end
459
564
  end
460
565
 
566
+ class ListCseIdentitiesResponse
567
+ # @private
568
+ class Representation < Google::Apis::Core::JsonRepresentation
569
+ collection :cse_identities, as: 'cseIdentities', class: Google::Apis::GmailV1::CseIdentity, decorator: Google::Apis::GmailV1::CseIdentity::Representation
570
+
571
+ property :next_page_token, as: 'nextPageToken'
572
+ end
573
+ end
574
+
575
+ class ListCseKeyPairsResponse
576
+ # @private
577
+ class Representation < Google::Apis::Core::JsonRepresentation
578
+ collection :cse_key_pairs, as: 'cseKeyPairs', class: Google::Apis::GmailV1::CseKeyPair, decorator: Google::Apis::GmailV1::CseKeyPair::Representation
579
+
580
+ property :next_page_token, as: 'nextPageToken'
581
+ end
582
+ end
583
+
461
584
  class ListDelegatesResponse
462
585
  # @private
463
586
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -610,6 +733,12 @@ module Google
610
733
  end
611
734
  end
612
735
 
736
+ class ObliterateCseKeyPairRequest
737
+ # @private
738
+ class Representation < Google::Apis::Core::JsonRepresentation
739
+ end
740
+ end
741
+
613
742
  class PopSettings
614
743
  # @private
615
744
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1484,6 +1484,430 @@ module Google
1484
1484
  execute_or_queue_command(command, &block)
1485
1485
  end
1486
1486
 
1487
+ # Creates and configures a client-side encryption identity that's authorized to
1488
+ # send mail from the user account. Google publishes the S/MIME certificate to a
1489
+ # shared domain-wide directory so that people within a Google Workspace
1490
+ # organization can encrypt and send mail to the identity. [Beta](https://
1491
+ # workspace.google.com/terms/service-terms/index.html).
1492
+ # @param [String] user_id
1493
+ # The requester's primary email address. To indicate the authenticated user, you
1494
+ # can use the special value `me`.
1495
+ # @param [Google::Apis::GmailV1::CseIdentity] cse_identity_object
1496
+ # @param [String] fields
1497
+ # Selector specifying which fields to include in a partial response.
1498
+ # @param [String] quota_user
1499
+ # Available to use for quota purposes for server-side applications. Can be any
1500
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1501
+ # @param [Google::Apis::RequestOptions] options
1502
+ # Request-specific options
1503
+ #
1504
+ # @yield [result, err] Result & error if block supplied
1505
+ # @yieldparam result [Google::Apis::GmailV1::CseIdentity] parsed result object
1506
+ # @yieldparam err [StandardError] error object if request failed
1507
+ #
1508
+ # @return [Google::Apis::GmailV1::CseIdentity]
1509
+ #
1510
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1511
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1512
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1513
+ def create_user_setting_cse_identity(user_id, cse_identity_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1514
+ command = make_simple_command(:post, 'gmail/v1/users/{userId}/settings/cse/identities', options)
1515
+ command.request_representation = Google::Apis::GmailV1::CseIdentity::Representation
1516
+ command.request_object = cse_identity_object
1517
+ command.response_representation = Google::Apis::GmailV1::CseIdentity::Representation
1518
+ command.response_class = Google::Apis::GmailV1::CseIdentity
1519
+ command.params['userId'] = user_id unless user_id.nil?
1520
+ command.query['fields'] = fields unless fields.nil?
1521
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1522
+ execute_or_queue_command(command, &block)
1523
+ end
1524
+
1525
+ # Deletes a client-side encryption identity. The authenticated user can no
1526
+ # longer use the identity to send encrypted messages. You cannot restore the
1527
+ # identity after you delete it. Instead, use the CreateCseIdentity method to
1528
+ # create another identity with the same configuration. [Beta](https://workspace.
1529
+ # google.com/terms/service-terms/index.html).
1530
+ # @param [String] user_id
1531
+ # The requester's primary email address. To indicate the authenticated user, you
1532
+ # can use the special value `me`.
1533
+ # @param [String] cse_email_address
1534
+ # The primary email address associated with the client-side encryption identity
1535
+ # configuration that's removed.
1536
+ # @param [String] fields
1537
+ # Selector specifying which fields to include in a partial response.
1538
+ # @param [String] quota_user
1539
+ # Available to use for quota purposes for server-side applications. Can be any
1540
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1541
+ # @param [Google::Apis::RequestOptions] options
1542
+ # Request-specific options
1543
+ #
1544
+ # @yield [result, err] Result & error if block supplied
1545
+ # @yieldparam result [NilClass] No result returned for this method
1546
+ # @yieldparam err [StandardError] error object if request failed
1547
+ #
1548
+ # @return [void]
1549
+ #
1550
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1551
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1552
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1553
+ def delete_user_setting_cse_identity(user_id, cse_email_address, fields: nil, quota_user: nil, options: nil, &block)
1554
+ command = make_simple_command(:delete, 'gmail/v1/users/{userId}/settings/cse/identities/{cseEmailAddress}', options)
1555
+ command.params['userId'] = user_id unless user_id.nil?
1556
+ command.params['cseEmailAddress'] = cse_email_address unless cse_email_address.nil?
1557
+ command.query['fields'] = fields unless fields.nil?
1558
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1559
+ execute_or_queue_command(command, &block)
1560
+ end
1561
+
1562
+ # Retrieves a client-side encryption identity configuration. [Beta](https://
1563
+ # workspace.google.com/terms/service-terms/index.html).
1564
+ # @param [String] user_id
1565
+ # The requester's primary email address. To indicate the authenticated user, you
1566
+ # can use the special value `me`.
1567
+ # @param [String] cse_email_address
1568
+ # The primary email address associated with the client-side encryption identity
1569
+ # configuration that's retrieved.
1570
+ # @param [String] fields
1571
+ # Selector specifying which fields to include in a partial response.
1572
+ # @param [String] quota_user
1573
+ # Available to use for quota purposes for server-side applications. Can be any
1574
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1575
+ # @param [Google::Apis::RequestOptions] options
1576
+ # Request-specific options
1577
+ #
1578
+ # @yield [result, err] Result & error if block supplied
1579
+ # @yieldparam result [Google::Apis::GmailV1::CseIdentity] parsed result object
1580
+ # @yieldparam err [StandardError] error object if request failed
1581
+ #
1582
+ # @return [Google::Apis::GmailV1::CseIdentity]
1583
+ #
1584
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1585
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1586
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1587
+ def get_user_setting_cse_identity(user_id, cse_email_address, fields: nil, quota_user: nil, options: nil, &block)
1588
+ command = make_simple_command(:get, 'gmail/v1/users/{userId}/settings/cse/identities/{cseEmailAddress}', options)
1589
+ command.response_representation = Google::Apis::GmailV1::CseIdentity::Representation
1590
+ command.response_class = Google::Apis::GmailV1::CseIdentity
1591
+ command.params['userId'] = user_id unless user_id.nil?
1592
+ command.params['cseEmailAddress'] = cse_email_address unless cse_email_address.nil?
1593
+ command.query['fields'] = fields unless fields.nil?
1594
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1595
+ execute_or_queue_command(command, &block)
1596
+ end
1597
+
1598
+ # Lists the client-side encrypted identities for an authenticated user. [Beta](
1599
+ # https://workspace.google.com/terms/service-terms/index.html).
1600
+ # @param [String] user_id
1601
+ # The requester's primary email address. To indicate the authenticated user, you
1602
+ # can use the special value `me`.
1603
+ # @param [Fixnum] page_size
1604
+ # The number of identities to return. If not provided, the page size will
1605
+ # default to 20 entries.
1606
+ # @param [String] page_token
1607
+ # Pagination token indicating which page of identities to return. If the token
1608
+ # is not supplied, then the API will return the first page of results.
1609
+ # @param [String] fields
1610
+ # Selector specifying which fields to include in a partial response.
1611
+ # @param [String] quota_user
1612
+ # Available to use for quota purposes for server-side applications. Can be any
1613
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1614
+ # @param [Google::Apis::RequestOptions] options
1615
+ # Request-specific options
1616
+ #
1617
+ # @yield [result, err] Result & error if block supplied
1618
+ # @yieldparam result [Google::Apis::GmailV1::ListCseIdentitiesResponse] parsed result object
1619
+ # @yieldparam err [StandardError] error object if request failed
1620
+ #
1621
+ # @return [Google::Apis::GmailV1::ListCseIdentitiesResponse]
1622
+ #
1623
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1624
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1625
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1626
+ def list_user_setting_cse_identities(user_id, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1627
+ command = make_simple_command(:get, 'gmail/v1/users/{userId}/settings/cse/identities', options)
1628
+ command.response_representation = Google::Apis::GmailV1::ListCseIdentitiesResponse::Representation
1629
+ command.response_class = Google::Apis::GmailV1::ListCseIdentitiesResponse
1630
+ command.params['userId'] = user_id unless user_id.nil?
1631
+ command.query['pageSize'] = page_size unless page_size.nil?
1632
+ command.query['pageToken'] = page_token unless page_token.nil?
1633
+ command.query['fields'] = fields unless fields.nil?
1634
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1635
+ execute_or_queue_command(command, &block)
1636
+ end
1637
+
1638
+ # Associates a different key pair with an existing client-side encryption
1639
+ # identity. The updated key pair must validate against Google's [S/MIME
1640
+ # certificate profiles](https://support.google.com/a/answer/7300887). [Beta](
1641
+ # https://workspace.google.com/terms/service-terms/index.html).
1642
+ # @param [String] user_id
1643
+ # The requester's primary email address. To indicate the authenticated user, you
1644
+ # can use the special value `me`.
1645
+ # @param [String] email_address
1646
+ # The email address of the client-side encryption identity to update.
1647
+ # @param [Google::Apis::GmailV1::CseIdentity] cse_identity_object
1648
+ # @param [String] fields
1649
+ # Selector specifying which fields to include in a partial response.
1650
+ # @param [String] quota_user
1651
+ # Available to use for quota purposes for server-side applications. Can be any
1652
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1653
+ # @param [Google::Apis::RequestOptions] options
1654
+ # Request-specific options
1655
+ #
1656
+ # @yield [result, err] Result & error if block supplied
1657
+ # @yieldparam result [Google::Apis::GmailV1::CseIdentity] parsed result object
1658
+ # @yieldparam err [StandardError] error object if request failed
1659
+ #
1660
+ # @return [Google::Apis::GmailV1::CseIdentity]
1661
+ #
1662
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1663
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1664
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1665
+ def patch_user_setting_cse_identity(user_id, email_address, cse_identity_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1666
+ command = make_simple_command(:patch, 'gmail/v1/users/{userId}/settings/cse/identities/{emailAddress}', options)
1667
+ command.request_representation = Google::Apis::GmailV1::CseIdentity::Representation
1668
+ command.request_object = cse_identity_object
1669
+ command.response_representation = Google::Apis::GmailV1::CseIdentity::Representation
1670
+ command.response_class = Google::Apis::GmailV1::CseIdentity
1671
+ command.params['userId'] = user_id unless user_id.nil?
1672
+ command.params['emailAddress'] = email_address unless email_address.nil?
1673
+ command.query['fields'] = fields unless fields.nil?
1674
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1675
+ execute_or_queue_command(command, &block)
1676
+ end
1677
+
1678
+ # Creates and uploads a client-side encryption S/MIME public key certificate
1679
+ # chain and private key metadata for the authenticated user. [Beta](https://
1680
+ # workspace.google.com/terms/service-terms/index.html).
1681
+ # @param [String] user_id
1682
+ # The requester's primary email address. To indicate the authenticated user, you
1683
+ # can use the special value `me`.
1684
+ # @param [Google::Apis::GmailV1::CseKeyPair] cse_key_pair_object
1685
+ # @param [String] fields
1686
+ # Selector specifying which fields to include in a partial response.
1687
+ # @param [String] quota_user
1688
+ # Available to use for quota purposes for server-side applications. Can be any
1689
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1690
+ # @param [Google::Apis::RequestOptions] options
1691
+ # Request-specific options
1692
+ #
1693
+ # @yield [result, err] Result & error if block supplied
1694
+ # @yieldparam result [Google::Apis::GmailV1::CseKeyPair] parsed result object
1695
+ # @yieldparam err [StandardError] error object if request failed
1696
+ #
1697
+ # @return [Google::Apis::GmailV1::CseKeyPair]
1698
+ #
1699
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1700
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1701
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1702
+ def create_user_setting_cse_keypair(user_id, cse_key_pair_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1703
+ command = make_simple_command(:post, 'gmail/v1/users/{userId}/settings/cse/keypairs', options)
1704
+ command.request_representation = Google::Apis::GmailV1::CseKeyPair::Representation
1705
+ command.request_object = cse_key_pair_object
1706
+ command.response_representation = Google::Apis::GmailV1::CseKeyPair::Representation
1707
+ command.response_class = Google::Apis::GmailV1::CseKeyPair
1708
+ command.params['userId'] = user_id unless user_id.nil?
1709
+ command.query['fields'] = fields unless fields.nil?
1710
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1711
+ execute_or_queue_command(command, &block)
1712
+ end
1713
+
1714
+ # Turns off a client-side encryption key pair. The authenticated user can no
1715
+ # longer use the key pair to decrypt incoming CSE message texts or sign outgoing
1716
+ # CSE mail. To regain access, use the EnableCseKeyPair to turn on the key pair.
1717
+ # After 30 days, you can permanently delete the key pair by using the
1718
+ # ObliterateCseKeyPair method. [Beta](https://workspace.google.com/terms/service-
1719
+ # terms/index.html).
1720
+ # @param [String] user_id
1721
+ # The requester's primary email address. To indicate the authenticated user, you
1722
+ # can use the special value `me`.
1723
+ # @param [String] key_pair_id
1724
+ # The identifier of the key pair to turn off.
1725
+ # @param [Google::Apis::GmailV1::DisableCseKeyPairRequest] disable_cse_key_pair_request_object
1726
+ # @param [String] fields
1727
+ # Selector specifying which fields to include in a partial response.
1728
+ # @param [String] quota_user
1729
+ # Available to use for quota purposes for server-side applications. Can be any
1730
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1731
+ # @param [Google::Apis::RequestOptions] options
1732
+ # Request-specific options
1733
+ #
1734
+ # @yield [result, err] Result & error if block supplied
1735
+ # @yieldparam result [Google::Apis::GmailV1::CseKeyPair] parsed result object
1736
+ # @yieldparam err [StandardError] error object if request failed
1737
+ #
1738
+ # @return [Google::Apis::GmailV1::CseKeyPair]
1739
+ #
1740
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1741
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1742
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1743
+ def disable_keypair_cse_key_pair(user_id, key_pair_id, disable_cse_key_pair_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1744
+ command = make_simple_command(:post, 'gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId}:disable', options)
1745
+ command.request_representation = Google::Apis::GmailV1::DisableCseKeyPairRequest::Representation
1746
+ command.request_object = disable_cse_key_pair_request_object
1747
+ command.response_representation = Google::Apis::GmailV1::CseKeyPair::Representation
1748
+ command.response_class = Google::Apis::GmailV1::CseKeyPair
1749
+ command.params['userId'] = user_id unless user_id.nil?
1750
+ command.params['keyPairId'] = key_pair_id unless key_pair_id.nil?
1751
+ command.query['fields'] = fields unless fields.nil?
1752
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1753
+ execute_or_queue_command(command, &block)
1754
+ end
1755
+
1756
+ # Turns on a client-side encryption key pair that was turned off. The key pair
1757
+ # becomes active again for any associated client-side encryption identities. [
1758
+ # Beta](https://workspace.google.com/terms/service-terms/index.html).
1759
+ # @param [String] user_id
1760
+ # The requester's primary email address. To indicate the authenticated user, you
1761
+ # can use the special value `me`.
1762
+ # @param [String] key_pair_id
1763
+ # The identifier of the key pair to turn on.
1764
+ # @param [Google::Apis::GmailV1::EnableCseKeyPairRequest] enable_cse_key_pair_request_object
1765
+ # @param [String] fields
1766
+ # Selector specifying which fields to include in a partial response.
1767
+ # @param [String] quota_user
1768
+ # Available to use for quota purposes for server-side applications. Can be any
1769
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1770
+ # @param [Google::Apis::RequestOptions] options
1771
+ # Request-specific options
1772
+ #
1773
+ # @yield [result, err] Result & error if block supplied
1774
+ # @yieldparam result [Google::Apis::GmailV1::CseKeyPair] parsed result object
1775
+ # @yieldparam err [StandardError] error object if request failed
1776
+ #
1777
+ # @return [Google::Apis::GmailV1::CseKeyPair]
1778
+ #
1779
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1780
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1781
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1782
+ def enable_keypair_cse_key_pair(user_id, key_pair_id, enable_cse_key_pair_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1783
+ command = make_simple_command(:post, 'gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId}:enable', options)
1784
+ command.request_representation = Google::Apis::GmailV1::EnableCseKeyPairRequest::Representation
1785
+ command.request_object = enable_cse_key_pair_request_object
1786
+ command.response_representation = Google::Apis::GmailV1::CseKeyPair::Representation
1787
+ command.response_class = Google::Apis::GmailV1::CseKeyPair
1788
+ command.params['userId'] = user_id unless user_id.nil?
1789
+ command.params['keyPairId'] = key_pair_id unless key_pair_id.nil?
1790
+ command.query['fields'] = fields unless fields.nil?
1791
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1792
+ execute_or_queue_command(command, &block)
1793
+ end
1794
+
1795
+ # Retrieves an existing client-side encryption key pair. [Beta](https://
1796
+ # workspace.google.com/terms/service-terms/index.html).
1797
+ # @param [String] user_id
1798
+ # The requester's primary email address. To indicate the authenticated user, you
1799
+ # can use the special value `me`.
1800
+ # @param [String] key_pair_id
1801
+ # The identifier of the key pair to retrieve.
1802
+ # @param [String] fields
1803
+ # Selector specifying which fields to include in a partial response.
1804
+ # @param [String] quota_user
1805
+ # Available to use for quota purposes for server-side applications. Can be any
1806
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1807
+ # @param [Google::Apis::RequestOptions] options
1808
+ # Request-specific options
1809
+ #
1810
+ # @yield [result, err] Result & error if block supplied
1811
+ # @yieldparam result [Google::Apis::GmailV1::CseKeyPair] parsed result object
1812
+ # @yieldparam err [StandardError] error object if request failed
1813
+ #
1814
+ # @return [Google::Apis::GmailV1::CseKeyPair]
1815
+ #
1816
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1817
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1818
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1819
+ def get_user_setting_cse_keypair(user_id, key_pair_id, fields: nil, quota_user: nil, options: nil, &block)
1820
+ command = make_simple_command(:get, 'gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId}', options)
1821
+ command.response_representation = Google::Apis::GmailV1::CseKeyPair::Representation
1822
+ command.response_class = Google::Apis::GmailV1::CseKeyPair
1823
+ command.params['userId'] = user_id unless user_id.nil?
1824
+ command.params['keyPairId'] = key_pair_id unless key_pair_id.nil?
1825
+ command.query['fields'] = fields unless fields.nil?
1826
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1827
+ execute_or_queue_command(command, &block)
1828
+ end
1829
+
1830
+ # Lists client-side encryption key pairs for an authenticated user. [Beta](https:
1831
+ # //workspace.google.com/terms/service-terms/index.html).
1832
+ # @param [String] user_id
1833
+ # The requester's primary email address. To indicate the authenticated user, you
1834
+ # can use the special value `me`.
1835
+ # @param [Fixnum] page_size
1836
+ # The number of key pairs to return. If not provided, the page size will default
1837
+ # to 20 entries.
1838
+ # @param [String] page_token
1839
+ # Pagination token indicating which page of key pairs to return. If the token is
1840
+ # not supplied, then the API will return the first page of results.
1841
+ # @param [String] fields
1842
+ # Selector specifying which fields to include in a partial response.
1843
+ # @param [String] quota_user
1844
+ # Available to use for quota purposes for server-side applications. Can be any
1845
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1846
+ # @param [Google::Apis::RequestOptions] options
1847
+ # Request-specific options
1848
+ #
1849
+ # @yield [result, err] Result & error if block supplied
1850
+ # @yieldparam result [Google::Apis::GmailV1::ListCseKeyPairsResponse] parsed result object
1851
+ # @yieldparam err [StandardError] error object if request failed
1852
+ #
1853
+ # @return [Google::Apis::GmailV1::ListCseKeyPairsResponse]
1854
+ #
1855
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1856
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1857
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1858
+ def list_user_setting_cse_keypairs(user_id, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1859
+ command = make_simple_command(:get, 'gmail/v1/users/{userId}/settings/cse/keypairs', options)
1860
+ command.response_representation = Google::Apis::GmailV1::ListCseKeyPairsResponse::Representation
1861
+ command.response_class = Google::Apis::GmailV1::ListCseKeyPairsResponse
1862
+ command.params['userId'] = user_id unless user_id.nil?
1863
+ command.query['pageSize'] = page_size unless page_size.nil?
1864
+ command.query['pageToken'] = page_token unless page_token.nil?
1865
+ command.query['fields'] = fields unless fields.nil?
1866
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1867
+ execute_or_queue_command(command, &block)
1868
+ end
1869
+
1870
+ # Deletes a client-side encryption key pair permanently and immediately. You can
1871
+ # only permanently delete key pairs that have been turned off for more than 30
1872
+ # days. To turn off a key pair, use the DisableCseKeyPair method. Gmail can't
1873
+ # restore or decrypt any messages that were encrypted by an obliterated key.
1874
+ # Authenticated users and Google Workspace administrators lose access to reading
1875
+ # the encrypted messages. [Beta](https://workspace.google.com/terms/service-
1876
+ # terms/index.html).
1877
+ # @param [String] user_id
1878
+ # The requester's primary email address. To indicate the authenticated user, you
1879
+ # can use the special value `me`.
1880
+ # @param [String] key_pair_id
1881
+ # The identifier of the key pair to obliterate.
1882
+ # @param [Google::Apis::GmailV1::ObliterateCseKeyPairRequest] obliterate_cse_key_pair_request_object
1883
+ # @param [String] fields
1884
+ # Selector specifying which fields to include in a partial response.
1885
+ # @param [String] quota_user
1886
+ # Available to use for quota purposes for server-side applications. Can be any
1887
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1888
+ # @param [Google::Apis::RequestOptions] options
1889
+ # Request-specific options
1890
+ #
1891
+ # @yield [result, err] Result & error if block supplied
1892
+ # @yieldparam result [NilClass] No result returned for this method
1893
+ # @yieldparam err [StandardError] error object if request failed
1894
+ #
1895
+ # @return [void]
1896
+ #
1897
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1898
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1899
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1900
+ def obliterate_keypair_cse_key_pair(user_id, key_pair_id, obliterate_cse_key_pair_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1901
+ command = make_simple_command(:post, 'gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId}:obliterate', options)
1902
+ command.request_representation = Google::Apis::GmailV1::ObliterateCseKeyPairRequest::Representation
1903
+ command.request_object = obliterate_cse_key_pair_request_object
1904
+ command.params['userId'] = user_id unless user_id.nil?
1905
+ command.params['keyPairId'] = key_pair_id unless key_pair_id.nil?
1906
+ command.query['fields'] = fields unless fields.nil?
1907
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1908
+ execute_or_queue_command(command, &block)
1909
+ end
1910
+
1487
1911
  # Adds a delegate with its verification status set directly to `accepted`,
1488
1912
  # without sending any verification email. The delegate user must be a member of
1489
1913
  # the same G Suite organization as the delegator user. Gmail imposes limitations
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gmail_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.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: 2022-10-31 00:00:00.000000000 Z
11
+ date: 2023-01-04 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-gmail_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gmail_v1
63
63
  post_install_message:
64
64
  rdoc_options: []