google-apis-gmail_v1 0.34.0 → 0.36.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: 8fa3d4eb5f3f83d070f007af95fb3090521705d553e9e6a55f23473c54e5b131
4
- data.tar.gz: 7b19a264adf101b920e57af3308fd186c92d620c1c7b10102e71c775ccc8cffa
3
+ metadata.gz: 9448a2015acb6102b4a8d18b39f402b07890ada4c19d2fd72ffcad3210f0c273
4
+ data.tar.gz: 849409e8c79a0b02a6b418bffc8b5f5b16b20715bc9f0de8f98d16712a03383a
5
5
  SHA512:
6
- metadata.gz: 6df8afb239168afa521160dca79fb85d401bcefa8d1e33b1cef3f1a9be9bfcb8d456d08b46af6c201b15c999c6361c334af2b21b00325d25f80602ba01669b06
7
- data.tar.gz: c4da87cbd5ff2af99a3c4559f0937735b8dd4d9118f5529edcdf1eab20720ef0209076f2be0c4c54b37e110c8c6eb457bfc83827e19f3706fe392b9c545bdd6f
6
+ metadata.gz: 1c96abecc09a48acc8707e3b539183c74b468008765bcf32669c2d704ad478f9342456805639002055fe6c33d90a21e2261c3455716c6273450e02f50dfbeff9
7
+ data.tar.gz: be616a12502dcc11e539d05ca73848c7b15a4df4fe721ff0b28fc045987894fab79f19bde775ca4e1d1e77861c3bbc410d1440f6091419172a128f5bda7e4543
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.36.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231106
6
+
7
+ ### v0.35.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231023
10
+
3
11
  ### v0.34.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20231002
@@ -210,6 +210,11 @@ module Google
210
210
  class CsePrivateKeyMetadata
211
211
  include Google::Apis::Core::Hashable
212
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
+
213
218
  # Metadata for private keys managed by an external key access control list
214
219
  # service. For details about managing key access, see [Google Workspace CSE API
215
220
  # Reference](https://developers.google.com/workspace/cse/reference).
@@ -228,6 +233,7 @@ module Google
228
233
 
229
234
  # Update properties of this object
230
235
  def update!(**args)
236
+ @hardware_key_metadata = args[:hardware_key_metadata] if args.key?(:hardware_key_metadata)
231
237
  @kacls_key_metadata = args[:kacls_key_metadata] if args.key?(:kacls_key_metadata)
232
238
  @private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
233
239
  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
@@ -1045,6 +1070,11 @@ module Google
1045
1070
  # @return [Array<Google::Apis::GmailV1::Label>]
1046
1071
  attr_accessor :labels
1047
1072
 
1073
+ #
1074
+ # Corresponds to the JSON property `productId`
1075
+ # @return [Fixnum]
1076
+ attr_accessor :product_id
1077
+
1048
1078
  def initialize(**args)
1049
1079
  update!(**args)
1050
1080
  end
@@ -1052,6 +1082,7 @@ module Google
1052
1082
  # Update properties of this object
1053
1083
  def update!(**args)
1054
1084
  @labels = args[:labels] if args.key?(:labels)
1085
+ @product_id = args[:product_id] if args.key?(:product_id)
1055
1086
  end
1056
1087
  end
1057
1088
 
@@ -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.34.0"
19
+ GEM_VERSION = "0.36.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 = "20231002"
25
+ REVISION = "20231106"
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
 
@@ -392,6 +398,8 @@ module Google
392
398
  class CsePrivateKeyMetadata
393
399
  # @private
394
400
  class Representation < Google::Apis::Core::JsonRepresentation
401
+ property :hardware_key_metadata, as: 'hardwareKeyMetadata', class: Google::Apis::GmailV1::HardwareKeyMetadata, decorator: Google::Apis::GmailV1::HardwareKeyMetadata::Representation
402
+
395
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'
@@ -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
@@ -638,6 +653,7 @@ module Google
638
653
  class Representation < Google::Apis::Core::JsonRepresentation
639
654
  collection :labels, as: 'labels', class: Google::Apis::GmailV1::Label, decorator: Google::Apis::GmailV1::Label::Representation
640
655
 
656
+ property :product_id, as: 'productId'
641
657
  end
642
658
  end
643
659
 
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.34.0
4
+ version: 0.36.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-10-08 00:00:00.000000000 Z
11
+ date: 2023-11-12 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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.36.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: []