Show / Hide Table of Contents

Class HttpEndpointBearerAuthScopeConfig

Specifies authentication using a Bearer token, which is injected into the Authorization header at runtime.

  • If authScope = AGENT: A static token is retrieved securely from OCI Vault using the agent\u2019s resource principal.
Inheritance
object
HttpEndpointAuthScopeConfig
HttpEndpointBearerAuthScopeConfig
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 HttpEndpointBearerAuthScopeConfig : HttpEndpointAuthScopeConfig

Properties

VaultSecretId

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

The OCID of the vault secret with the bearer token. Required when authScope is AGENT.

In this article
Back to top