google-apis-gmail_v1 0.30.0 → 0.32.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: 5814c8ad092ab0d23a5759bbf16bda82573656db81de1dab4cf4de4e7b170090
4
- data.tar.gz: ce4fc2aa0f288498035195a96c0ff1ad04b17e50a19dea075f24119dca095307
3
+ metadata.gz: 31a449a816444d6c691ae54db9f99096a9017395d1913751f15e73c180eaa94d
4
+ data.tar.gz: c8ecc4f16b3ad772d3aaf5f6f07fbe160310564f68b12e383ab7c42c7ab51b0c
5
5
  SHA512:
6
- metadata.gz: dbd57adad7093b03503197d8e65f5aa9733fccf92b0c4fdb4d41e77e0940b667c4c26a578a1fa12f2448f15f30575b1b4c68de7d532d5a7774ce09b767bb1dab
7
- data.tar.gz: 57ca5e728c3f99e10080519973e2c309fd0c0f60b73cff1dfff5407b523a2871ae66355926478dd8687852c4bfac62dacf027c61188d68cd67b745a36f6c57e8
6
+ metadata.gz: 6ba51583e951d4789d958e52817e876e7326332a95371a6ba3c1bbadd514bcb5d2a089bf5ffdffb22f93b143d39eff9b63f9f437cfe1af29f8c38c5460c15d50
7
+ data.tar.gz: 1f293f7a486e17e11cf4593a2f44e0c39f1964c72cca5bf4a2513305610a359e8a9c6b44a022200e6ebc897857baf690f424bd94400ef6848da177276bfd3f18
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.32.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230918
6
+
7
+ ### v0.31.0 (2023-09-17)
8
+
9
+ * Regenerated from discovery document revision 20230911
10
+
3
11
  ### v0.30.0 (2023-07-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230626
@@ -203,6 +203,11 @@ module Google
203
203
  class CsePrivateKeyMetadata
204
204
  include Google::Apis::Core::Hashable
205
205
 
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
+
206
211
  # Metadata for private keys managed by an external key access control list
207
212
  # service. For details about managing key access, see [Google Workspace CSE API
208
213
  # Reference](https://developers.google.com/workspace/cse/reference).
@@ -221,6 +226,7 @@ module Google
221
226
 
222
227
  # Update properties of this object
223
228
  def update!(**args)
229
+ @hardware_key_metadata = args[:hardware_key_metadata] if args.key?(:hardware_key_metadata)
224
230
  @kacls_key_metadata = args[:kacls_key_metadata] if args.key?(:kacls_key_metadata)
225
231
  @private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
226
232
  end
@@ -472,6 +478,25 @@ module Google
472
478
  end
473
479
  end
474
480
 
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
+
475
500
  # A record of a change to the user's mailbox. Each history change may affect
476
501
  # multiple messages in multiple ways.
477
502
  class History
@@ -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.30.0"
19
+ GEM_VERSION = "0.32.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 = "20230626"
25
+ REVISION = "20230918"
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
 
@@ -384,6 +390,8 @@ module Google
384
390
  class CsePrivateKeyMetadata
385
391
  # @private
386
392
  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
+
387
395
  property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
388
396
 
389
397
  property :private_key_metadata_id, as: 'privateKeyMetadataId'
@@ -462,6 +470,13 @@ module Google
462
470
  end
463
471
  end
464
472
 
473
+ class HardwareKeyMetadata
474
+ # @private
475
+ class Representation < Google::Apis::Core::JsonRepresentation
476
+ property :description, as: 'description'
477
+ end
478
+ end
479
+
465
480
  class History
466
481
  # @private
467
482
  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.30.0
4
+ version: 0.32.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-09-24 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.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.32.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Gmail API V1