Class: Google::Apis::AndroidmanagementV1::MediaMountEvent

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

Overview

Removable media was mounted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MediaMountEvent

Returns a new instance of MediaMountEvent.



3010
3011
3012
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3010

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

Instance Attribute Details

#mount_pointString

Mount point. Corresponds to the JSON property mountPoint

Returns:

  • (String)


3002
3003
3004
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3002

def mount_point
  @mount_point
end

#volume_labelString

Volume label. Redacted to empty string on organization-owned managed profile devices. Corresponds to the JSON property volumeLabel

Returns:

  • (String)


3008
3009
3010
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3008

def volume_label
  @volume_label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3015
3016
3017
3018
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3015

def update!(**args)
  @mount_point = args[:mount_point] if args.key?(:mount_point)
  @volume_label = args[:volume_label] if args.key?(:volume_label)
end