Class: Google::Apis::AndroidmanagementV1::DeviceSettings
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::DeviceSettings
- 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
Information about security related device settings on device.
Instance Attribute Summary collapse
-
#adb_enabled ⇒ Boolean
(also: #adb_enabled?)
Whether ADB (https://developer.android.com/studio/command-line/adb.html) is enabled on the device.
-
#development_settings_enabled ⇒ Boolean
(also: #development_settings_enabled?)
Whether developer mode is enabled on the device.
-
#encryption_status ⇒ String
Encryption status from DevicePolicyManager.
-
#is_device_secure ⇒ Boolean
(also: #is_device_secure?)
Whether the device is secured with PIN/password.
-
#is_encrypted ⇒ Boolean
(also: #is_encrypted?)
Whether the storage encryption is enabled.
-
#unknown_sources_enabled ⇒ Boolean
(also: #unknown_sources_enabled?)
Whether installing apps from unknown sources is enabled.
-
#verify_apps_enabled ⇒ Boolean
(also: #verify_apps_enabled?)
Whether Google Play Protect verification (https://support.google.com/accounts/ answer/2812853) is enforced on the device.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceSettings
constructor
A new instance of DeviceSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceSettings
Returns a new instance of DeviceSettings.
1935 1936 1937 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1935 def initialize(**args) update!(**args) end |
Instance Attribute Details
#adb_enabled ⇒ Boolean Also known as: adb_enabled?
Whether ADB (https://developer.android.com/studio/command-line/adb.html) is
enabled on the device.
Corresponds to the JSON property adbEnabled
1896 1897 1898 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1896 def adb_enabled @adb_enabled end |
#development_settings_enabled ⇒ Boolean Also known as: development_settings_enabled?
Whether developer mode is enabled on the device.
Corresponds to the JSON property developmentSettingsEnabled
1902 1903 1904 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1902 def development_settings_enabled @development_settings_enabled end |
#encryption_status ⇒ String
Encryption status from DevicePolicyManager.
Corresponds to the JSON property encryptionStatus
1908 1909 1910 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1908 def encryption_status @encryption_status end |
#is_device_secure ⇒ Boolean Also known as: is_device_secure?
Whether the device is secured with PIN/password.
Corresponds to the JSON property isDeviceSecure
1913 1914 1915 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1913 def is_device_secure @is_device_secure end |
#is_encrypted ⇒ Boolean Also known as: is_encrypted?
Whether the storage encryption is enabled.
Corresponds to the JSON property isEncrypted
1919 1920 1921 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1919 def is_encrypted @is_encrypted end |
#unknown_sources_enabled ⇒ Boolean Also known as: unknown_sources_enabled?
Whether installing apps from unknown sources is enabled.
Corresponds to the JSON property unknownSourcesEnabled
1925 1926 1927 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1925 def unknown_sources_enabled @unknown_sources_enabled end |
#verify_apps_enabled ⇒ Boolean Also known as: verify_apps_enabled?
Whether Google Play Protect verification (https://support.google.com/accounts/
answer/2812853) is enforced on the device.
Corresponds to the JSON property verifyAppsEnabled
1932 1933 1934 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1932 def verify_apps_enabled @verify_apps_enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1940 1941 1942 1943 1944 1945 1946 1947 1948 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1940 def update!(**args) @adb_enabled = args[:adb_enabled] if args.key?(:adb_enabled) @development_settings_enabled = args[:development_settings_enabled] if args.key?(:development_settings_enabled) @encryption_status = args[:encryption_status] if args.key?(:encryption_status) @is_device_secure = args[:is_device_secure] if args.key?(:is_device_secure) @is_encrypted = args[:is_encrypted] if args.key?(:is_encrypted) @unknown_sources_enabled = args[:unknown_sources_enabled] if args.key?(:unknown_sources_enabled) @verify_apps_enabled = args[:verify_apps_enabled] if args.key?(:verify_apps_enabled) end |