class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyValue
A particular value for a policy managed by the service.
Attributes
policy_schema[RW]
The fully qualified name of the policy schema associated with this policy. Corresponds to the JSON property `policySchema` @return [String]
value[RW]
The value of the policy that is compatible with the schema that it is associated with. Corresponds to the JSON property `value` @return [Hash<String,Object>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/chromepolicy_v1/classes.rb, line 451 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/chromepolicy_v1/classes.rb, line 456 def update!(**args) @policy_schema = args[:policy_schema] if args.key?(:policy_schema) @value = args[:value] if args.key?(:value) end