Class: Google::Apis::DriveactivityV2::Drive

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/driveactivity_v2/classes.rb,
lib/google/apis/driveactivity_v2/representations.rb,
lib/google/apis/driveactivity_v2/representations.rb

Overview

Information about a shared drive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Drive

Returns a new instance of Drive.



577
578
579
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 577

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

The resource name of the shared drive. The format is COLLECTION_ID/DRIVE_ID. Clients should not assume a specific collection ID for this resource name. Corresponds to the JSON property name

Returns:

  • (String)


565
566
567
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 565

def name
  @name
end

#rootGoogle::Apis::DriveactivityV2::DriveItem

A Drive item, such as a file or folder. Corresponds to the JSON property root



570
571
572
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 570

def root
  @root
end

#titleString

The title of the shared drive. Corresponds to the JSON property title

Returns:

  • (String)


575
576
577
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 575

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



582
583
584
585
586
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 582

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @root = args[:root] if args.key?(:root)
  @title = args[:title] if args.key?(:title)
end