Class: Google::Apis::ComputeV1::RegionInstanceGroupManagersSetTargetPoolsRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::RegionInstanceGroupManagersSetTargetPoolsRequest
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #fingerprint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Fingerprint of the target pools information, which is a hash of the contents. 
- 
  
    
      #target_pools  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of all TargetPool resources to which instances in the instanceGroup field are added. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RegionInstanceGroupManagersSetTargetPoolsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RegionInstanceGroupManagersSetTargetPoolsRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RegionInstanceGroupManagersSetTargetPoolsRequest
Returns a new instance of RegionInstanceGroupManagersSetTargetPoolsRequest
| 13017 13018 13019 | # File 'generated/google/apis/compute_v1/classes.rb', line 13017 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#fingerprint ⇒ String
Fingerprint of the target pools information, which is a hash of the contents.
This field is used for optimistic locking when you update the target pool
entries. This field is optional.
Corresponds to the JSON property fingerprint
NOTE: Values are automatically base64 encoded/decoded in the client library.
| 13008 13009 13010 | # File 'generated/google/apis/compute_v1/classes.rb', line 13008 def fingerprint @fingerprint end | 
#target_pools ⇒ Array<String>
The URL of all TargetPool resources to which instances in the instanceGroup
field are added. The target pools automatically apply to all of the instances
in the managed instance group.
Corresponds to the JSON property targetPools
| 13015 13016 13017 | # File 'generated/google/apis/compute_v1/classes.rb', line 13015 def target_pools @target_pools end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 13022 13023 13024 13025 | # File 'generated/google/apis/compute_v1/classes.rb', line 13022 def update!(**args) @fingerprint = args[:fingerprint] if args.key?(:fingerprint) @target_pools = args[:target_pools] if args.key?(:target_pools) end |