class TencentCloud::Tione::V20211111::Probe

探针结构信息

def deserialize(params)

def deserialize(params)
  unless params['ProbeAction'].nil?
    @ProbeAction = ProbeAction.new
    @ProbeAction.deserialize(params['ProbeAction'])
  end
  @InitialDelaySeconds = params['InitialDelaySeconds']
  @PeriodSeconds = params['PeriodSeconds']
  @TimeoutSeconds = params['TimeoutSeconds']
  @FailureThreshold = params['FailureThreshold']
  @SuccessThreshold = params['SuccessThreshold']
end

def initialize(probeaction=nil, initialdelayseconds=nil, periodseconds=nil, timeoutseconds=nil, failurethreshold=nil, successthreshold=nil)

def initialize(probeaction=nil, initialdelayseconds=nil, periodseconds=nil, timeoutseconds=nil, failurethreshold=nil, successthreshold=nil)
  @ProbeAction = probeaction
  @InitialDelaySeconds = initialdelayseconds
  @PeriodSeconds = periodseconds
  @TimeoutSeconds = timeoutseconds
  @FailureThreshold = failurethreshold
  @SuccessThreshold = successthreshold
end