Class: Google::Apis::AndroidenterpriseV1::ConfigurationVariables

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

A configuration variables resource contains the managed configuration settings ID to be applied to a single user, as well as the variable set that is attributed to the user. The variable set will be used to replace placeholders in the managed configuration settings.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigurationVariables

Returns a new instance of ConfigurationVariables.



654
655
656
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 654

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

Instance Attribute Details

#mcm_idString

The ID of the managed configurations settings. Corresponds to the JSON property mcmId

Returns:

  • (String)


647
648
649
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 647

def mcm_id
  @mcm_id
end

#variable_setArray<Google::Apis::AndroidenterpriseV1::VariableSet>

The variable set that is attributed to the user. Corresponds to the JSON property variableSet



652
653
654
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 652

def variable_set
  @variable_set
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



659
660
661
662
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 659

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