Skip to content

initial codegen #519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions pinecone/core/openapi/ckb_knowledge_data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# flake8: noqa

"""
Pinecone Knowledge Base Data Plane API

Pinecone Knowledge Base builds on the vector database to make it easy to store, search and retrieve your data. # noqa: E501

This file is @generated using OpenAPI.

The version of the OpenAPI document: unstable
Contact: [email protected]
"""

__version__ = "1.0.0"

# import ApiClient
from pinecone.openapi_support.api_client import ApiClient

# import Configuration
from pinecone.config.openapi_configuration import Configuration

# import exceptions
from pinecone.openapi_support.exceptions import PineconeException
from pinecone.openapi_support.exceptions import PineconeApiAttributeError
from pinecone.openapi_support.exceptions import PineconeApiTypeError
from pinecone.openapi_support.exceptions import PineconeApiValueError
from pinecone.openapi_support.exceptions import PineconeApiKeyError
from pinecone.openapi_support.exceptions import PineconeApiException

API_VERSION = "unstable"
3 changes: 3 additions & 0 deletions pinecone/core/openapi/ckb_knowledge_data/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# do not import all apis into this module because that uses a lot of memory and stack frames
# if you need the ability to import all apis from one package, import them with
# from pinecone.core.openapi.ckb_knowledge_data.apis import DocumentOperationsApi

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions pinecone/core/openapi/ckb_knowledge_data/apis/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# flake8: noqa

# Import all APIs into this package.
# If you have many APIs here with many many models used in each API this may
# raise a `RecursionError`.
# In order to avoid this, import only the API that you directly need like:
#
# from .api.document_operations_api import DocumentOperationsApi
#
# or import this package, but before doing it, use:
#
# import sys
# sys.setrecursionlimit(n)

# Import APIs into API package:
from pinecone.core.openapi.ckb_knowledge_data.api.document_operations_api import (
DocumentOperationsApi,
)
5 changes: 5 additions & 0 deletions pinecone/core/openapi/ckb_knowledge_data/model/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# we can not import model classes here because that would create a circular
# reference which would not work in python2
# do not import all models into this module because that uses a lot of memory and stack frames
# if you need the ability to import all models from one package, import them with
# from {{packageName}.models import ModelA, ModelB
Original file line number Diff line number Diff line change
@@ -0,0 +1,304 @@
"""
Pinecone Knowledge Base Data Plane API

Pinecone Knowledge Base builds on the vector database to make it easy to store, search and retrieve your data. # noqa: E501

This file is @generated using OpenAPI.

The version of the OpenAPI document: unstable
Contact: [email protected]
"""

from pinecone.openapi_support.model_utils import ( # noqa: F401
PineconeApiTypeError,
ModelComposed,
ModelNormal,
ModelSimple,
OpenApiModel,
cached_property,
change_keys_js_to_python,
convert_js_args_to_python_args,
date,
datetime,
file_type,
none_type,
validate_get_composed_info,
)
from pinecone.openapi_support.exceptions import PineconeApiAttributeError


def lazy_import():
from pinecone.core.openapi.ckb_knowledge_data.model.lsn_status import LSNStatus
from pinecone.core.openapi.ckb_knowledge_data.model.usage import Usage

globals()["LSNStatus"] = LSNStatus
globals()["Usage"] = Usage


from typing import Dict, Literal, Tuple, Set, Any, Type, TypeVar
from pinecone.openapi_support import PropertyValidationTypedDict, cached_class_property

T = TypeVar("T", bound="DeleteDocumentResponse")


class DeleteDocumentResponse(ModelNormal):
"""NOTE: This class is @generated using OpenAPI.

Do not edit the class manually.

Attributes:
allowed_values (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
with a capitalized key describing the allowed value and an allowed
value. These dicts store the allowed enum values.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
discriminator_value_class_map (dict): A dict to go from the discriminator
variable value to the discriminator class name.
validations (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
that stores validations for max_length, min_length, max_items,
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
inclusive_minimum, and regex.
additional_properties_type (tuple): A tuple of classes accepted
as additional properties values.
"""

_data_store: Dict[str, Any]
_check_type: bool

allowed_values: Dict[Tuple[str, ...], Dict[str, Any]] = {}

validations: Dict[Tuple[str, ...], PropertyValidationTypedDict] = {}

@cached_class_property
def additional_properties_type(cls):
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded
"""
lazy_import()
return (bool, dict, float, int, list, str, none_type) # noqa: E501

_nullable = False

@cached_class_property
def openapi_types(cls):
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded

Returns
openapi_types (dict): The key is attribute name
and the value is attribute type.
"""
lazy_import()
return {
"id": (str,), # noqa: E501
"namespace": (str,), # noqa: E501
"usage": (Usage,), # noqa: E501
"lsn_status": (LSNStatus,), # noqa: E501
}

@cached_class_property
def discriminator(cls):
return None

attribute_map: Dict[str, str] = {
"id": "_id", # noqa: E501
"namespace": "namespace", # noqa: E501
"usage": "usage", # noqa: E501
"lsn_status": "_lsn_status", # noqa: E501
}

read_only_vars: Set[str] = set([])

_composed_schemas: Dict[Literal["allOf", "oneOf", "anyOf"], Any] = {}

@classmethod
@convert_js_args_to_python_args
def _from_openapi_data(cls: Type[T], id, namespace, usage, lsn_status, *args, **kwargs) -> T: # noqa: E501
"""DeleteDocumentResponse - a model defined in OpenAPI

Args:
id (str): Identifier of the document to be deleted.
namespace (str): Namespace of the document to be deleted.
usage (Usage):
lsn_status (LSNStatus):

Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
"""

_enforce_allowed_values = kwargs.pop("_enforce_allowed_values", False)
_enforce_validations = kwargs.pop("_enforce_validations", False)
_check_type = kwargs.pop("_check_type", True)
_spec_property_naming = kwargs.pop("_spec_property_naming", False)
_path_to_item = kwargs.pop("_path_to_item", ())
_configuration = kwargs.pop("_configuration", None)
_visited_composed_classes = kwargs.pop("_visited_composed_classes", ())

self = super(OpenApiModel, cls).__new__(cls)

if args:
raise PineconeApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments."
% (args, self.__class__.__name__),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)

self._data_store = {}
self._enforce_allowed_values = _enforce_allowed_values
self._enforce_validations = _enforce_validations
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)

self.id = id
self.namespace = namespace
self.usage = usage
self.lsn_status = lsn_status
for var_name, var_value in kwargs.items():
if (
var_name not in self.attribute_map
and self._configuration is not None
and self._configuration.discard_unknown_keys
and self.additional_properties_type is None
):
# discard variable.
continue
setattr(self, var_name, var_value)
return self

required_properties = set(
[
"_enforce_allowed_values",
"_enforce_validations",
"_data_store",
"_check_type",
"_spec_property_naming",
"_path_to_item",
"_configuration",
"_visited_composed_classes",
]
)

@convert_js_args_to_python_args
def __init__(self, id, namespace, usage, lsn_status, *args, **kwargs) -> None: # noqa: E501
"""DeleteDocumentResponse - a model defined in OpenAPI

Args:
id (str): Identifier of the document to be deleted.
namespace (str): Namespace of the document to be deleted.
usage (Usage):
lsn_status (LSNStatus):

Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
"""

_enforce_allowed_values = kwargs.pop("_enforce_allowed_values", True)
_enforce_validations = kwargs.pop("_enforce_validations", True)
_check_type = kwargs.pop("_check_type", True)
_spec_property_naming = kwargs.pop("_spec_property_naming", False)
_path_to_item = kwargs.pop("_path_to_item", ())
_configuration = kwargs.pop("_configuration", None)
_visited_composed_classes = kwargs.pop("_visited_composed_classes", ())

if args:
raise PineconeApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments."
% (args, self.__class__.__name__),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)

self._data_store = {}
self._enforce_allowed_values = _enforce_allowed_values
self._enforce_validations = _enforce_validations
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)

self.id = id
self.namespace = namespace
self.usage = usage
self.lsn_status = lsn_status
for var_name, var_value in kwargs.items():
if (
var_name not in self.attribute_map
and self._configuration is not None
and self._configuration.discard_unknown_keys
and self.additional_properties_type is None
):
# discard variable.
continue
setattr(self, var_name, var_value)
if var_name in self.read_only_vars:
raise PineconeApiAttributeError(
f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
f"class with read only attributes."
)
Loading
Loading