google-apis-drive_v3 0.26.0 → 0.27.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddd37aa5e8b95e3ce4d27c64f20c0eaa01dc6c1c08315669fb6c8fca10ef764f
|
|
4
|
+
data.tar.gz: 9f6ebf6ef456b227f1b924c5d4d8c067cd942f831101ca1717821038df43cb7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d3318aa5846ba6020e68ecc43c7ec2fe5d1b6794dc4eba91e3b6e2da29982ee54234acbdbeef5d414ecb0800c4521195748497743e8208045ae47e00ecfedab
|
|
7
|
+
data.tar.gz: 7452d86aaabac0900fe15d118aeedc3331d04cf3fac18084ee9c42d32bcfe1e11435e29e48d471e49385ad2fa4a5f91ca4c8417c49a06e22dd19222381be54f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1266,6 +1266,20 @@ module Google
|
|
|
1266
1266
|
# @return [String]
|
|
1267
1267
|
attr_accessor :resource_key
|
|
1268
1268
|
|
|
1269
|
+
# The SHA1 checksum associated with this file, if available. This field is only
|
|
1270
|
+
# populated for files with content stored in Google Drive; it is not populated
|
|
1271
|
+
# for Docs Editors or shortcut files.
|
|
1272
|
+
# Corresponds to the JSON property `sha1Checksum`
|
|
1273
|
+
# @return [String]
|
|
1274
|
+
attr_accessor :sha1_checksum
|
|
1275
|
+
|
|
1276
|
+
# The SHA256 checksum associated with this file, if available. This field is
|
|
1277
|
+
# only populated for files with content stored in Google Drive; it is not
|
|
1278
|
+
# populated for Docs Editors or shortcut files.
|
|
1279
|
+
# Corresponds to the JSON property `sha256Checksum`
|
|
1280
|
+
# @return [String]
|
|
1281
|
+
attr_accessor :sha256_checksum
|
|
1282
|
+
|
|
1269
1283
|
# Whether the file has been shared. Not populated for items in shared drives.
|
|
1270
1284
|
# Corresponds to the JSON property `shared`
|
|
1271
1285
|
# @return [Boolean]
|
|
@@ -1438,6 +1452,8 @@ module Google
|
|
|
1438
1452
|
@properties = args[:properties] if args.key?(:properties)
|
|
1439
1453
|
@quota_bytes_used = args[:quota_bytes_used] if args.key?(:quota_bytes_used)
|
|
1440
1454
|
@resource_key = args[:resource_key] if args.key?(:resource_key)
|
|
1455
|
+
@sha1_checksum = args[:sha1_checksum] if args.key?(:sha1_checksum)
|
|
1456
|
+
@sha256_checksum = args[:sha256_checksum] if args.key?(:sha256_checksum)
|
|
1441
1457
|
@shared = args[:shared] if args.key?(:shared)
|
|
1442
1458
|
@shared_with_me_time = args[:shared_with_me_time] if args.key?(:shared_with_me_time)
|
|
1443
1459
|
@sharing_user = args[:sharing_user] if args.key?(:sharing_user)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DriveV3
|
|
18
18
|
# Version of the google-apis-drive_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.27.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220815"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -614,6 +614,8 @@ module Google
|
|
|
614
614
|
hash :properties, as: 'properties'
|
|
615
615
|
property :quota_bytes_used, :numeric_string => true, as: 'quotaBytesUsed'
|
|
616
616
|
property :resource_key, as: 'resourceKey'
|
|
617
|
+
property :sha1_checksum, as: 'sha1Checksum'
|
|
618
|
+
property :sha256_checksum, as: 'sha256Checksum'
|
|
617
619
|
property :shared, as: 'shared'
|
|
618
620
|
property :shared_with_me_time, as: 'sharedWithMeTime', type: DateTime
|
|
619
621
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-drive_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.27.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: 2022-
|
|
11
|
+
date: 2022-08-22 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-drive_v3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.27.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|