Show / Hide Table of Contents

Class MonitorScriptParameterInfo

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.

Inheritance
object
MonitorScriptParameterInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmsyntheticsService.Models
Assembly: OCI.DotNetSDK.Apmsynthetics.dll
Syntax
public class MonitorScriptParameterInfo

Properties

IsOverwritten

Declaration
[Required(ErrorMessage = "IsOverwritten is required.")]
[JsonProperty(PropertyName = "isOverwritten")]
public bool? IsOverwritten { get; set; }
Property Value
Type Description
bool?

If parameter value is default or overwritten.

Remarks

Required

IsSecret

Declaration
[Required(ErrorMessage = "IsSecret is required.")]
[JsonProperty(PropertyName = "isSecret")]
public bool? IsSecret { get; set; }
Property Value
Type Description
bool?

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

Remarks

Required

MonitorScriptParameter

Declaration
[Required(ErrorMessage = "MonitorScriptParameter is required.")]
[JsonProperty(PropertyName = "monitorScriptParameter")]
public MonitorScriptParameter MonitorScriptParameter { get; set; }
Property Value
Type Description
MonitorScriptParameter
Remarks

Required

In this article
Back to top