Skip to content

Commit

Permalink
Update connector list params
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrazb committed Apr 9, 2024
1 parent 7834fdd commit 4cade96
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 4 deletions.
30 changes: 30 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 37 additions & 1 deletion output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions output/schema/validation-errors.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions specification/connector/list/ConnectorListRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* under the License.
*/
import { RequestBase } from '@_types/Base'
import { Fields } from '@_types/common'
import { integer } from '@_types/Numeric'

/**
Expand All @@ -36,5 +37,17 @@ export interface Request extends RequestBase {
* Specifies a max number of results to get
*/
size?: integer
/**
* A comma-separated list of connector index names to fetch connector documents for
*/
index_name?: Fields
/**
* A comma-separated list of connector names to fetch connector documents for
*/
connector_name?: Fields
/**
* A comma-separated list of connector service types to fetch connector documents for
*/
service_type?: Fields
}
}

0 comments on commit 4cade96

Please sign in to comment.