Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1InheritOrgUnitPolicyRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ChromepolicyV1::GoogleChromePolicyV1InheritOrgUnitPolicyRequest
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromepolicy_v1/classes.rb,
 lib/google/apis/chromepolicy_v1/representations.rb,
 lib/google/apis/chromepolicy_v1/representations.rb
Overview
Request parameters for inheriting policy value of a specific org unit target from the policy value of its parent org unit.
Instance Attribute Summary collapse
- 
  
    
      #policy_schema  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fully qualified name of the policy schema that is being inherited. 
- 
  
    
      #policy_target_key  ⇒ Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyTargetKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The key used to identify the target on which the policy will be applied. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleChromePolicyV1InheritOrgUnitPolicyRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleChromePolicyV1InheritOrgUnitPolicyRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleChromePolicyV1InheritOrgUnitPolicyRequest
Returns a new instance of GoogleChromePolicyV1InheritOrgUnitPolicyRequest.
| 120 121 122 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 120 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#policy_schema ⇒ String
The fully qualified name of the policy schema that is being inherited.
Corresponds to the JSON property policySchema
| 113 114 115 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 113 def policy_schema @policy_schema end | 
#policy_target_key ⇒ Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicyTargetKey
The key used to identify the target on which the policy will be applied.
Corresponds to the JSON property policyTargetKey
| 118 119 120 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 118 def policy_target_key @policy_target_key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 125 126 127 128 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 125 def update!(**args) @policy_schema = args[:policy_schema] if args.key?(:policy_schema) @policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key) end |