Class: Google::Apis::AndroidmanagementV1::PersonalUsagePolicies

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

Policies controlling personal usage on a company-owned device with a work profile.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PersonalUsagePolicies

Returns a new instance of PersonalUsagePolicies.



4246
4247
4248
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4246

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

Instance Attribute Details

#account_types_with_management_disabledArray<String>

Account types that can't be managed by the user. Corresponds to the JSON property accountTypesWithManagementDisabled

Returns:

  • (Array<String>)


4211
4212
4213
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4211

def 
  @account_types_with_management_disabled
end

#camera_disabledBoolean Also known as: camera_disabled?

If true, the camera is disabled on the personal profile. Corresponds to the JSON property cameraDisabled

Returns:

  • (Boolean)


4216
4217
4218
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4216

def camera_disabled
  @camera_disabled
end

#max_days_with_work_offFixnum

Controls how long the work profile can stay off. The minimum duration must be at least 3 days. Other details are as follows: - If the duration is set to 0, the feature is turned off. - If the duration is set to a value smaller than the minimum duration, the feature returns an error. Note: If you want to avoid personal profiles being suspended during long periods of off-time, you can temporarily set a large value for this parameter. Corresponds to the JSON property maxDaysWithWorkOff

Returns:

  • (Fixnum)


4227
4228
4229
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4227

def max_days_with_work_off
  @max_days_with_work_off
end

#personal_applicationsArray<Google::Apis::AndroidmanagementV1::PersonalApplicationPolicy>

Policy applied to applications in the personal profile. Corresponds to the JSON property personalApplications



4232
4233
4234
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4232

def personal_applications
  @personal_applications
end

#personal_play_store_modeString

Used together with personalApplications to control how apps in the personal profile are allowed or blocked. Corresponds to the JSON property personalPlayStoreMode

Returns:

  • (String)


4238
4239
4240
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4238

def personal_play_store_mode
  @personal_play_store_mode
end

#screen_capture_disabledBoolean Also known as: screen_capture_disabled?

If true, screen capture is disabled for all users. Corresponds to the JSON property screenCaptureDisabled

Returns:

  • (Boolean)


4243
4244
4245
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4243

def screen_capture_disabled
  @screen_capture_disabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4251
4252
4253
4254
4255
4256
4257
4258
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 4251

def update!(**args)
  @account_types_with_management_disabled = args[:account_types_with_management_disabled] if args.key?(:account_types_with_management_disabled)
  @camera_disabled = args[:camera_disabled] if args.key?(:camera_disabled)
  @max_days_with_work_off = args[:max_days_with_work_off] if args.key?(:max_days_with_work_off)
  @personal_applications = args[:personal_applications] if args.key?(:personal_applications)
  @personal_play_store_mode = args[:personal_play_store_mode] if args.key?(:personal_play_store_mode)
  @screen_capture_disabled = args[:screen_capture_disabled] if args.key?(:screen_capture_disabled)
end