Show / Hide Table of Contents

Class ScriptParameter

Details of the script parameters, paramName must be from the script content and these details can be used to overwrite the default parameter present in the script content.

Inheritance
object
ScriptParameter
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 ScriptParameter

Properties

IsSecret

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

If the parameter value is secret and should be kept confidential, then set isSecret to true.

ParamName

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

Name of the parameter.

Remarks

Required

ParamValue

Declaration
[JsonProperty(PropertyName = "paramValue")]
public string ParamValue { get; set; }
Property Value
Type Description
string

Value of the parameter.

In this article
Back to top