Class: Google::Apis::DriveactivityV2::Permission

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

The permission setting of an object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Permission

Returns a new instance of Permission.



1233
1234
1235
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1233

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

Instance Attribute Details

#allow_discoveryBoolean Also known as: allow_discovery?

If true, the item can be discovered (e.g. in the user's "Shared with me" collection) without needing a link to the item. Corresponds to the JSON property allowDiscovery

Returns:

  • (Boolean)


1203
1204
1205
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1203

def allow_discovery
  @allow_discovery
end

#anyoneGoogle::Apis::DriveactivityV2::Anyone

Represents any user (including a logged out user). Corresponds to the JSON property anyone



1209
1210
1211
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1209

def anyone
  @anyone
end

#domainGoogle::Apis::DriveactivityV2::Domain

Information about a domain. Corresponds to the JSON property domain



1214
1215
1216
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1214

def domain
  @domain
end

#groupGoogle::Apis::DriveactivityV2::Group

Information about a group. Corresponds to the JSON property group



1219
1220
1221
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1219

def group
  @group
end

#roleString

Indicates the Google Drive permissions role. The role determines a user's ability to read, write, and comment on items. Corresponds to the JSON property role

Returns:

  • (String)


1226
1227
1228
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1226

def role
  @role
end

#userGoogle::Apis::DriveactivityV2::User

Information about an end user. Corresponds to the JSON property user



1231
1232
1233
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1231

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1238
1239
1240
1241
1242
1243
1244
1245
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1238

def update!(**args)
  @allow_discovery = args[:allow_discovery] if args.key?(:allow_discovery)
  @anyone = args[:anyone] if args.key?(:anyone)
  @domain = args[:domain] if args.key?(:domain)
  @group = args[:group] if args.key?(:group)
  @role = args[:role] if args.key?(:role)
  @user = args[:user] if args.key?(:user)
end