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: openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
+5
Original file line number
Diff line number
Diff line change
@@ -153,6 +153,11 @@ class OpenlayerOkHttpClientAsync private constructor() {
153
153
154
154
funfromEnv() =apply { clientOptions.fromEnv() }
155
155
156
+
/**
157
+
* Returns an immutable instance of [OpenlayerClientAsync].
158
+
*
159
+
* Further updates to this [Builder] will not mutate the returned instance.
Copy file name to clipboardexpand all lines: openlayer-java-core/src/main/kotlin/com/openlayer/api/models/commits/testresults/TestResultListResponse.kt
+62
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,18 @@ private constructor(
139
139
keys.forEach(::removeAdditionalProperty)
140
140
}
141
141
142
+
/**
143
+
* Returns an immutable instance of [TestResultListResponse].
144
+
*
145
+
* Further updates to this [Builder] will not mutate the returned instance.
146
+
*
147
+
* The following fields are required:
148
+
* ```java
149
+
* .items()
150
+
* ```
151
+
*
152
+
* @throws IllegalStateException if any required field is unset.
Copy file name to clipboardexpand all lines: openlayer-java-core/src/main/kotlin/com/openlayer/api/models/inferencepipelines/InferencePipelineDeleteParams.kt
+12
Original file line number
Diff line number
Diff line change
@@ -202,6 +202,18 @@ private constructor(
202
202
keys.forEach(::removeAdditionalBodyProperty)
203
203
}
204
204
205
+
/**
206
+
* Returns an immutable instance of [InferencePipelineDeleteParams].
207
+
*
208
+
* Further updates to this [Builder] will not mutate the returned instance.
209
+
*
210
+
* The following fields are required:
211
+
* ```java
212
+
* .inferencePipelineId()
213
+
* ```
214
+
*
215
+
* @throws IllegalStateException if any required field is unset.
Copy file name to clipboardexpand all lines: openlayer-java-core/src/main/kotlin/com/openlayer/api/models/inferencepipelines/InferencePipelineRetrieveParams.kt
+12
Original file line number
Diff line number
Diff line change
@@ -202,6 +202,18 @@ private constructor(
202
202
additionalQueryParams.removeAll(keys)
203
203
}
204
204
205
+
/**
206
+
* Returns an immutable instance of [InferencePipelineRetrieveParams].
207
+
*
208
+
* Further updates to this [Builder] will not mutate the returned instance.
209
+
*
210
+
* The following fields are required:
211
+
* ```java
212
+
* .inferencePipelineId()
213
+
* ```
214
+
*
215
+
* @throws IllegalStateException if any required field is unset.
0 commit comments