Show / Hide Table of Contents

Class HttpEndpointToolConfig

The configuration for HTTP endpoint Tool.

Inheritance
object
ToolConfig
HttpEndpointToolConfig
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 HttpEndpointToolConfig : ToolConfig

Properties

ApiSchema

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

Required

HttpEndpointAuthConfig

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

Required

SubnetId

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

The subnet ID from agent developer tenancy through which the egress is going to be routed.

Remarks

Required

In this article
Back to top