class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ResolvedPolicy

The resolved value of a policy for a given target.

Attributes

source_key[RW]

The key used to identify the target on which the policy will be applied. Corresponds to the JSON property `sourceKey` @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyTargetKey]

target_key[RW]

The key used to identify the target on which the policy will be applied. Corresponds to the JSON property `targetKey` @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyTargetKey]

value[RW]

A particular value for a policy managed by the service. Corresponds to the JSON property `value` @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyValue]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/chromepolicy_v1/classes.rb, line 551
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 556
def update!(**args)
  @source_key = args[:source_key] if args.key?(:source_key)
  @target_key = args[:target_key] if args.key?(:target_key)
  @value = args[:value] if args.key?(:value)
end