Class: Google::Apis::ComputeBeta::UdpHealthCheck
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::UdpHealthCheck
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #port  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The UDP port number for the health check request.
 - 
  
    
      #port_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Port name as defined in InstanceGroup#NamedPort#name.
 - 
  
    
      #request  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Raw data of request to send in payload of UDP packet.
 - 
  
    
      #response  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The bytes to match against the beginning of the response data.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UdpHealthCheck 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UdpHealthCheck.
 - 
  
    
      #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) ⇒ UdpHealthCheck
Returns a new instance of UdpHealthCheck
      24399 24400 24401  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24399 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#port ⇒ Fixnum
The UDP port number for the health check request. Valid values are 1 through
65535.
Corresponds to the JSON property port
      24379 24380 24381  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24379 def port @port end  | 
  
#port_name ⇒ String
Port name as defined in InstanceGroup#NamedPort#name. If both port and
port_name are defined, port takes precedence.
Corresponds to the JSON property portName
      24385 24386 24387  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24385 def port_name @port_name end  | 
  
#request ⇒ String
Raw data of request to send in payload of UDP packet. It is an error if this
is empty. The request data can only be ASCII.
Corresponds to the JSON property request
      24391 24392 24393  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24391 def request @request end  | 
  
#response ⇒ String
The bytes to match against the beginning of the response data. It is an error
if this is empty. The response data can only be ASCII.
Corresponds to the JSON property response
      24397 24398 24399  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24397 def response @response end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      24404 24405 24406 24407 24408 24409  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 24404 def update!(**args) @port = args[:port] if args.key?(:port) @port_name = args[:port_name] if args.key?(:port_name) @request = args[:request] if args.key?(:request) @response = args[:response] if args.key?(:response) end  |