Show / Hide Table of Contents

Class GuardrailVersionSummary

Details of a guardrail version.

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

Properties

Description

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

The description of the guardrail version.

Remarks

Required

GuardrailVersion

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

The guardrail system version string, e.g., "1.0.0"

Remarks

Required

State

Declaration
[Required(ErrorMessage = "State is required.")]
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(StringEnumConverter))]
public GuardrailVersion.StateEnum? State { get; set; }
Property Value
Type Description
GuardrailVersion.StateEnum?

The state of the guardrail version.

Remarks

Required

TimeActivated

Declaration
[JsonProperty(PropertyName = "timeActivated")]
public DateTime? TimeActivated { get; set; }
Property Value
Type Description
DateTime?

The activation date of the guardrail version.

TimeDeprecated

Declaration
[JsonProperty(PropertyName = "timeDeprecated")]
public DateTime? TimeDeprecated { get; set; }
Property Value
Type Description
DateTime?

The deprecated date of the guardrail version.

TimePreviewed

Declaration
[JsonProperty(PropertyName = "timePreviewed")]
public DateTime? TimePreviewed { get; set; }
Property Value
Type Description
DateTime?

The preview date of the guardrail version.

TimeRetired

Declaration
[JsonProperty(PropertyName = "timeRetired")]
public DateTime? TimeRetired { get; set; }
Property Value
Type Description
DateTime?

The retired date of the guardrail version.

In this article
Back to top