class Google::Apis::DriveV2::TeamDrive

Deprecated: use the drive collection instead.

Attributes

background_image_file[RW]

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]

capabilities[RW]

Capabilities the current user has on this Team Drive. Corresponds to the JSON property `capabilities` @return [Google::Apis::DriveV2::TeamDrive::Capabilities]

color_rgb[RW]

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]

created_date[RW]

The time at which the Team Drive was created (RFC 3339 date-time). Corresponds to the JSON property `createdDate` @return [DateTime]

id[RW]

The ID of this Team Drive which is also the ID of the top level folder of this Team Drive. Corresponds to the JSON property `id` @return [String]

kind[RW]

This is always drive#teamDrive Corresponds to the JSON property `kind` @return [String]

name[RW]

The name of this Team Drive. Corresponds to the JSON property `name` @return [String]

restrictions[RW]

A set of restrictions that apply to this Team Drive or items inside this Team Drive. Corresponds to the JSON property `restrictions` @return [Google::Apis::DriveV2::TeamDrive::Restrictions]

theme_id[RW]

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

new(**args) click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 3823
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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