google-apis-gmail_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: 31a449a816444d6c691ae54db9f99096a9017395d1913751f15e73c180eaa94d
4
- data.tar.gz: c8ecc4f16b3ad772d3aaf5f6f07fbe160310564f68b12e383ab7c42c7ab51b0c
3
+ metadata.gz: 8fa3d4eb5f3f83d070f007af95fb3090521705d553e9e6a55f23473c54e5b131
4
+ data.tar.gz: 7b19a264adf101b920e57af3308fd186c92d620c1c7b10102e71c775ccc8cffa
5
5
  SHA512:
6
- metadata.gz: 6ba51583e951d4789d958e52817e876e7326332a95371a6ba3c1bbadd514bcb5d2a089bf5ffdffb22f93b143d39eff9b63f9f437cfe1af29f8c38c5460c15d50
7
- data.tar.gz: 1f293f7a486e17e11cf4593a2f44e0c39f1964c72cca5bf4a2513305610a359e8a9c6b44a022200e6ebc897857baf690f424bd94400ef6848da177276bfd3f18
6
+ metadata.gz: 6df8afb239168afa521160dca79fb85d401bcefa8d1e33b1cef3f1a9be9bfcb8d456d08b46af6c201b15c999c6361c334af2b21b00325d25f80602ba01669b06
7
+ data.tar.gz: c4da87cbd5ff2af99a3c4559f0937735b8dd4d9118f5529edcdf1eab20720ef0209076f2be0c4c54b37e110c8c6eb457bfc83827e19f3706fe392b9c545bdd6f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.34.0 (2023-10-08)
4
+
5
+ * Regenerated from discovery document revision 20231002
6
+
7
+ ### v0.33.0 (2023-10-01)
8
+
9
+ * Regenerated from discovery document revision 20230925
10
+
3
11
  ### v0.32.0 (2023-09-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20230918
@@ -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,11 +210,6 @@ module Google
203
210
  class CsePrivateKeyMetadata
204
211
  include Google::Apis::Core::Hashable
205
212
 
206
- # Metadata for hardware keys.
207
- # Corresponds to the JSON property `hardwareKeyMetadata`
208
- # @return [Google::Apis::GmailV1::HardwareKeyMetadata]
209
- attr_accessor :hardware_key_metadata
210
-
211
213
  # Metadata for private keys managed by an external key access control list
212
214
  # service. For details about managing key access, see [Google Workspace CSE API
213
215
  # Reference](https://developers.google.com/workspace/cse/reference).
@@ -226,7 +228,6 @@ module Google
226
228
 
227
229
  # Update properties of this object
228
230
  def update!(**args)
229
- @hardware_key_metadata = args[:hardware_key_metadata] if args.key?(:hardware_key_metadata)
230
231
  @kacls_key_metadata = args[:kacls_key_metadata] if args.key?(:kacls_key_metadata)
231
232
  @private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
232
233
  end
@@ -478,25 +479,6 @@ module Google
478
479
  end
479
480
  end
480
481
 
481
- # Metadata for hardware keys.
482
- class HardwareKeyMetadata
483
- include Google::Apis::Core::Hashable
484
-
485
- # Description about the hardware key.
486
- # Corresponds to the JSON property `description`
487
- # @return [String]
488
- attr_accessor :description
489
-
490
- def initialize(**args)
491
- update!(**args)
492
- end
493
-
494
- # Update properties of this object
495
- def update!(**args)
496
- @description = args[:description] if args.key?(:description)
497
- end
498
- end
499
-
500
482
  # A record of a change to the user's mailbox. Each history change may affect
501
483
  # multiple messages in multiple ways.
502
484
  class History
@@ -1593,6 +1575,32 @@ module Google
1593
1575
  end
1594
1576
  end
1595
1577
 
1578
+ # The configuration of a CSE identity that uses different key pairs for signing
1579
+ # and encryption.
1580
+ class SignAndEncryptKeyPairs
1581
+ include Google::Apis::Core::Hashable
1582
+
1583
+ # The ID of the CseKeyPair that encrypts signed outgoing mail.
1584
+ # Corresponds to the JSON property `encryptionKeyPairId`
1585
+ # @return [String]
1586
+ attr_accessor :encryption_key_pair_id
1587
+
1588
+ # The ID of the CseKeyPair that signs outgoing mail.
1589
+ # Corresponds to the JSON property `signingKeyPairId`
1590
+ # @return [String]
1591
+ attr_accessor :signing_key_pair_id
1592
+
1593
+ def initialize(**args)
1594
+ update!(**args)
1595
+ end
1596
+
1597
+ # Update properties of this object
1598
+ def update!(**args)
1599
+ @encryption_key_pair_id = args[:encryption_key_pair_id] if args.key?(:encryption_key_pair_id)
1600
+ @signing_key_pair_id = args[:signing_key_pair_id] if args.key?(:signing_key_pair_id)
1601
+ end
1602
+ end
1603
+
1596
1604
  # An S/MIME email config.
1597
1605
  class SmimeInfo
1598
1606
  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.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.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230918"
25
+ REVISION = "20231002"
26
26
  end
27
27
  end
28
28
  end
@@ -106,12 +106,6 @@ 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
-
115
109
  class History
116
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
111
 
@@ -304,6 +298,12 @@ module Google
304
298
  include Google::Apis::Core::JsonObjectSupport
305
299
  end
306
300
 
301
+ class SignAndEncryptKeyPairs
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
307
  class SmimeInfo
308
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
309
 
@@ -370,6 +370,8 @@ module Google
370
370
  class Representation < Google::Apis::Core::JsonRepresentation
371
371
  property :email_address, as: 'emailAddress'
372
372
  property :primary_key_pair_id, as: 'primaryKeyPairId'
373
+ property :sign_and_encrypt_key_pairs, as: 'signAndEncryptKeyPairs', class: Google::Apis::GmailV1::SignAndEncryptKeyPairs, decorator: Google::Apis::GmailV1::SignAndEncryptKeyPairs::Representation
374
+
373
375
  end
374
376
  end
375
377
 
@@ -390,8 +392,6 @@ module Google
390
392
  class CsePrivateKeyMetadata
391
393
  # @private
392
394
  class Representation < Google::Apis::Core::JsonRepresentation
393
- property :hardware_key_metadata, as: 'hardwareKeyMetadata', class: Google::Apis::GmailV1::HardwareKeyMetadata, decorator: Google::Apis::GmailV1::HardwareKeyMetadata::Representation
394
-
395
395
  property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
396
396
 
397
397
  property :private_key_metadata_id, as: 'privateKeyMetadataId'
@@ -470,13 +470,6 @@ module Google
470
470
  end
471
471
  end
472
472
 
473
- class HardwareKeyMetadata
474
- # @private
475
- class Representation < Google::Apis::Core::JsonRepresentation
476
- property :description, as: 'description'
477
- end
478
- end
479
-
480
473
  class History
481
474
  # @private
482
475
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -788,6 +781,14 @@ module Google
788
781
  end
789
782
  end
790
783
 
784
+ class SignAndEncryptKeyPairs
785
+ # @private
786
+ class Representation < Google::Apis::Core::JsonRepresentation
787
+ property :encryption_key_pair_id, as: 'encryptionKeyPairId'
788
+ property :signing_key_pair_id, as: 'signingKeyPairId'
789
+ end
790
+ end
791
+
791
792
  class SmimeInfo
792
793
  # @private
793
794
  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.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: 2023-09-24 00:00:00.000000000 Z
11
+ date: 2023-10-08 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.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.34.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: []