Class: Google::Apis::AndroidenterpriseV1::AutoInstallConstraint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/google/apis/androidenterprise_v1/representations.rb

Overview

The auto-install constraint. Defines a set of restrictions for installation. At least one of the fields must be set.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutoInstallConstraint

Returns a new instance of AutoInstallConstraint.



583
584
585
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 583

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

Instance Attribute Details

#charging_state_constraintString

Charging state constraint. Corresponds to the JSON property chargingStateConstraint

Returns:

  • (String)


571
572
573
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 571

def charging_state_constraint
  @charging_state_constraint
end

#device_idle_state_constraintString

Device idle state constraint. Corresponds to the JSON property deviceIdleStateConstraint

Returns:

  • (String)


576
577
578
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 576

def device_idle_state_constraint
  @device_idle_state_constraint
end

#network_type_constraintString

Network type constraint. Corresponds to the JSON property networkTypeConstraint

Returns:

  • (String)


581
582
583
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 581

def network_type_constraint
  @network_type_constraint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



588
589
590
591
592
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 588

def update!(**args)
  @charging_state_constraint = args[:charging_state_constraint] if args.key?(:charging_state_constraint)
  @device_idle_state_constraint = args[:device_idle_state_constraint] if args.key?(:device_idle_state_constraint)
  @network_type_constraint = args[:network_type_constraint] if args.key?(:network_type_constraint)
end