Class: Google::Apis::DriveactivityV2::DriveReference
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::DriveReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/driveactivity_v2/classes.rb,
generated/google/apis/driveactivity_v2/representations.rb,
generated/google/apis/driveactivity_v2/representations.rb
Overview
A lightweight reference to a shared drive.
Instance Attribute Summary collapse
-
#name ⇒ String
The resource name of the shared drive.
-
#title ⇒ String
The title of the shared drive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DriveReference
constructor
A new instance of DriveReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DriveReference
Returns a new instance of DriveReference.
717 718 719 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 717 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
710 711 712 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 710 def name @name end |
#title ⇒ String
The title of the shared drive.
Corresponds to the JSON property title
715 716 717 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 715 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
722 723 724 725 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 722 def update!(**args) @name = args[:name] if args.key?(:name) @title = args[:title] if args.key?(:title) end |