Class: Google::Apis::AndroidmanagementV1::AlwaysOnVpnPackage

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

Configuration for an always-on VPN connection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AlwaysOnVpnPackage

Returns a new instance of AlwaysOnVpnPackage.



140
141
142
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 140

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

Instance Attribute Details

#lockdown_enabledBoolean Also known as: lockdown_enabled?

Disallows networking when the VPN is not connected. Corresponds to the JSON property lockdownEnabled

Returns:

  • (Boolean)


132
133
134
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 132

def lockdown_enabled
  @lockdown_enabled
end

#package_nameString

The package name of the VPN app. Corresponds to the JSON property packageName

Returns:

  • (String)


138
139
140
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 138

def package_name
  @package_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



145
146
147
148
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 145

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