google-apis-gmail_v1 0.31.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/gmail_v1/classes.rb +25 -27
- data/lib/google/apis/gmail_v1/gem_version.rb +2 -2
- data/lib/google/apis/gmail_v1/representations.rb +15 -15
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31a449a816444d6c691ae54db9f99096a9017395d1913751f15e73c180eaa94d
|
4
|
+
data.tar.gz: c8ecc4f16b3ad772d3aaf5f6f07fbe160310564f68b12e383ab7c42c7ab51b0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ba51583e951d4789d958e52817e876e7326332a95371a6ba3c1bbadd514bcb5d2a089bf5ffdffb22f93b143d39eff9b63f9f437cfe1af29f8c38c5460c15d50
|
7
|
+
data.tar.gz: 1f293f7a486e17e11cf4593a2f44e0c39f1964c72cca5bf4a2513305610a359e8a9c6b44a022200e6ebc897857baf690f424bd94400ef6848da177276bfd3f18
|
data/CHANGELOG.md
CHANGED
@@ -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).
|
@@ -210,12 +215,6 @@ module Google
|
|
210
215
|
# @return [Google::Apis::GmailV1::KaclsKeyMetadata]
|
211
216
|
attr_accessor :kacls_key_metadata
|
212
217
|
|
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
218
|
# Output only. The immutable ID for the private key metadata instance.
|
220
219
|
# Corresponds to the JSON property `privateKeyMetadataId`
|
221
220
|
# @return [String]
|
@@ -227,8 +226,8 @@ module Google
|
|
227
226
|
|
228
227
|
# Update properties of this object
|
229
228
|
def update!(**args)
|
229
|
+
@hardware_key_metadata = args[:hardware_key_metadata] if args.key?(:hardware_key_metadata)
|
230
230
|
@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
231
|
@private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
|
233
232
|
end
|
234
233
|
end
|
@@ -479,6 +478,25 @@ module Google
|
|
479
478
|
end
|
480
479
|
end
|
481
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
|
+
|
482
500
|
# A record of a change to the user's mailbox. Each history change may affect
|
483
501
|
# multiple messages in multiple ways.
|
484
502
|
class History
|
@@ -1423,26 +1441,6 @@ module Google
|
|
1423
1441
|
end
|
1424
1442
|
end
|
1425
1443
|
|
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
1444
|
# POP settings for an account.
|
1447
1445
|
class PopSettings
|
1448
1446
|
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.
|
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 = "
|
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
|
|
@@ -280,12 +286,6 @@ module Google
|
|
280
286
|
include Google::Apis::Core::JsonObjectSupport
|
281
287
|
end
|
282
288
|
|
283
|
-
class PivKeyMetadata
|
284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
-
|
286
|
-
include Google::Apis::Core::JsonObjectSupport
|
287
|
-
end
|
288
|
-
|
289
289
|
class PopSettings
|
290
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
291
|
|
@@ -390,9 +390,9 @@ module Google
|
|
390
390
|
class CsePrivateKeyMetadata
|
391
391
|
# @private
|
392
392
|
class Representation < Google::Apis::Core::JsonRepresentation
|
393
|
-
property :
|
393
|
+
property :hardware_key_metadata, as: 'hardwareKeyMetadata', class: Google::Apis::GmailV1::HardwareKeyMetadata, decorator: Google::Apis::GmailV1::HardwareKeyMetadata::Representation
|
394
394
|
|
395
|
-
property :
|
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'
|
398
398
|
end
|
@@ -470,6 +470,13 @@ 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
|
+
|
473
480
|
class History
|
474
481
|
# @private
|
475
482
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -747,13 +754,6 @@ module Google
|
|
747
754
|
end
|
748
755
|
end
|
749
756
|
|
750
|
-
class PivKeyMetadata
|
751
|
-
# @private
|
752
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
753
|
-
property :description, as: 'description'
|
754
|
-
end
|
755
|
-
end
|
756
|
-
|
757
757
|
class PopSettings
|
758
758
|
# @private
|
759
759
|
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.
|
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-09-
|
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.
|
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: []
|