Skip to content

Commit

Permalink
Rename from completed_at to finished_at
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Sep 6, 2024
1 parent 0e5a42f commit b7a34cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion codegen/apis
Submodule apis updated from 29ccf1 to 081e32
8 changes: 4 additions & 4 deletions pinecone/core_ea/openapi/db_data/model/import_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def openapi_types():
"uri": (str,), # noqa: E501
"status": (str,), # noqa: E501
"created_at": (datetime,), # noqa: E501
"completed_at": (datetime,), # noqa: E501
"finished_at": (datetime,), # noqa: E501
"percent_complete": (float,), # noqa: E501
"records_imported": (int,), # noqa: E501
"error": (str,), # noqa: E501
Expand All @@ -122,7 +122,7 @@ def discriminator():
"uri": "uri", # noqa: E501
"status": "status", # noqa: E501
"created_at": "createdAt", # noqa: E501
"completed_at": "completedAt", # noqa: E501
"finished_at": "finishedAt", # noqa: E501
"percent_complete": "percentComplete", # noqa: E501
"records_imported": "recordsImported", # noqa: E501
"error": "error", # noqa: E501
Expand Down Expand Up @@ -172,7 +172,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
uri (str): The URI from where the data is imported.. [optional] # noqa: E501
status (str): The status of the operation.. [optional] # noqa: E501
created_at (datetime): The start time of the import operation.. [optional] # noqa: E501
completed_at (datetime): The end time of the import operation.. [optional] # noqa: E501
finished_at (datetime): The end time of the import operation.. [optional] # noqa: E501
percent_complete (float): The progress made by the operation out of 100. [optional] # noqa: E501
records_imported (int): The number of records successfully imported.. [optional] # noqa: E501
error (str): The error message if the import process failed.. [optional] # noqa: E501
Expand Down Expand Up @@ -266,7 +266,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
uri (str): The URI from where the data is imported.. [optional] # noqa: E501
status (str): The status of the operation.. [optional] # noqa: E501
created_at (datetime): The start time of the import operation.. [optional] # noqa: E501
completed_at (datetime): The end time of the import operation.. [optional] # noqa: E501
finished_at (datetime): The end time of the import operation.. [optional] # noqa: E501
percent_complete (float): The progress made by the operation out of 100. [optional] # noqa: E501
records_imported (int): The number of records successfully imported.. [optional] # noqa: E501
error (str): The error message if the import process failed.. [optional] # noqa: E501
Expand Down

0 comments on commit b7a34cc

Please sign in to comment.