google-apis-drive_v3 0.17.0 → 0.18.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: 58bc664f2655993b698c0e0159292d9e3f6a46706861b89bc3d09618e2735ddf
|
|
4
|
+
data.tar.gz: edb38c79cb6e46a81300ee48952930942568c0084edebdec86ef3184f72b9594
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fa0849ff9282566dc531be23bcacbbf58bbc1aff0fa29e07b8a0f6bf36964b8736efac91259a83c78412b08541ce37f7ea465effd533c7dc647555bb082c5b9
|
|
7
|
+
data.tar.gz: 96e8e209f5f3f2b51d86abebfcfbaa8982337a4ec15c54146ea675704252f28d16a39ac8f9cf3aac4d85a6b6327a5f535f5eddb9e2f3f794418d75fbb1567190
|
data/CHANGELOG.md
CHANGED
|
@@ -684,6 +684,12 @@ module Google
|
|
|
684
684
|
# @return [String]
|
|
685
685
|
attr_accessor :name
|
|
686
686
|
|
|
687
|
+
# The organizational unit of this shared drive. This field is only populated on
|
|
688
|
+
# drives.list responses when the useDomainAdminAccess parameter is set to true.
|
|
689
|
+
# Corresponds to the JSON property `orgUnitId`
|
|
690
|
+
# @return [String]
|
|
691
|
+
attr_accessor :org_unit_id
|
|
692
|
+
|
|
687
693
|
# A set of restrictions that apply to this shared drive or items inside this
|
|
688
694
|
# shared drive.
|
|
689
695
|
# Corresponds to the JSON property `restrictions`
|
|
@@ -714,6 +720,7 @@ module Google
|
|
|
714
720
|
@id = args[:id] if args.key?(:id)
|
|
715
721
|
@kind = args[:kind] if args.key?(:kind)
|
|
716
722
|
@name = args[:name] if args.key?(:name)
|
|
723
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
|
717
724
|
@restrictions = args[:restrictions] if args.key?(:restrictions)
|
|
718
725
|
@theme_id = args[:theme_id] if args.key?(:theme_id)
|
|
719
726
|
end
|
|
@@ -2734,6 +2741,12 @@ module Google
|
|
|
2734
2741
|
# @return [String]
|
|
2735
2742
|
attr_accessor :name
|
|
2736
2743
|
|
|
2744
|
+
# The organizational unit of this shared drive. This field is only populated on
|
|
2745
|
+
# drives.list responses when the useDomainAdminAccess parameter is set to true.
|
|
2746
|
+
# Corresponds to the JSON property `orgUnitId`
|
|
2747
|
+
# @return [String]
|
|
2748
|
+
attr_accessor :org_unit_id
|
|
2749
|
+
|
|
2737
2750
|
# A set of restrictions that apply to this Team Drive or items inside this Team
|
|
2738
2751
|
# Drive.
|
|
2739
2752
|
# Corresponds to the JSON property `restrictions`
|
|
@@ -2764,6 +2777,7 @@ module Google
|
|
|
2764
2777
|
@id = args[:id] if args.key?(:id)
|
|
2765
2778
|
@kind = args[:kind] if args.key?(:kind)
|
|
2766
2779
|
@name = args[:name] if args.key?(:name)
|
|
2780
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
|
2767
2781
|
@restrictions = args[:restrictions] if args.key?(:restrictions)
|
|
2768
2782
|
@theme_id = args[:theme_id] if args.key?(:theme_id)
|
|
2769
2783
|
end
|
|
@@ -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.18.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.4.
|
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220110"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -450,6 +450,7 @@ module Google
|
|
|
450
450
|
property :id, as: 'id'
|
|
451
451
|
property :kind, as: 'kind'
|
|
452
452
|
property :name, as: 'name'
|
|
453
|
+
property :org_unit_id, as: 'orgUnitId'
|
|
453
454
|
property :restrictions, as: 'restrictions', class: Google::Apis::DriveV3::Drive::Restrictions, decorator: Google::Apis::DriveV3::Drive::Restrictions::Representation
|
|
454
455
|
|
|
455
456
|
property :theme_id, as: 'themeId'
|
|
@@ -871,6 +872,7 @@ module Google
|
|
|
871
872
|
property :id, as: 'id'
|
|
872
873
|
property :kind, as: 'kind'
|
|
873
874
|
property :name, as: 'name'
|
|
875
|
+
property :org_unit_id, as: 'orgUnitId'
|
|
874
876
|
property :restrictions, as: 'restrictions', class: Google::Apis::DriveV3::TeamDrive::Restrictions, decorator: Google::Apis::DriveV3::TeamDrive::Restrictions::Representation
|
|
875
877
|
|
|
876
878
|
property :theme_id, as: 'themeId'
|
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.18.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-01-
|
|
11
|
+
date: 2022-01-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-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.18.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: []
|
|
@@ -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.3.
|
|
78
|
+
rubygems_version: 3.3.5
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Drive API V3
|