Show / Hide Table of Contents

Class DatabaseToolsMcpToolsetVersionTool

A tool definition for a specific MCP toolset version.

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

Properties

DefaultAllowedRoles

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

The roles granted access to this tool by default.

DefaultStatus

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

The default status of the tool in this version.

Remarks

Required

Description

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

The description of the tool.

Remarks

Required

DisplayName

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

The display name of the tool.

Remarks

Required

Name

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

The unique name of the tool.

Remarks

Required

In this article
Back to top