Show / Hide Table of Contents

Class ApiKeyAiModelAuthDetails

API key authentication details for an AI Model connection.

Inheritance
object
AiModelAuthDetails
ApiKeyAiModelAuthDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class ApiKeyAiModelAuthDetails : AiModelAuthDetails

Properties

ApiKey

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

API key for the AI model connection. Deprecated: This field is deprecated and replaced by "apiKeySecretId". This change follows the GoldenGate "Plain Text Fields in Connections" deprecation: https://docs.oracle.com/en-us/iaas/Content/servicechanges.htm#servicechanges_topic-GoldenGate

ApiKeySecretId

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

API key secret OCID for the AI model connection.

BaseUrl

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

Base URL of the AI model endpoint. If not specified, the default base URL for the selected AI provider will be used.

In this article
Back to top