class Google::Apis::DriveV2::Drive

Representation of a shared drive.

Attributes

background_image_file[RW]

An image file and cropping parameters from which a background image for this shared drive is set. This is a write only field; it can only be set on drive. drives.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::Drive::BackgroundImageFile]

capabilities[RW]

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

color_rgb[RW]

The color of this shared drive as an RGB hex string. It can only be set on a drive.drives.update request that does not set themeId. Corresponds to the JSON property `colorRgb` @return [String]

created_date[RW]

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

hidden[RW]

Whether the shared drive is hidden from default view. Corresponds to the JSON property `hidden` @return [Boolean]

hidden?[RW]

Whether the shared drive is hidden from default view. Corresponds to the JSON property `hidden` @return [Boolean]

id[RW]

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

kind[RW]

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

name[RW]

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

restrictions[RW]

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

theme_id[RW]

The ID of the theme from which the background image and color will be set. The set of possible driveThemes can be retrieved from a drive.about.get response. When not specified on a drive.drives.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 1464
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 1469
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)
  @hidden = args[:hidden] if args.key?(:hidden)
  @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