google-apis-gmail_v1 0.31.0 → 0.33.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: ffa3765db1a82be40949827a04a9691572e22effd7fc177f9a207fe315c69b4c
4
- data.tar.gz: 93e4933f93b1308ed9dd66836662f84a5b00d388a02c0a7bf3e5d3284a9570f2
3
+ metadata.gz: 04e430a858b2b417893b90314b5d3ad29fc8052e81fc0e8a7df5a785d66b4d2c
4
+ data.tar.gz: 3d4c479c9d8501edf940497717886969a008aa807101bd34cca1db2788c2ebf5
5
5
  SHA512:
6
- metadata.gz: fe8cf2c1c730f6754438eb58ceac5be4d5a36215da4787c9e003442e8f7a25573223610108d47f7338a95e9967b591dbdc7a14f17d5b65d303fca2e4140b698c
7
- data.tar.gz: 9bf3a8887bf129562f073f26ee044375ca5ce569f37af03aa71c81d7364703b6c7bdb072ce3c6d712b659edeb5b7963bd2ff5b8f04692351da314a0b92c8b8f4
6
+ metadata.gz: 1bacf501bbf3c53042d0877972120ae26018e8fd4b94f882528604de20d20b0999425f6b044750028a4330d313edccbd2c4556c999c8e6df8aafd5f9fec843a7
7
+ data.tar.gz: 139ee09e4cdc2d532934b8025862a3be61f29e7c00135172f53318d34430b5a78064c2d4d822c7ba41c42f4d3e47597ec483f0602df606d20f5a9411597517b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.33.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230925
6
+
7
+ ### v0.32.0 (2023-09-24)
8
+
9
+ * Regenerated from discovery document revision 20230918
10
+
3
11
  ### v0.31.0 (2023-09-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20230911
@@ -122,6 +122,12 @@ module Google
122
122
  # @return [String]
123
123
  attr_accessor :primary_key_pair_id
124
124
 
125
+ # The configuration of a CSE identity that uses different key pairs for signing
126
+ # and encryption.
127
+ # Corresponds to the JSON property `signAndEncryptKeyPairs`
128
+ # @return [Google::Apis::GmailV1::SignAndEncryptKeyPairs]
129
+ attr_accessor :sign_and_encrypt_key_pairs
130
+
125
131
  def initialize(**args)
126
132
  update!(**args)
127
133
  end
@@ -130,6 +136,7 @@ module Google
130
136
  def update!(**args)
131
137
  @email_address = args[:email_address] if args.key?(:email_address)
132
138
  @primary_key_pair_id = args[:primary_key_pair_id] if args.key?(:primary_key_pair_id)
139
+ @sign_and_encrypt_key_pairs = args[:sign_and_encrypt_key_pairs] if args.key?(:sign_and_encrypt_key_pairs)
133
140
  end
134
141
  end
135
142
 
@@ -203,6 +210,11 @@ module Google
203
210
  class CsePrivateKeyMetadata
204
211
  include Google::Apis::Core::Hashable
205
212
 
213
+ # Metadata for hardware keys.
214
+ # Corresponds to the JSON property `hardwareKeyMetadata`
215
+ # @return [Google::Apis::GmailV1::HardwareKeyMetadata]
216
+ attr_accessor :hardware_key_metadata
217
+
206
218
  # Metadata for private keys managed by an external key access control list
207
219
  # service. For details about managing key access, see [Google Workspace CSE API
208
220
  # Reference](https://developers.google.com/workspace/cse/reference).
@@ -210,12 +222,6 @@ module Google
210
222
  # @return [Google::Apis::GmailV1::KaclsKeyMetadata]
211
223
  attr_accessor :kacls_key_metadata
212
224
 
213
- # Metadata for a personal identity verification (PIV) private key that requires
214
- # a card reader for access.
215
- # Corresponds to the JSON property `pivKeyMetadata`
216
- # @return [Google::Apis::GmailV1::PivKeyMetadata]
217
- attr_accessor :piv_key_metadata
218
-
219
225
  # Output only. The immutable ID for the private key metadata instance.
220
226
  # Corresponds to the JSON property `privateKeyMetadataId`
221
227
  # @return [String]
@@ -227,8 +233,8 @@ module Google
227
233
 
228
234
  # Update properties of this object
229
235
  def update!(**args)
236
+ @hardware_key_metadata = args[:hardware_key_metadata] if args.key?(:hardware_key_metadata)
230
237
  @kacls_key_metadata = args[:kacls_key_metadata] if args.key?(:kacls_key_metadata)
231
- @piv_key_metadata = args[:piv_key_metadata] if args.key?(:piv_key_metadata)
232
238
  @private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
233
239
  end
234
240
  end
@@ -479,6 +485,25 @@ module Google
479
485
  end
480
486
  end
481
487
 
488
+ # Metadata for hardware keys.
489
+ class HardwareKeyMetadata
490
+ include Google::Apis::Core::Hashable
491
+
492
+ # Description about the hardware key.
493
+ # Corresponds to the JSON property `description`
494
+ # @return [String]
495
+ attr_accessor :description
496
+
497
+ def initialize(**args)
498
+ update!(**args)
499
+ end
500
+
501
+ # Update properties of this object
502
+ def update!(**args)
503
+ @description = args[:description] if args.key?(:description)
504
+ end
505
+ end
506
+
482
507
  # A record of a change to the user's mailbox. Each history change may affect
483
508
  # multiple messages in multiple ways.
484
509
  class History
@@ -1423,26 +1448,6 @@ module Google
1423
1448
  end
1424
1449
  end
1425
1450
 
1426
- # Metadata for a personal identity verification (PIV) private key that requires
1427
- # a card reader for access.
1428
- class PivKeyMetadata
1429
- include Google::Apis::Core::Hashable
1430
-
1431
- # Description about the PIV key.
1432
- # Corresponds to the JSON property `description`
1433
- # @return [String]
1434
- attr_accessor :description
1435
-
1436
- def initialize(**args)
1437
- update!(**args)
1438
- end
1439
-
1440
- # Update properties of this object
1441
- def update!(**args)
1442
- @description = args[:description] if args.key?(:description)
1443
- end
1444
- end
1445
-
1446
1451
  # POP settings for an account.
1447
1452
  class PopSettings
1448
1453
  include Google::Apis::Core::Hashable
@@ -1595,6 +1600,32 @@ module Google
1595
1600
  end
1596
1601
  end
1597
1602
 
1603
+ # The configuration of a CSE identity that uses different key pairs for signing
1604
+ # and encryption.
1605
+ class SignAndEncryptKeyPairs
1606
+ include Google::Apis::Core::Hashable
1607
+
1608
+ # The ID of the CseKeyPair that encrypts signed outgoing mail.
1609
+ # Corresponds to the JSON property `encryptionKeyPairId`
1610
+ # @return [String]
1611
+ attr_accessor :encryption_key_pair_id
1612
+
1613
+ # The ID of the CseKeyPair that signs outgoing mail.
1614
+ # Corresponds to the JSON property `signingKeyPairId`
1615
+ # @return [String]
1616
+ attr_accessor :signing_key_pair_id
1617
+
1618
+ def initialize(**args)
1619
+ update!(**args)
1620
+ end
1621
+
1622
+ # Update properties of this object
1623
+ def update!(**args)
1624
+ @encryption_key_pair_id = args[:encryption_key_pair_id] if args.key?(:encryption_key_pair_id)
1625
+ @signing_key_pair_id = args[:signing_key_pair_id] if args.key?(:signing_key_pair_id)
1626
+ end
1627
+ end
1628
+
1598
1629
  # An S/MIME email config.
1599
1630
  class SmimeInfo
1600
1631
  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.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230911"
25
+ REVISION = "20230925"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,12 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class HardwareKeyMetadata
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
109
115
  class History
110
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
117
 
@@ -280,25 +286,25 @@ module Google
280
286
  include Google::Apis::Core::JsonObjectSupport
281
287
  end
282
288
 
283
- class PivKeyMetadata
289
+ class PopSettings
284
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
291
 
286
292
  include Google::Apis::Core::JsonObjectSupport
287
293
  end
288
294
 
289
- class PopSettings
295
+ class Profile
290
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
297
 
292
298
  include Google::Apis::Core::JsonObjectSupport
293
299
  end
294
300
 
295
- class Profile
301
+ class SendAs
296
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
303
 
298
304
  include Google::Apis::Core::JsonObjectSupport
299
305
  end
300
306
 
301
- class SendAs
307
+ class SignAndEncryptKeyPairs
302
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
309
 
304
310
  include Google::Apis::Core::JsonObjectSupport
@@ -370,6 +376,8 @@ module Google
370
376
  class Representation < Google::Apis::Core::JsonRepresentation
371
377
  property :email_address, as: 'emailAddress'
372
378
  property :primary_key_pair_id, as: 'primaryKeyPairId'
379
+ property :sign_and_encrypt_key_pairs, as: 'signAndEncryptKeyPairs', class: Google::Apis::GmailV1::SignAndEncryptKeyPairs, decorator: Google::Apis::GmailV1::SignAndEncryptKeyPairs::Representation
380
+
373
381
  end
374
382
  end
375
383
 
@@ -390,9 +398,9 @@ module Google
390
398
  class CsePrivateKeyMetadata
391
399
  # @private
392
400
  class Representation < Google::Apis::Core::JsonRepresentation
393
- property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
401
+ property :hardware_key_metadata, as: 'hardwareKeyMetadata', class: Google::Apis::GmailV1::HardwareKeyMetadata, decorator: Google::Apis::GmailV1::HardwareKeyMetadata::Representation
394
402
 
395
- property :piv_key_metadata, as: 'pivKeyMetadata', class: Google::Apis::GmailV1::PivKeyMetadata, decorator: Google::Apis::GmailV1::PivKeyMetadata::Representation
403
+ property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
396
404
 
397
405
  property :private_key_metadata_id, as: 'privateKeyMetadataId'
398
406
  end
@@ -470,6 +478,13 @@ module Google
470
478
  end
471
479
  end
472
480
 
481
+ class HardwareKeyMetadata
482
+ # @private
483
+ class Representation < Google::Apis::Core::JsonRepresentation
484
+ property :description, as: 'description'
485
+ end
486
+ end
487
+
473
488
  class History
474
489
  # @private
475
490
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -747,13 +762,6 @@ module Google
747
762
  end
748
763
  end
749
764
 
750
- class PivKeyMetadata
751
- # @private
752
- class Representation < Google::Apis::Core::JsonRepresentation
753
- property :description, as: 'description'
754
- end
755
- end
756
-
757
765
  class PopSettings
758
766
  # @private
759
767
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -788,6 +796,14 @@ module Google
788
796
  end
789
797
  end
790
798
 
799
+ class SignAndEncryptKeyPairs
800
+ # @private
801
+ class Representation < Google::Apis::Core::JsonRepresentation
802
+ property :encryption_key_pair_id, as: 'encryptionKeyPairId'
803
+ property :signing_key_pair_id, as: 'signingKeyPairId'
804
+ end
805
+ end
806
+
791
807
  class SmimeInfo
792
808
  # @private
793
809
  class Representation < Google::Apis::Core::JsonRepresentation
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.31.0
4
+ version: 0.33.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: 2023-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-01 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.33.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: []