MonitorScriptParameterInfo¶
-
class
oci.apm_synthetics.models.
MonitorScriptParameterInfo
(**kwargs)¶ Bases:
object
Details of the script parameters in the monitor. isOverwritten specifies that the script parameters are overwritten in the monitor. If the user overwrites the parameter value in the monitor, then the overwritten values will be used to run the monitor.
Methods
__init__
(**kwargs)Initializes a new MonitorScriptParameterInfo object with values from keyword arguments. Attributes
is_overwritten
[Required] Gets the is_overwritten of this MonitorScriptParameterInfo. is_secret
[Required] Gets the is_secret of this MonitorScriptParameterInfo. monitor_script_parameter
[Required] Gets the monitor_script_parameter of this MonitorScriptParameterInfo. -
__init__
(**kwargs)¶ Initializes a new MonitorScriptParameterInfo object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - monitor_script_parameter (oci.apm_synthetics.models.MonitorScriptParameter) – The value to assign to the monitor_script_parameter property of this MonitorScriptParameterInfo.
- is_secret (bool) – The value to assign to the is_secret property of this MonitorScriptParameterInfo.
- is_overwritten (bool) – The value to assign to the is_overwritten property of this MonitorScriptParameterInfo.
-
is_overwritten
¶ [Required] Gets the is_overwritten of this MonitorScriptParameterInfo. If parameter value is default or overwritten.
Returns: The is_overwritten of this MonitorScriptParameterInfo. Return type: bool
-
is_secret
¶ [Required] Gets the is_secret of this MonitorScriptParameterInfo. Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.
Returns: The is_secret of this MonitorScriptParameterInfo. Return type: bool
-
monitor_script_parameter
¶ [Required] Gets the monitor_script_parameter of this MonitorScriptParameterInfo.
Returns: The monitor_script_parameter of this MonitorScriptParameterInfo. Return type: oci.apm_synthetics.models.MonitorScriptParameter
-