Class CreateVectorStoreConnectorDetails
The data to create a VectorStoreConnector.
Inherited Members
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class CreateVectorStoreConnectorDetails
Properties
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Owning compartment OCID for a ConversationStore. |
Remarks
Required
Configuration
Declaration
[Required(ErrorMessage = "Configuration is required.")]
[JsonProperty(PropertyName = "configuration")]
public ConnectorConfiguration Configuration { get; set; }
Property Value
| Type | Description |
|---|---|
| ConnectorConfiguration |
Remarks
Required
DefinedTags
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, Dictionary<string, object>> | Defined tags for this resource. Each key is predefined and scoped to a namespace.
For more information, see Resource Tags.
|
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string | An optional description of the VectorStoreConnector. |
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A user-friendly name for the VectorStoreConnector. |
Remarks
Required
FreeformTags
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, string> | Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
For more information, see Resource Tags.
|
ScheduleConfig
Declaration
[JsonProperty(PropertyName = "scheduleConfig")]
public ScheduleConfig ScheduleConfig { get; set; }
Property Value
| Type | Description |
|---|---|
| ScheduleConfig |
VaultSecretId
Declaration
[JsonProperty(PropertyName = "vaultSecretId")]
public string VaultSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | An optional customer Encryption Key stored in OCI Vault that can be used to decrypt the data downloaded from the data source. |
VectorStoreId
Declaration
[Required(ErrorMessage = "VectorStoreId is required.")]
[JsonProperty(PropertyName = "vectorStoreId")]
public string VectorStoreId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | An OCID that identifies the Vector Store to which this connector is connected. |
Remarks
Required