Class: Google::Apis::DriveactivityV2::Drive
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::Drive
- 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
-
#name ⇒ String
The resource name of the shared drive.
-
#root ⇒ Google::Apis::DriveactivityV2::DriveItem
A Drive item, such as a file or folder.
-
#title ⇒ String
The title of the shared drive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Drive
constructor
A new instance of Drive.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#name ⇒ String
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
565 566 567 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 565 def name @name end |
#root ⇒ Google::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 |
#title ⇒ String
The title of the shared drive.
Corresponds to the JSON property title
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 |