google-apis-gmail_v1 0.34.0 → 0.35.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 -0
- data/lib/google/apis/gmail_v1/gem_version.rb +2 -2
- data/lib/google/apis/gmail_v1/representations.rb +15 -0
- 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: 4e42b719ee3adafe618ec6f6173aacffe2fed43f24f52bd2bcc69e0dcf15e937
|
|
4
|
+
data.tar.gz: 22b29306b13fbdc412093eb18e4eef0f164d7e6c706858dfe5e96bd69d277202
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 759276493a1cf9477e9dbc22abf1cf8bdbebccfa8131bc922cd56a13e01157cfee8ee7a4e849652aa68edf53ee2200e51899d3eeb4ba14a1aa5ad8e9719e3a24
|
|
7
|
+
data.tar.gz: 03af57955a6000c73856a444aeb7fbff6cf95f64acaba75ede4a63b04483804658ea38bf8ce2698448b961588fc31a58a161e107365f027e8bfa831163603005
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -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.35.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 = "20231023"
|
|
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
|
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.35.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-
|
|
11
|
+
date: 2023-10-29 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.35.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: []
|