Show / Hide Table of Contents

Class ProvisionedCapacityConfig

The configuration includes the provisioned capacity id and component runtime (tool versions, and other relevant information).

Inheritance
object
ProvisionedCapacityConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class ProvisionedCapacityConfig

Properties

PlatformRuntimeConfig

Declaration
[JsonProperty(PropertyName = "platformRuntimeConfig")]
public PlatformRuntimeConfig PlatformRuntimeConfig { get; set; }
Property Value
Type Description
PlatformRuntimeConfig

ProvisionedCapacityId

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

An OCID that uniquely identifies an Provisioned Capacity.

Remarks

Required

ToolRuntimeConfigs

Declaration
[JsonProperty(PropertyName = "toolRuntimeConfigs")]
public List<ToolRuntimeConfig> ToolRuntimeConfigs { get; set; }
Property Value
Type Description
List<ToolRuntimeConfig>

RAG and SQL will be tools.

In this article
Back to top