Class VectorStoreUpdateParams
-
- All Implemented Interfaces:
-
com.openai.core.Params
public final class VectorStoreUpdateParams implements Params
Modifies a vector store.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
VectorStoreUpdateParams.Builder
A builder for VectorStoreUpdateParams.
public final class
VectorStoreUpdateParams.Body
public final class
VectorStoreUpdateParams.ExpiresAfter
The expiration policy for a vector store.
public final class
VectorStoreUpdateParams.Metadata
Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.
Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.
-
Method Summary
Modifier and Type Method Description final String
vectorStoreId()
final Optional<VectorStoreUpdateParams.ExpiresAfter>
expiresAfter()
The expiration policy for a vector store. final Optional<VectorStoreUpdateParams.Metadata>
metadata()
Set of 16 key-value pairs that can be attached to an object. final Optional<String>
name()
The name of the vector store. final JsonField<VectorStoreUpdateParams.ExpiresAfter>
_expiresAfter()
Returns the raw JSON value of expiresAfter. final JsonField<VectorStoreUpdateParams.Metadata>
_metadata()
Returns the raw JSON value of metadata. final JsonField<String>
_name()
Returns the raw JSON value of name. final Map<String, JsonValue>
_additionalBodyProperties()
final Headers
_additionalHeaders()
final QueryParams
_additionalQueryParams()
final VectorStoreUpdateParams.Builder
toBuilder()
final VectorStoreUpdateParams.Body
_body()
final String
_pathParam(Integer index)
Headers
_headers()
The full set of headers in the parameters, including both fixed and additional headers. QueryParams
_queryParams()
The full set of query params in the parameters, including both fixed and additional query params. Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static VectorStoreUpdateParams.Builder
builder()
Returns a mutable builder for constructing an instance of VectorStoreUpdateParams. -
-
Method Detail
-
vectorStoreId
final String vectorStoreId()
-
expiresAfter
final Optional<VectorStoreUpdateParams.ExpiresAfter> expiresAfter()
The expiration policy for a vector store.
-
metadata
final Optional<VectorStoreUpdateParams.Metadata> metadata()
Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.
Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.
-
_expiresAfter
final JsonField<VectorStoreUpdateParams.ExpiresAfter> _expiresAfter()
Returns the raw JSON value of expiresAfter.
Unlike expiresAfter, this method doesn't throw if the JSON field has an unexpected type.
-
_metadata
final JsonField<VectorStoreUpdateParams.Metadata> _metadata()
Returns the raw JSON value of metadata.
Unlike metadata, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
-
toBuilder
final VectorStoreUpdateParams.Builder toBuilder()
-
_body
final VectorStoreUpdateParams.Body _body()
-
_pathParam
final String _pathParam(Integer index)
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static VectorStoreUpdateParams.Builder builder()
Returns a mutable builder for constructing an instance of VectorStoreUpdateParams.
The following fields are required:
.vectorStoreId()
-
-
-
-