Class: Google::Apis::AndroidmanagementV1::KioskCustomization
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::KioskCustomization
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb
Overview
Settings controlling the behavior of a device in kiosk mode. To enable kiosk mode, set kioskCustomLauncherEnabled to true or specify an app in the policy with installType KIOSK.
Instance Attribute Summary collapse
-
#device_settings ⇒ String
Specifies whether the Settings app is allowed in kiosk mode.
-
#power_button_actions ⇒ String
Sets the behavior of a device in kiosk mode when a user presses and holds ( long-presses) the Power button.
-
#status_bar ⇒ String
Specifies whether system info and notifications are disabled in kiosk mode.
-
#system_error_warnings ⇒ String
Specifies whether system error dialogs for crashed or unresponsive apps are blocked in kiosk mode.
-
#system_navigation ⇒ String
Specifies which navigation features are enabled (e.g. Home, Overview buttons) in kiosk mode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KioskCustomization
constructor
A new instance of KioskCustomization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KioskCustomization
Returns a new instance of KioskCustomization.
1593 1594 1595 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1593 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_settings ⇒ String
Specifies whether the Settings app is allowed in kiosk mode.
Corresponds to the JSON property deviceSettings
1567 1568 1569 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1567 def device_settings @device_settings end |
#power_button_actions ⇒ String
Sets the behavior of a device in kiosk mode when a user presses and holds (
long-presses) the Power button.
Corresponds to the JSON property powerButtonActions
1573 1574 1575 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1573 def @power_button_actions end |
#status_bar ⇒ String
Specifies whether system info and notifications are disabled in kiosk mode.
Corresponds to the JSON property statusBar
1578 1579 1580 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1578 def @status_bar end |
#system_error_warnings ⇒ String
Specifies whether system error dialogs for crashed or unresponsive apps are
blocked in kiosk mode. When blocked, the system will force-stop the app as if
the user chooses the "close app" option on the UI.
Corresponds to the JSON property systemErrorWarnings
1585 1586 1587 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1585 def system_error_warnings @system_error_warnings end |
#system_navigation ⇒ String
Specifies which navigation features are enabled (e.g. Home, Overview buttons)
in kiosk mode.
Corresponds to the JSON property systemNavigation
1591 1592 1593 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1591 def @system_navigation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1598 1599 1600 1601 1602 1603 1604 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 1598 def update!(**args) @device_settings = args[:device_settings] if args.key?(:device_settings) @power_button_actions = args[:power_button_actions] if args.key?(:power_button_actions) @status_bar = args[:status_bar] if args.key?(:status_bar) @system_error_warnings = args[:system_error_warnings] if args.key?(:system_error_warnings) @system_navigation = args[:system_navigation] if args.key?(:system_navigation) end |