Show / Hide Table of Contents

Class UpdateOciGenAiModelAuthDetails

The information to update OCI Generative AI authentication details for an AI Model connection.

Inheritance
object
UpdateAiModelAuthDetails
UpdateOciGenAiModelAuthDetails
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 UpdateOciGenAiModelAuthDetails : UpdateAiModelAuthDetails

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.

KeyFingerprint

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

OCI Generative AI key fingerprint.

Region

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

The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.

TenancyId

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

OCI Generative AI tenancy OCID. If this value is not provided, or is updated to an empty value, it defaults to the tenancy OCID of the user who is executing the operation.

UserId

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

OCI Generative AI user OCID. If this value is not provided, or is updated to an empty value, it defaults to the OCID of the user who is executing the operation.

In this article
Back to top