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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DriveReference
Returns a new instance of DriveReference
714 715 716 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 714 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
707 708 709 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 707 def name @name end |
#title ⇒ String
The title of the shared drive.
Corresponds to the JSON property title
712 713 714 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 712 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
719 720 721 722 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 719 def update!(**args) @name = args[:name] if args.key?(:name) @title = args[:title] if args.key?(:title) end |