Show / Hide Table of Contents

Class ToolRuntimeConfig

Configuration for the tool.

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

Properties

ToolRuntimeConfigType

Declaration
[Required(ErrorMessage = "ToolRuntimeConfigType is required.")]
[JsonProperty(PropertyName = "toolRuntimeConfigType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ToolRuntimeConfig.ToolRuntimeConfigTypeEnum? ToolRuntimeConfigType { get; set; }
Property Value
Type Description
ToolRuntimeConfig.ToolRuntimeConfigTypeEnum?

The type of the tool.

Remarks

Required

Version

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

The version of the components.

In this article
Back to top