google-apis-gmail_v1 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/gmail_v1/classes.rb +27 -0
- data/lib/google/apis/gmail_v1/gem_version.rb +2 -2
- data/lib/google/apis/gmail_v1/representations.rb +15 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffa3765db1a82be40949827a04a9691572e22effd7fc177f9a207fe315c69b4c
|
4
|
+
data.tar.gz: 93e4933f93b1308ed9dd66836662f84a5b00d388a02c0a7bf3e5d3284a9570f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe8cf2c1c730f6754438eb58ceac5be4d5a36215da4787c9e003442e8f7a25573223610108d47f7338a95e9967b591dbdc7a14f17d5b65d303fca2e4140b698c
|
7
|
+
data.tar.gz: 9bf3a8887bf129562f073f26ee044375ca5ce569f37af03aa71c81d7364703b6c7bdb072ce3c6d712b659edeb5b7963bd2ff5b8f04692351da314a0b92c8b8f4
|
data/CHANGELOG.md
CHANGED
@@ -210,6 +210,12 @@ module Google
|
|
210
210
|
# @return [Google::Apis::GmailV1::KaclsKeyMetadata]
|
211
211
|
attr_accessor :kacls_key_metadata
|
212
212
|
|
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
|
+
|
213
219
|
# Output only. The immutable ID for the private key metadata instance.
|
214
220
|
# Corresponds to the JSON property `privateKeyMetadataId`
|
215
221
|
# @return [String]
|
@@ -222,6 +228,7 @@ module Google
|
|
222
228
|
# Update properties of this object
|
223
229
|
def update!(**args)
|
224
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)
|
225
232
|
@private_key_metadata_id = args[:private_key_metadata_id] if args.key?(:private_key_metadata_id)
|
226
233
|
end
|
227
234
|
end
|
@@ -1416,6 +1423,26 @@ module Google
|
|
1416
1423
|
end
|
1417
1424
|
end
|
1418
1425
|
|
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
|
+
|
1419
1446
|
# POP settings for an account.
|
1420
1447
|
class PopSettings
|
1421
1448
|
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.31.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 = "20230911"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class PivKeyMetadata
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class PopSettings
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -386,6 +392,8 @@ module Google
|
|
386
392
|
class Representation < Google::Apis::Core::JsonRepresentation
|
387
393
|
property :kacls_key_metadata, as: 'kaclsKeyMetadata', class: Google::Apis::GmailV1::KaclsKeyMetadata, decorator: Google::Apis::GmailV1::KaclsKeyMetadata::Representation
|
388
394
|
|
395
|
+
property :piv_key_metadata, as: 'pivKeyMetadata', class: Google::Apis::GmailV1::PivKeyMetadata, decorator: Google::Apis::GmailV1::PivKeyMetadata::Representation
|
396
|
+
|
389
397
|
property :private_key_metadata_id, as: 'privateKeyMetadataId'
|
390
398
|
end
|
391
399
|
end
|
@@ -739,6 +747,13 @@ module Google
|
|
739
747
|
end
|
740
748
|
end
|
741
749
|
|
750
|
+
class PivKeyMetadata
|
751
|
+
# @private
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
753
|
+
property :description, as: 'description'
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
742
757
|
class PopSettings
|
743
758
|
# @private
|
744
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.31.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-
|
11
|
+
date: 2023-09-17 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.31.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.
|
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
|