ScriptedRestMonitorConfiguration¶
-
class
oci.apm_synthetics.models.
ScriptedRestMonitorConfiguration
(**kwargs)¶ Bases:
oci.apm_synthetics.models.monitor_configuration.MonitorConfiguration
Configuration details for the SCRIPTED_REST monitor type.
Attributes
CONFIG_TYPE_BROWSER_CONFIG
str(object=’’) -> str CONFIG_TYPE_REST_CONFIG
str(object=’’) -> str CONFIG_TYPE_SCRIPTED_BROWSER_CONFIG
str(object=’’) -> str CONFIG_TYPE_SCRIPTED_REST_CONFIG
str(object=’’) -> str config_type
Gets the config_type of this MonitorConfiguration. is_failure_retried
Gets the is_failure_retried of this MonitorConfiguration. network_configuration
Gets the network_configuration of this ScriptedRestMonitorConfiguration. Methods
__init__
(**kwargs)Initializes a new ScriptedRestMonitorConfiguration object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
CONFIG_TYPE_BROWSER_CONFIG
= 'BROWSER_CONFIG'¶
-
CONFIG_TYPE_REST_CONFIG
= 'REST_CONFIG'¶
-
CONFIG_TYPE_SCRIPTED_BROWSER_CONFIG
= 'SCRIPTED_BROWSER_CONFIG'¶
-
CONFIG_TYPE_SCRIPTED_REST_CONFIG
= 'SCRIPTED_REST_CONFIG'¶
-
__init__
(**kwargs)¶ Initializes a new ScriptedRestMonitorConfiguration object with values from keyword arguments. The default value of the
config_type
attribute of this class isSCRIPTED_REST_CONFIG
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - config_type (str) – The value to assign to the config_type property of this ScriptedRestMonitorConfiguration. Allowed values for this property are: “BROWSER_CONFIG”, “SCRIPTED_BROWSER_CONFIG”, “REST_CONFIG”, “SCRIPTED_REST_CONFIG”
- is_failure_retried (bool) – The value to assign to the is_failure_retried property of this ScriptedRestMonitorConfiguration.
- network_configuration (oci.apm_synthetics.models.NetworkConfiguration) – The value to assign to the network_configuration property of this ScriptedRestMonitorConfiguration.
-
config_type
¶ Gets the config_type of this MonitorConfiguration. Type of configuration.
Allowed values for this property are: “BROWSER_CONFIG”, “SCRIPTED_BROWSER_CONFIG”, “REST_CONFIG”, “SCRIPTED_REST_CONFIG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The config_type of this MonitorConfiguration. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
is_failure_retried
¶ Gets the is_failure_retried of this MonitorConfiguration. If isFailureRetried is enabled, then a failed call will be retried.
Returns: The is_failure_retried of this MonitorConfiguration. Return type: bool
-
network_configuration
¶ Gets the network_configuration of this ScriptedRestMonitorConfiguration.
Returns: The network_configuration of this ScriptedRestMonitorConfiguration. Return type: oci.apm_synthetics.models.NetworkConfiguration
-