Class: DatadogAPIClient::V1::SyntheticsStep

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v1/models/synthetics_step.rb

Overview

The steps used in a Synthetic browser test.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.



51
52
53
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 51

def additional_properties
  @additional_properties
end

#allow_failureObject

A boolean set to allow this step to fail.



25
26
27
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 25

def allow_failure
  @allow_failure
end

#always_executeObject

A boolean set to always execute this step even if the previous step failed or was skipped.



28
29
30
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 28

def always_execute
  @always_execute
end

#exit_if_succeedObject

A boolean set to exit the test if the step succeeds.



31
32
33
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 31

def exit_if_succeed
  @exit_if_succeed
end

#is_criticalObject

A boolean to use in addition to ‘allowFailure` to determine if the test should be marked as failed when the step fails.



34
35
36
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 34

def is_critical
  @is_critical
end

#nameObject

The name of the step.



37
38
39
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 37

def name
  @name
end

#no_screenshotObject

A boolean set to skip taking a screenshot for the step.



40
41
42
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 40

def no_screenshot
  @no_screenshot
end

#paramsObject

The parameters of the step.



43
44
45
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 43

def params
  @params
end

#timeoutObject

The time before declaring a step failed.



46
47
48
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 46

def timeout
  @timeout
end

#typeObject

Step type used in your Synthetic test.



49
50
51
# File 'lib/datadog_api_client/v1/models/synthetics_step.rb', line 49

def type
  @type
end