Show / Hide Table of Contents

Class ListAiModelsRequest

Inheritance
object
ListAiModelsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Requests
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class ListAiModelsRequest : IOciRequest
Examples

Click here to see an example of how to use ListAiModels request.

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

ProviderType

Declaration
[Required(ErrorMessage = "ProviderType is required.")]
[HttpConverter(TargetEnum.Query, "providerType")]
public AiProviderSummary.ProviderTypeEnum? ProviderType { get; set; }
Property Value
Type Description
AiProviderSummary.ProviderTypeEnum?

The AI provider type for which model information is requested.

Remarks

Required

Region

Declaration
[HttpConverter(TargetEnum.Query, "region")]
public string Region { get; set; }
Property Value
Type Description
string

OCI region identifier, for example us-ashburn-1.

TenancyId

Declaration
[HttpConverter(TargetEnum.Query, "tenancyId")]
public string TenancyId { get; set; }
Property Value
Type Description
string

OCI tenancy OCID to use when resolving provider models, for example for OCI Generative AI model discovery across a specific tenancy.

Implements

IOciRequest
In this article
Back to top