Show / Hide Table of Contents

Class Parameter

Parameters that a resource category supports.

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

Properties

Name

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

Parameter name.

Remarks

Required

Pattern

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

Java regex pattern to validate a parameter value.

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Parameter.TypeEnum? Type { get; set; }
Property Value
Type Description
Parameter.TypeEnum?
Remarks

Required

In this article
Back to top