Show / Hide Table of Contents

Class OciGenAiModelAuthDetailsSummary

Summary of OCI Generative AI authentication details for an AI Model connection.

Inheritance
object
AiModelAuthDetailsSummary
OciGenAiModelAuthDetailsSummary
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 OciGenAiModelAuthDetailsSummary : AiModelAuthDetailsSummary

Properties

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
[Required(ErrorMessage = "KeyFingerprint is required.")]
[JsonProperty(PropertyName = "keyFingerprint")]
public string KeyFingerprint { get; set; }
Property Value
Type Description
string

OCI Generative AI key fingerprint.

Remarks

Required

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