class Google::Apis::DriveV2::TeamDrive
Deprecated: use the drive collection instead.
Attributes
An image file and cropping parameters from which a background image for this Team Drive
is set. This is a write only field; it can only be set on drive. teamdrives.update requests that don't set themeId. When specified, all fields of the backgroundImageFile must be set. Corresponds to the JSON property `backgroundImageFile` @return [Google::Apis::DriveV2::TeamDrive::BackgroundImageFile]
A short-lived link to this Team Drive's background image. Corresponds to the JSON property `backgroundImageLink` @return [String]
Capabilities
the current user has on this Team Drive
. Corresponds to the JSON property `capabilities` @return [Google::Apis::DriveV2::TeamDrive::Capabilities]
The color of this Team Drive
as an RGB hex string. It can only be set on a drive.teamdrives.update request that does not set themeId. Corresponds to the JSON property `colorRgb` @return [String]
The time at which the Team Drive
was created (RFC 3339 date-time). Corresponds to the JSON property `createdDate` @return [DateTime]
This is always drive#teamDrive Corresponds to the JSON property `kind` @return [String]
The name of this Team Drive
. Corresponds to the JSON property `name` @return [String]
The ID of the theme from which the background image and color will be set. The set of possible teamDriveThemes can be retrieved from a drive.about.get response. When not specified on a drive.teamdrives.insert request, a random theme is chosen from which the background image and color are set. This is a write-only field; it can only be set on requests that don't set colorRgb or backgroundImageFile. Corresponds to the JSON property `themeId` @return [String]
Public Class Methods
# File lib/google/apis/drive_v2/classes.rb, line 3823 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/drive_v2/classes.rb, line 3828 def update!(**args) @background_image_file = args[:background_image_file] if args.key?(:background_image_file) @background_image_link = args[:background_image_link] if args.key?(:background_image_link) @capabilities = args[:capabilities] if args.key?(:capabilities) @color_rgb = args[:color_rgb] if args.key?(:color_rgb) @created_date = args[:created_date] if args.key?(:created_date) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @restrictions = args[:restrictions] if args.key?(:restrictions) @theme_id = args[:theme_id] if args.key?(:theme_id) end