google-apis-drive_v2 0.26.0 → 0.28.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b55574de99e012cbe37aad44347652383717cf8a1398d6ecdc4c1e0eaacbeb9
|
4
|
+
data.tar.gz: bcb9fb7cf03ea11490af71f8a5aa6fb65dfce2725375d9513d2fb03b62800a08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 597ad4b7752c0c72fe90d21d408e960e90b9acc99bbaf701d5a2fd17caf12e29cd0d38a936b80fe4cf58873ecf9ef38b2c29399cd9383f90f50d3849c6b837c2
|
7
|
+
data.tar.gz: cb83e7e16d7558d9c950f35adf7ed13370803c62023b8653695d0daa6c80e3b5f12f1d698b0b4344706ca83c6c57d91c07e41ddead26df71b230cf244a0e95a6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-drive_v2
|
2
2
|
|
3
|
+
### v0.28.0 (2022-09-16)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.27.0 (2022-08-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220815
|
10
|
+
|
3
11
|
### v0.26.0 (2022-07-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220709
|
@@ -2105,6 +2105,20 @@ module Google
|
|
2105
2105
|
# @return [String]
|
2106
2106
|
attr_accessor :self_link
|
2107
2107
|
|
2108
|
+
# The SHA1 checksum associated with this file, if available. This field is only
|
2109
|
+
# populated for files with content stored in Google Drive; it is not populated
|
2110
|
+
# for Docs Editors or shortcut files.
|
2111
|
+
# Corresponds to the JSON property `sha1Checksum`
|
2112
|
+
# @return [String]
|
2113
|
+
attr_accessor :sha1_checksum
|
2114
|
+
|
2115
|
+
# The SHA256 checksum associated with this file, if available. This field is
|
2116
|
+
# only populated for files with content stored in Google Drive; it is not
|
2117
|
+
# populated for Docs Editors or shortcut files.
|
2118
|
+
# Corresponds to the JSON property `sha256Checksum`
|
2119
|
+
# @return [String]
|
2120
|
+
attr_accessor :sha256_checksum
|
2121
|
+
|
2108
2122
|
# Deprecated: use capabilities/canShare.
|
2109
2123
|
# Corresponds to the JSON property `shareable`
|
2110
2124
|
# @return [Boolean]
|
@@ -2279,6 +2293,8 @@ module Google
|
|
2279
2293
|
@quota_bytes_used = args[:quota_bytes_used] if args.key?(:quota_bytes_used)
|
2280
2294
|
@resource_key = args[:resource_key] if args.key?(:resource_key)
|
2281
2295
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2296
|
+
@sha1_checksum = args[:sha1_checksum] if args.key?(:sha1_checksum)
|
2297
|
+
@sha256_checksum = args[:sha256_checksum] if args.key?(:sha256_checksum)
|
2282
2298
|
@shareable = args[:shareable] if args.key?(:shareable)
|
2283
2299
|
@shared = args[:shared] if args.key?(:shared)
|
2284
2300
|
@shared_with_me_date = args[:shared_with_me_date] if args.key?(:shared_with_me_date)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DriveV2
|
18
18
|
# Version of the google-apis-drive_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.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
|
@@ -917,6 +917,8 @@ module Google
|
|
917
917
|
property :quota_bytes_used, :numeric_string => true, as: 'quotaBytesUsed'
|
918
918
|
property :resource_key, as: 'resourceKey'
|
919
919
|
property :self_link, as: 'selfLink'
|
920
|
+
property :sha1_checksum, as: 'sha1Checksum'
|
921
|
+
property :sha256_checksum, as: 'sha256Checksum'
|
920
922
|
property :shareable, as: 'shareable'
|
921
923
|
property :shared, as: 'shared'
|
922
924
|
property :shared_with_me_date, as: 'sharedWithMeDate', type: DateTime
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-drive_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.7.2
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.7.2
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v2/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|