Show / Hide Table of Contents

Class HttpEndpointAuthConfig

Authentication configuration used for HTTP Endpoint tools. Defines the type of authentication and the source of credentials.

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

Properties

HttpEndpointAuthSources

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

A list of credential sources from which authentication credentials can be resolved. Only AGENT is supported for HTTP Endpoint Tool.

Remarks

Required

In this article
Back to top