Still testing

This commit is contained in:
Josh Mock
2024-11-20 11:39:21 -06:00
parent be8fc5ae83
commit 15a43f3747
115 changed files with 609 additions and 818 deletions

View File

@ -48,8 +48,8 @@ Get all connectors. Get information about all connectors.
<pre>
++++
interface ConnectorListRequest extends <<RequestBase>> {
from?: number
size?: number
from?: <<_integer, integer>>
size?: <<_integer, integer>>
index_name?: <<Indices>>
connector_name?: <<Names>>
service_type?: <<Names>>
@ -68,7 +68,7 @@ interface ConnectorListRequest extends <<RequestBase>> {
<pre>
++++
interface ConnectorListResponse {
count: number
count: <<_long, long>>
results: ConnectorConnector[]
}