Show / Hide Table of Contents

Class DatabaseToolsMcpToolsetBuiltInSqlToolsVersion

A specific version entry for a BUILT_IN_SQL_TOOLS MCP toolset version

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

Properties

Description

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

A description of this version.

Remarks

Required

Features

Declaration
[JsonProperty(PropertyName = "features")]
public List<string> Features { get; set; }
Property Value
Type Description
List<string>

Optional feature flags or attributes for this version.

Tools

Declaration
[Required(ErrorMessage = "Tools is required.")]
[JsonProperty(PropertyName = "tools")]
public List<DatabaseToolsMcpToolsetVersionTool> Tools { get; set; }
Property Value
Type Description
List<DatabaseToolsMcpToolsetVersionTool>

The tools available in this version.

Remarks

Required

Version

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

The version number.

Remarks

Required

In this article
Back to top