Show / Hide Table of Contents

Class AiModelSummary

Summary details of an AI model supported by a provider.

Inheritance
object
AiModelSummary
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 AiModelSummary

Properties

Description

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

Metadata about this specific object.

Remarks

Required

DisplayName

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

An object's Display Name.

Remarks

Required

Key

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

The identifier of the AI model offered by a provider.

Remarks

Required

ProviderType

Declaration
[Required(ErrorMessage = "ProviderType is required.")]
[JsonProperty(PropertyName = "providerType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AiModelSummary.ProviderTypeEnum? ProviderType { get; set; }
Property Value
Type Description
AiModelSummary.ProviderTypeEnum?

AI Provider type used by the AI Model Connection.

Remarks

Required

In this article
Back to top