Show / Hide Table of Contents

Class CreateAiModelConnectionDetails

The information about a new AI Model Connection.

Inheritance
object
CreateConnectionDetails
CreateAiModelConnectionDetails
Inherited Members
CreateConnectionDetails.DisplayName
CreateConnectionDetails.Description
CreateConnectionDetails.CompartmentId
CreateConnectionDetails.FreeformTags
CreateConnectionDetails.DefinedTags
CreateConnectionDetails.Locks
CreateConnectionDetails.VaultId
CreateConnectionDetails.KeyId
CreateConnectionDetails.NsgIds
CreateConnectionDetails.SubnetId
CreateConnectionDetails.RoutingMethod
CreateConnectionDetails.DoesUseSecretIds
CreateConnectionDetails.SubscriptionId
CreateConnectionDetails.ClusterPlacementGroupId
CreateConnectionDetails.SecurityAttributes
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 CreateAiModelConnectionDetails : CreateConnectionDetails

Properties

AuthDetails

Declaration
[JsonProperty(PropertyName = "authDetails")]
public CreateAiModelAuthDetails AuthDetails { get; set; }
Property Value
Type Description
CreateAiModelAuthDetails

MaxInputChars

Declaration
[JsonProperty(PropertyName = "maxInputChars")]
public int? MaxInputChars { get; set; }
Property Value
Type Description
int?

Maximum number of input characters supported by this AI model connection.

ModelKey

Declaration
[Required(ErrorMessage = "ModelKey is required.")]
[JsonProperty(PropertyName = "modelKey")]
public string ModelKey { get; set; }
Property Value
Type Description
string

AI model identifier.

Remarks

Required

ProviderType

Declaration
[JsonProperty(PropertyName = "providerType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateAiModelConnectionDetails.ProviderTypeEnum? ProviderType { get; set; }
Property Value
Type Description
CreateAiModelConnectionDetails.ProviderTypeEnum?

AI Provider type used by the AI Model Connection.

TechnologyType

Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public AiModelConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
AiModelConnection.TechnologyTypeEnum?

The AI Model technology type.

Remarks

Required

In this article
Back to top