class Google::Apis::AndroidmanagementV1::AlwaysOnVpnPackage
Configuration for an always-on VPN connection.
Attributes
lockdown_enabled[RW]
Disallows networking when the VPN is not connected. Corresponds to the JSON property `lockdownEnabled` @return [Boolean]
lockdown_enabled?[RW]
Disallows networking when the VPN is not connected. Corresponds to the JSON property `lockdownEnabled` @return [Boolean]
package_name[RW]
The package name of the VPN app. Corresponds to the JSON property `packageName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 100 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 105 def update!(**args) @lockdown_enabled = args[:lockdown_enabled] if args.key?(:lockdown_enabled) @package_name = args[:package_name] if args.key?(:package_name) end