Class: Google::Apis::ComputeAlpha::TargetPoolsRemoveHealthCheckRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::TargetPoolsRemoveHealthCheckRequest
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #health_checks  ⇒ Array<Google::Apis::ComputeAlpha::HealthCheckReference> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Health check URL to be removed. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TargetPoolsRemoveHealthCheckRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TargetPoolsRemoveHealthCheckRequest. 
- 
  
    
      #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) ⇒ TargetPoolsRemoveHealthCheckRequest
Returns a new instance of TargetPoolsRemoveHealthCheckRequest
| 25558 25559 25560 | # File 'generated/google/apis/compute_alpha/classes.rb', line 25558 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#health_checks ⇒ Array<Google::Apis::ComputeAlpha::HealthCheckReference>
Health check URL to be removed. This can be a full or valid partial URL. For example, the following are valid URLs:
- https://www.googleapis.com/compute/beta/projects/project/global/ httpHealthChecks/health-check
- projects/project/global/httpHealthChecks/health-check
- global/httpHealthChecks/health-check
Corresponds to the JSON property healthChecks
| 25556 25557 25558 | # File 'generated/google/apis/compute_alpha/classes.rb', line 25556 def health_checks @health_checks end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 25563 25564 25565 | # File 'generated/google/apis/compute_alpha/classes.rb', line 25563 def update!(**args) @health_checks = args[:health_checks] if args.key?(:health_checks) end |