Show / Hide Table of Contents

Class HttpEndpointBasicAuthScopeConfig

Specifies HTTP Basic Authentication using base64-encoded username:password credentials injected into the Authorization header.

  • If authScope = AGENT: Credentials are securely retrieved from OCI Vault.
Inheritance
object
HttpEndpointAuthScopeConfig
HttpEndpointBasicAuthScopeConfig
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 HttpEndpointBasicAuthScopeConfig : HttpEndpointAuthScopeConfig

Properties

VaultSecretId

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

The OCID of the vault secret with username:password. Required when authScope is AGENT.

In this article
Back to top