You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/lance-catalog-apache-client/docs/NamespaceApi.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -291,6 +291,7 @@ No authorization required
291
291
|-------------|-------------|------------------|
292
292
|**200**| Table properties result when loading a table | - |
293
293
|**400**| Indicates a bad request error. It could be caused by an unexpected request body format or other forms of request validation failure, such as invalid json. Usually serves application/json content, although in some cases simple text/plain content might be returned by the server's middleware. | - |
294
+
|**401**| Unauthorized. The request lacks valid authentication credentials for the operation. | - |
294
295
|**403**| Forbidden. Authenticated user does not have the necessary permissions. | - |
295
296
|**404**| A server-side problem that means can not find the specified resource. | - |
296
297
|**503**| The service is not ready to handle the request. The client should wait and retry. The service may additionally send a Retry-After header to indicate when to retry. | - |
Copy file name to clipboardExpand all lines: java/lance-catalog-apache-client/src/main/java/com/lancedb/lance/catalog/client/apache/model/GetTableResponse.java
+47-2Lines changed: 47 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,17 @@
26
26
27
27
/** Result used when a table is successfully loaded. */
28
28
@JsonPropertyOrder({
29
+
GetTableResponse.JSON_PROPERTY_NAME,
29
30
GetTableResponse.JSON_PROPERTY_LOCATION,
30
31
GetTableResponse.JSON_PROPERTY_PROPERTIES
31
32
})
32
33
@javax.annotation.Generated(
33
34
value = "org.openapitools.codegen.languages.JavaClientCodegen",
Copy file name to clipboardExpand all lines: java/lance-catalog-springboot-server/src/main/java/com/lancedb/lance/catalog/server/springboot/api/NamespaceApi.java
Copy file name to clipboardExpand all lines: java/lance-catalog-springboot-server/src/main/java/com/lancedb/lance/catalog/server/springboot/model/GetTableResponse.java
0 commit comments