Skip to content

Commit 419ebd4

Browse files
Auto-generated API code (#3006)
1 parent 1e3fb16 commit 419ebd4

File tree

8 files changed

+75
-47
lines changed

8 files changed

+75
-47
lines changed

docs/reference/api-reference.md

Lines changed: 12 additions & 15 deletions
Large diffs are not rendered by default.

src/api/api/connector.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ export default class Connector {
715715
}
716716

717717
/**
718-
* Deletes a connector secret.
718+
* Deletes a connector secret
719719
*/
720720
async secretDelete (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
721721
async secretDelete (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>
@@ -759,7 +759,7 @@ export default class Connector {
759759
}
760760

761761
/**
762-
* Retrieves a secret stored by Connectors.
762+
* Retrieves a secret stored by Connectors
763763
*/
764764
async secretGet (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
765765
async secretGet (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>
@@ -803,7 +803,7 @@ export default class Connector {
803803
}
804804

805805
/**
806-
* Creates a secret for a Connector.
806+
* Creates a secret for a Connector
807807
*/
808808
async secretPost (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
809809
async secretPost (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>
@@ -844,7 +844,7 @@ export default class Connector {
844844
}
845845

846846
/**
847-
* Creates or updates a secret for a Connector.
847+
* Creates or updates a secret for a Connector
848848
*/
849849
async secretPut (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
850850
async secretPut (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>

src/api/api/fleet.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export default class Fleet {
177177
}
178178

179179
/**
180-
* Deletes a secret stored by Fleet.
180+
* Deletes a secret stored by Fleet
181181
*/
182182
async deleteSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
183183
async deleteSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>
@@ -221,7 +221,7 @@ export default class Fleet {
221221
}
222222

223223
/**
224-
* Retrieves a secret stored by Fleet.
224+
* Retrieves a secret stored by Fleet
225225
*/
226226
async getSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
227227
async getSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>
@@ -364,7 +364,7 @@ export default class Fleet {
364364
}
365365

366366
/**
367-
* Creates a secret stored by Fleet.
367+
* Creates a secret stored by Fleet
368368
*/
369369
async postSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
370370
async postSecret (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>

src/api/api/inference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ export default class Inference {
10901090
}
10911091

10921092
/**
1093-
* Configure a custom inference endpoint
1093+
* Create a custom inference endpoint
10941094
* @see {@link https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-custom | Elasticsearch API documentation}
10951095
*/
10961096
async putCustom (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>

src/api/api/knn_search.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ const acceptedParams: Record<string, { path: string[], body: string[], query: st
3737
}
3838

3939
/**
40-
* Performs a kNN search.
41-
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/9.0/search-search.html | Elasticsearch API documentation}
40+
* Performs a kNN search
4241
*/
4342
export default async function KnnSearchApi (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
4443
export default async function KnnSearchApi (this: That, params?: T.TODO, options?: TransportRequestOptionsWithMeta): Promise<TransportResult<T.TODO, unknown>>

src/api/api/profiling.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default class Profiling {
5757
}
5858

5959
/**
60-
* Extracts a UI-optimized structure to render flamegraphs from Universal Profiling.
60+
* Extracts a UI-optimized structure to render flamegraphs from Universal Profiling
6161
* @see {@link https://www.elastic.co/guide/en/observability/9.0/universal-profiling.html | Elasticsearch API documentation}
6262
*/
6363
async flamegraph (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
@@ -99,7 +99,7 @@ export default class Profiling {
9999
}
100100

101101
/**
102-
* Extracts raw stacktrace information from Universal Profiling.
102+
* Extracts raw stacktrace information from Universal Profiling
103103
* @see {@link https://www.elastic.co/guide/en/observability/9.0/universal-profiling.html | Elasticsearch API documentation}
104104
*/
105105
async stacktraces (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
@@ -141,7 +141,7 @@ export default class Profiling {
141141
}
142142

143143
/**
144-
* Returns basic information about the status of Universal Profiling.
144+
* Returns basic information about the status of Universal Profiling
145145
* @see {@link https://www.elastic.co/guide/en/observability/9.0/universal-profiling.html | Elasticsearch API documentation}
146146
*/
147147
async status (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>
@@ -183,7 +183,7 @@ export default class Profiling {
183183
}
184184

185185
/**
186-
* Extracts a list of topN functions from Universal Profiling.
186+
* Extracts a list of topN functions from Universal Profiling
187187
* @see {@link https://www.elastic.co/guide/en/observability/9.0/universal-profiling.html | Elasticsearch API documentation}
188188
*/
189189
async topnFunctions (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>

src/api/api/transform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export default class Transform {
241241
}
242242

243243
/**
244-
* Retrieves transform usage information for transform nodes.
244+
* Retrieves transform usage information for transform nodes
245245
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/9.0/get-transform-node-stats.html | Elasticsearch API documentation}
246246
*/
247247
async getNodeStats (this: That, params?: T.TODO, options?: TransportRequestOptionsWithOutMeta): Promise<T.TODO>

0 commit comments

Comments
 (0)