@cat-factory/contracts 0.53.0 → 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities.d.ts +48 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +10 -1
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +582 -49
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +28 -13
- package/dist/environments.js.map +1 -1
- package/dist/primitives.d.ts +10 -0
- package/dist/primitives.d.ts.map +1 -1
- package/dist/primitives.js +12 -0
- package/dist/primitives.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +16 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +677 -119
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/environments.js +4 -0
- package/dist/routes/environments.js.map +1 -1
- package/dist/routes/execution.d.ts +64 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +8 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +40 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/runners.d.ts +580 -32
- package/dist/routes/runners.d.ts.map +1 -1
- package/dist/routes/runners.js +3 -0
- package/dist/routes/runners.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +24 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +32 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/runners.d.ts +686 -79
- package/dist/runners.d.ts.map +1 -1
- package/dist/runners.js +18 -5
- package/dist/runners.js.map +1 -1
- package/dist/snapshot.d.ts +32 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +17 -0
- package/dist/snapshot.js.map +1 -1
- package/dist/testing.d.ts +30 -0
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +32 -0
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
|
@@ -181,6 +181,117 @@ export declare const getEnvironmentConnectionContract: {
|
|
|
181
181
|
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
182
182
|
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
183
183
|
}, undefined>;
|
|
184
|
+
}, undefined>, v.ObjectSchema<{
|
|
185
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">, v.CheckAction<string, "reserved backend kind">]>;
|
|
186
|
+
readonly manifest: v.ObjectSchema<{
|
|
187
|
+
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
188
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
189
|
+
readonly baseUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
190
|
+
readonly auth: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
191
|
+
readonly type: v.LiteralSchema<"none", undefined>;
|
|
192
|
+
}, undefined>, v.ObjectSchema<{
|
|
193
|
+
readonly type: v.LiteralSchema<"api_key", undefined>;
|
|
194
|
+
readonly headerName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
195
|
+
readonly secretRef: v.ObjectSchema<{
|
|
196
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
197
|
+
}, undefined>;
|
|
198
|
+
readonly valuePrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
199
|
+
}, undefined>, v.ObjectSchema<{
|
|
200
|
+
readonly type: v.LiteralSchema<"bearer", undefined>;
|
|
201
|
+
readonly secretRef: v.ObjectSchema<{
|
|
202
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
203
|
+
}, undefined>;
|
|
204
|
+
}, undefined>, v.ObjectSchema<{
|
|
205
|
+
readonly type: v.LiteralSchema<"basic", undefined>;
|
|
206
|
+
readonly usernameSecretRef: v.ObjectSchema<{
|
|
207
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
208
|
+
}, undefined>;
|
|
209
|
+
readonly passwordSecretRef: v.ObjectSchema<{
|
|
210
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
211
|
+
}, undefined>;
|
|
212
|
+
}, undefined>, v.ObjectSchema<{
|
|
213
|
+
readonly type: v.LiteralSchema<"oauth2_client_credentials", undefined>;
|
|
214
|
+
readonly tokenUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
215
|
+
readonly clientIdSecretRef: v.ObjectSchema<{
|
|
216
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
217
|
+
}, undefined>;
|
|
218
|
+
readonly clientSecretSecretRef: v.ObjectSchema<{
|
|
219
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
220
|
+
}, undefined>;
|
|
221
|
+
readonly scope: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
222
|
+
readonly audience: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
223
|
+
}, undefined>, v.ObjectSchema<{
|
|
224
|
+
readonly type: v.LiteralSchema<"custom_headers", undefined>;
|
|
225
|
+
readonly headers: v.ArraySchema<v.ObjectSchema<{
|
|
226
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
227
|
+
readonly secretRef: v.ObjectSchema<{
|
|
228
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
229
|
+
}, undefined>;
|
|
230
|
+
}, undefined>, undefined>;
|
|
231
|
+
}, undefined>], undefined>;
|
|
232
|
+
readonly provision: v.ObjectSchema<{
|
|
233
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
234
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
235
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
236
|
+
readonly key: v.StringSchema<undefined>;
|
|
237
|
+
readonly value: v.StringSchema<undefined>;
|
|
238
|
+
}, undefined>, undefined>, undefined>;
|
|
239
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
240
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
241
|
+
readonly value: v.StringSchema<undefined>;
|
|
242
|
+
}, undefined>, undefined>, undefined>;
|
|
243
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
244
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
245
|
+
}, undefined>;
|
|
246
|
+
readonly status: v.OptionalSchema<v.ObjectSchema<{
|
|
247
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
248
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
249
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
250
|
+
readonly key: v.StringSchema<undefined>;
|
|
251
|
+
readonly value: v.StringSchema<undefined>;
|
|
252
|
+
}, undefined>, undefined>, undefined>;
|
|
253
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
254
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
255
|
+
readonly value: v.StringSchema<undefined>;
|
|
256
|
+
}, undefined>, undefined>, undefined>;
|
|
257
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
258
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
259
|
+
}, undefined>, undefined>;
|
|
260
|
+
readonly teardown: v.OptionalSchema<v.ObjectSchema<{
|
|
261
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
262
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
263
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
264
|
+
readonly key: v.StringSchema<undefined>;
|
|
265
|
+
readonly value: v.StringSchema<undefined>;
|
|
266
|
+
}, undefined>, undefined>, undefined>;
|
|
267
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
268
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
269
|
+
readonly value: v.StringSchema<undefined>;
|
|
270
|
+
}, undefined>, undefined>, undefined>;
|
|
271
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
272
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
273
|
+
}, undefined>, undefined>;
|
|
274
|
+
readonly response: v.ObjectSchema<{
|
|
275
|
+
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
276
|
+
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
277
|
+
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
278
|
+
readonly from: v.StringSchema<undefined>;
|
|
279
|
+
readonly to: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
280
|
+
}, undefined>, undefined>, undefined>;
|
|
281
|
+
readonly expiresAtPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
282
|
+
readonly externalIdPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
283
|
+
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
284
|
+
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
285
|
+
readonly tokenPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
286
|
+
readonly usernamePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
287
|
+
readonly passwordPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
288
|
+
readonly headerName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
289
|
+
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
290
|
+
}, undefined>, undefined>;
|
|
291
|
+
}, undefined>;
|
|
292
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
293
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
294
|
+
}, undefined>;
|
|
184
295
|
}, undefined>], undefined>, undefined>;
|
|
185
296
|
}, undefined>, undefined>;
|
|
186
297
|
}, undefined>;
|
|
@@ -298,46 +409,455 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
298
409
|
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
299
410
|
}, undefined>, undefined>;
|
|
300
411
|
}, undefined>;
|
|
301
|
-
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
302
|
-
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
303
|
-
}, undefined>;
|
|
304
|
-
}, undefined>, v.ObjectSchema<{
|
|
305
|
-
readonly kind: v.LiteralSchema<"kubernetes", undefined>;
|
|
306
|
-
readonly kubernetes: v.ObjectSchema<{
|
|
307
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
308
|
-
readonly apiServerUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
309
|
-
readonly caCertPem: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
310
|
-
readonly insecureSkipTlsVerify: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
311
|
-
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
312
|
-
readonly manifestSource: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
313
|
-
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
314
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
315
|
-
}, undefined>, v.ObjectSchema<{
|
|
316
|
-
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
317
|
-
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
318
|
-
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
319
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
320
|
-
}, undefined>], undefined>;
|
|
321
|
-
readonly url: v.VariantSchema<"source", [v.ObjectSchema<{
|
|
322
|
-
readonly source: v.LiteralSchema<"ingressTemplate", undefined>;
|
|
323
|
-
readonly hostTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
324
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
325
|
-
}, undefined>, v.ObjectSchema<{
|
|
326
|
-
readonly source: v.LiteralSchema<"ingressStatus", undefined>;
|
|
327
|
-
readonly ingressName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
328
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
329
|
-
}, undefined>, v.ObjectSchema<{
|
|
330
|
-
readonly source: v.LiteralSchema<"serviceStatus", undefined>;
|
|
331
|
-
readonly serviceName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
332
|
-
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
333
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
334
|
-
}, undefined>], undefined>;
|
|
335
|
-
readonly imageTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
336
|
-
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
337
|
-
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
338
|
-
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
339
|
-
}, undefined>;
|
|
340
|
-
}, undefined
|
|
412
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
413
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
414
|
+
}, undefined>;
|
|
415
|
+
}, undefined>, v.ObjectSchema<{
|
|
416
|
+
readonly kind: v.LiteralSchema<"kubernetes", undefined>;
|
|
417
|
+
readonly kubernetes: v.ObjectSchema<{
|
|
418
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
419
|
+
readonly apiServerUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
420
|
+
readonly caCertPem: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
421
|
+
readonly insecureSkipTlsVerify: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
422
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
423
|
+
readonly manifestSource: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
424
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
425
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
426
|
+
}, undefined>, v.ObjectSchema<{
|
|
427
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
428
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
429
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
430
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
431
|
+
}, undefined>], undefined>;
|
|
432
|
+
readonly url: v.VariantSchema<"source", [v.ObjectSchema<{
|
|
433
|
+
readonly source: v.LiteralSchema<"ingressTemplate", undefined>;
|
|
434
|
+
readonly hostTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
435
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
436
|
+
}, undefined>, v.ObjectSchema<{
|
|
437
|
+
readonly source: v.LiteralSchema<"ingressStatus", undefined>;
|
|
438
|
+
readonly ingressName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
439
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
440
|
+
}, undefined>, v.ObjectSchema<{
|
|
441
|
+
readonly source: v.LiteralSchema<"serviceStatus", undefined>;
|
|
442
|
+
readonly serviceName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
443
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
444
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
445
|
+
}, undefined>], undefined>;
|
|
446
|
+
readonly imageTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
447
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
448
|
+
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
449
|
+
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
450
|
+
}, undefined>;
|
|
451
|
+
}, undefined>, v.ObjectSchema<{
|
|
452
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">, v.CheckAction<string, "reserved backend kind">]>;
|
|
453
|
+
readonly manifest: v.ObjectSchema<{
|
|
454
|
+
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
455
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
456
|
+
readonly baseUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
457
|
+
readonly auth: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
458
|
+
readonly type: v.LiteralSchema<"none", undefined>;
|
|
459
|
+
}, undefined>, v.ObjectSchema<{
|
|
460
|
+
readonly type: v.LiteralSchema<"api_key", undefined>;
|
|
461
|
+
readonly headerName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
462
|
+
readonly secretRef: v.ObjectSchema<{
|
|
463
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
464
|
+
}, undefined>;
|
|
465
|
+
readonly valuePrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
466
|
+
}, undefined>, v.ObjectSchema<{
|
|
467
|
+
readonly type: v.LiteralSchema<"bearer", undefined>;
|
|
468
|
+
readonly secretRef: v.ObjectSchema<{
|
|
469
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
470
|
+
}, undefined>;
|
|
471
|
+
}, undefined>, v.ObjectSchema<{
|
|
472
|
+
readonly type: v.LiteralSchema<"basic", undefined>;
|
|
473
|
+
readonly usernameSecretRef: v.ObjectSchema<{
|
|
474
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
475
|
+
}, undefined>;
|
|
476
|
+
readonly passwordSecretRef: v.ObjectSchema<{
|
|
477
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
478
|
+
}, undefined>;
|
|
479
|
+
}, undefined>, v.ObjectSchema<{
|
|
480
|
+
readonly type: v.LiteralSchema<"oauth2_client_credentials", undefined>;
|
|
481
|
+
readonly tokenUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
482
|
+
readonly clientIdSecretRef: v.ObjectSchema<{
|
|
483
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
484
|
+
}, undefined>;
|
|
485
|
+
readonly clientSecretSecretRef: v.ObjectSchema<{
|
|
486
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
487
|
+
}, undefined>;
|
|
488
|
+
readonly scope: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
489
|
+
readonly audience: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
490
|
+
}, undefined>, v.ObjectSchema<{
|
|
491
|
+
readonly type: v.LiteralSchema<"custom_headers", undefined>;
|
|
492
|
+
readonly headers: v.ArraySchema<v.ObjectSchema<{
|
|
493
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
494
|
+
readonly secretRef: v.ObjectSchema<{
|
|
495
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
496
|
+
}, undefined>;
|
|
497
|
+
}, undefined>, undefined>;
|
|
498
|
+
}, undefined>], undefined>;
|
|
499
|
+
readonly provision: v.ObjectSchema<{
|
|
500
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
501
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
502
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
503
|
+
readonly key: v.StringSchema<undefined>;
|
|
504
|
+
readonly value: v.StringSchema<undefined>;
|
|
505
|
+
}, undefined>, undefined>, undefined>;
|
|
506
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
507
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
508
|
+
readonly value: v.StringSchema<undefined>;
|
|
509
|
+
}, undefined>, undefined>, undefined>;
|
|
510
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
511
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
512
|
+
}, undefined>;
|
|
513
|
+
readonly status: v.OptionalSchema<v.ObjectSchema<{
|
|
514
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
515
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
516
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
517
|
+
readonly key: v.StringSchema<undefined>;
|
|
518
|
+
readonly value: v.StringSchema<undefined>;
|
|
519
|
+
}, undefined>, undefined>, undefined>;
|
|
520
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
521
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
522
|
+
readonly value: v.StringSchema<undefined>;
|
|
523
|
+
}, undefined>, undefined>, undefined>;
|
|
524
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
525
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
526
|
+
}, undefined>, undefined>;
|
|
527
|
+
readonly teardown: v.OptionalSchema<v.ObjectSchema<{
|
|
528
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
529
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
530
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
531
|
+
readonly key: v.StringSchema<undefined>;
|
|
532
|
+
readonly value: v.StringSchema<undefined>;
|
|
533
|
+
}, undefined>, undefined>, undefined>;
|
|
534
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
535
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
536
|
+
readonly value: v.StringSchema<undefined>;
|
|
537
|
+
}, undefined>, undefined>, undefined>;
|
|
538
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
539
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
540
|
+
}, undefined>, undefined>;
|
|
541
|
+
readonly response: v.ObjectSchema<{
|
|
542
|
+
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
543
|
+
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
544
|
+
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
545
|
+
readonly from: v.StringSchema<undefined>;
|
|
546
|
+
readonly to: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
547
|
+
}, undefined>, undefined>, undefined>;
|
|
548
|
+
readonly expiresAtPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
549
|
+
readonly externalIdPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
550
|
+
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
551
|
+
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
552
|
+
readonly tokenPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
553
|
+
readonly usernamePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
554
|
+
readonly passwordPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
555
|
+
readonly headerName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
556
|
+
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
557
|
+
}, undefined>, undefined>;
|
|
558
|
+
}, undefined>;
|
|
559
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
560
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
561
|
+
}, undefined>;
|
|
562
|
+
}, undefined>], undefined>;
|
|
563
|
+
readonly secrets: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
564
|
+
}, undefined>;
|
|
565
|
+
readonly responsesByStatusCode: {
|
|
566
|
+
readonly '4xx': v.ObjectSchema<{
|
|
567
|
+
readonly error: v.ObjectSchema<{
|
|
568
|
+
readonly code: v.StringSchema<undefined>;
|
|
569
|
+
readonly message: v.StringSchema<undefined>;
|
|
570
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
571
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
572
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
573
|
+
readonly message: v.StringSchema<undefined>;
|
|
574
|
+
}, undefined>, undefined>, undefined>;
|
|
575
|
+
}, undefined>;
|
|
576
|
+
}, undefined>;
|
|
577
|
+
readonly '5xx': v.ObjectSchema<{
|
|
578
|
+
readonly error: v.ObjectSchema<{
|
|
579
|
+
readonly code: v.StringSchema<undefined>;
|
|
580
|
+
readonly message: v.StringSchema<undefined>;
|
|
581
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
582
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
583
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
584
|
+
readonly message: v.StringSchema<undefined>;
|
|
585
|
+
}, undefined>, undefined>, undefined>;
|
|
586
|
+
}, undefined>;
|
|
587
|
+
}, undefined>;
|
|
588
|
+
readonly 201: v.ObjectSchema<{
|
|
589
|
+
readonly kind: v.StringSchema<undefined>;
|
|
590
|
+
readonly providerId: v.StringSchema<undefined>;
|
|
591
|
+
readonly label: v.StringSchema<undefined>;
|
|
592
|
+
readonly baseUrl: v.StringSchema<undefined>;
|
|
593
|
+
readonly connectedAt: v.NumberSchema<undefined>;
|
|
594
|
+
readonly secretKeys: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
595
|
+
readonly config: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
596
|
+
readonly kind: v.LiteralSchema<"manifest", undefined>;
|
|
597
|
+
readonly manifest: v.ObjectSchema<{
|
|
598
|
+
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
599
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
600
|
+
readonly baseUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
601
|
+
readonly auth: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
602
|
+
readonly type: v.LiteralSchema<"none", undefined>;
|
|
603
|
+
}, undefined>, v.ObjectSchema<{
|
|
604
|
+
readonly type: v.LiteralSchema<"api_key", undefined>;
|
|
605
|
+
readonly headerName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
606
|
+
readonly secretRef: v.ObjectSchema<{
|
|
607
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
608
|
+
}, undefined>;
|
|
609
|
+
readonly valuePrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
610
|
+
}, undefined>, v.ObjectSchema<{
|
|
611
|
+
readonly type: v.LiteralSchema<"bearer", undefined>;
|
|
612
|
+
readonly secretRef: v.ObjectSchema<{
|
|
613
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
614
|
+
}, undefined>;
|
|
615
|
+
}, undefined>, v.ObjectSchema<{
|
|
616
|
+
readonly type: v.LiteralSchema<"basic", undefined>;
|
|
617
|
+
readonly usernameSecretRef: v.ObjectSchema<{
|
|
618
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
619
|
+
}, undefined>;
|
|
620
|
+
readonly passwordSecretRef: v.ObjectSchema<{
|
|
621
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
622
|
+
}, undefined>;
|
|
623
|
+
}, undefined>, v.ObjectSchema<{
|
|
624
|
+
readonly type: v.LiteralSchema<"oauth2_client_credentials", undefined>;
|
|
625
|
+
readonly tokenUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
626
|
+
readonly clientIdSecretRef: v.ObjectSchema<{
|
|
627
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
628
|
+
}, undefined>;
|
|
629
|
+
readonly clientSecretSecretRef: v.ObjectSchema<{
|
|
630
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
631
|
+
}, undefined>;
|
|
632
|
+
readonly scope: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
633
|
+
readonly audience: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
634
|
+
}, undefined>, v.ObjectSchema<{
|
|
635
|
+
readonly type: v.LiteralSchema<"custom_headers", undefined>;
|
|
636
|
+
readonly headers: v.ArraySchema<v.ObjectSchema<{
|
|
637
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
638
|
+
readonly secretRef: v.ObjectSchema<{
|
|
639
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
640
|
+
}, undefined>;
|
|
641
|
+
}, undefined>, undefined>;
|
|
642
|
+
}, undefined>], undefined>;
|
|
643
|
+
readonly provision: v.ObjectSchema<{
|
|
644
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
645
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
646
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
647
|
+
readonly key: v.StringSchema<undefined>;
|
|
648
|
+
readonly value: v.StringSchema<undefined>;
|
|
649
|
+
}, undefined>, undefined>, undefined>;
|
|
650
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
651
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
652
|
+
readonly value: v.StringSchema<undefined>;
|
|
653
|
+
}, undefined>, undefined>, undefined>;
|
|
654
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
655
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
656
|
+
}, undefined>;
|
|
657
|
+
readonly status: v.OptionalSchema<v.ObjectSchema<{
|
|
658
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
659
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
660
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
661
|
+
readonly key: v.StringSchema<undefined>;
|
|
662
|
+
readonly value: v.StringSchema<undefined>;
|
|
663
|
+
}, undefined>, undefined>, undefined>;
|
|
664
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
665
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
666
|
+
readonly value: v.StringSchema<undefined>;
|
|
667
|
+
}, undefined>, undefined>, undefined>;
|
|
668
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
669
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
670
|
+
}, undefined>, undefined>;
|
|
671
|
+
readonly teardown: v.OptionalSchema<v.ObjectSchema<{
|
|
672
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
673
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
674
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
675
|
+
readonly key: v.StringSchema<undefined>;
|
|
676
|
+
readonly value: v.StringSchema<undefined>;
|
|
677
|
+
}, undefined>, undefined>, undefined>;
|
|
678
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
679
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
680
|
+
readonly value: v.StringSchema<undefined>;
|
|
681
|
+
}, undefined>, undefined>, undefined>;
|
|
682
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
683
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
684
|
+
}, undefined>, undefined>;
|
|
685
|
+
readonly response: v.ObjectSchema<{
|
|
686
|
+
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
687
|
+
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
688
|
+
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
689
|
+
readonly from: v.StringSchema<undefined>;
|
|
690
|
+
readonly to: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
691
|
+
}, undefined>, undefined>, undefined>;
|
|
692
|
+
readonly expiresAtPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
693
|
+
readonly externalIdPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
694
|
+
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
695
|
+
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
696
|
+
readonly tokenPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
697
|
+
readonly usernamePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
698
|
+
readonly passwordPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
699
|
+
readonly headerName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
700
|
+
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
701
|
+
}, undefined>, undefined>;
|
|
702
|
+
}, undefined>;
|
|
703
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
704
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
705
|
+
}, undefined>;
|
|
706
|
+
}, undefined>, v.ObjectSchema<{
|
|
707
|
+
readonly kind: v.LiteralSchema<"kubernetes", undefined>;
|
|
708
|
+
readonly kubernetes: v.ObjectSchema<{
|
|
709
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
710
|
+
readonly apiServerUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
711
|
+
readonly caCertPem: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
712
|
+
readonly insecureSkipTlsVerify: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
713
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
714
|
+
readonly manifestSource: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
715
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
716
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
717
|
+
}, undefined>, v.ObjectSchema<{
|
|
718
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
719
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
720
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
721
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
722
|
+
}, undefined>], undefined>;
|
|
723
|
+
readonly url: v.VariantSchema<"source", [v.ObjectSchema<{
|
|
724
|
+
readonly source: v.LiteralSchema<"ingressTemplate", undefined>;
|
|
725
|
+
readonly hostTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
726
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
727
|
+
}, undefined>, v.ObjectSchema<{
|
|
728
|
+
readonly source: v.LiteralSchema<"ingressStatus", undefined>;
|
|
729
|
+
readonly ingressName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
730
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
731
|
+
}, undefined>, v.ObjectSchema<{
|
|
732
|
+
readonly source: v.LiteralSchema<"serviceStatus", undefined>;
|
|
733
|
+
readonly serviceName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
734
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
735
|
+
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
736
|
+
}, undefined>], undefined>;
|
|
737
|
+
readonly imageTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
738
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
739
|
+
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
740
|
+
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
741
|
+
}, undefined>;
|
|
742
|
+
}, undefined>, v.ObjectSchema<{
|
|
743
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">, v.CheckAction<string, "reserved backend kind">]>;
|
|
744
|
+
readonly manifest: v.ObjectSchema<{
|
|
745
|
+
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
746
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
747
|
+
readonly baseUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
748
|
+
readonly auth: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
749
|
+
readonly type: v.LiteralSchema<"none", undefined>;
|
|
750
|
+
}, undefined>, v.ObjectSchema<{
|
|
751
|
+
readonly type: v.LiteralSchema<"api_key", undefined>;
|
|
752
|
+
readonly headerName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
753
|
+
readonly secretRef: v.ObjectSchema<{
|
|
754
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
755
|
+
}, undefined>;
|
|
756
|
+
readonly valuePrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
757
|
+
}, undefined>, v.ObjectSchema<{
|
|
758
|
+
readonly type: v.LiteralSchema<"bearer", undefined>;
|
|
759
|
+
readonly secretRef: v.ObjectSchema<{
|
|
760
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
761
|
+
}, undefined>;
|
|
762
|
+
}, undefined>, v.ObjectSchema<{
|
|
763
|
+
readonly type: v.LiteralSchema<"basic", undefined>;
|
|
764
|
+
readonly usernameSecretRef: v.ObjectSchema<{
|
|
765
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
766
|
+
}, undefined>;
|
|
767
|
+
readonly passwordSecretRef: v.ObjectSchema<{
|
|
768
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
769
|
+
}, undefined>;
|
|
770
|
+
}, undefined>, v.ObjectSchema<{
|
|
771
|
+
readonly type: v.LiteralSchema<"oauth2_client_credentials", undefined>;
|
|
772
|
+
readonly tokenUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
773
|
+
readonly clientIdSecretRef: v.ObjectSchema<{
|
|
774
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
775
|
+
}, undefined>;
|
|
776
|
+
readonly clientSecretSecretRef: v.ObjectSchema<{
|
|
777
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
778
|
+
}, undefined>;
|
|
779
|
+
readonly scope: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
780
|
+
readonly audience: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
781
|
+
}, undefined>, v.ObjectSchema<{
|
|
782
|
+
readonly type: v.LiteralSchema<"custom_headers", undefined>;
|
|
783
|
+
readonly headers: v.ArraySchema<v.ObjectSchema<{
|
|
784
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
785
|
+
readonly secretRef: v.ObjectSchema<{
|
|
786
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
787
|
+
}, undefined>;
|
|
788
|
+
}, undefined>, undefined>;
|
|
789
|
+
}, undefined>], undefined>;
|
|
790
|
+
readonly provision: v.ObjectSchema<{
|
|
791
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
792
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
793
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
794
|
+
readonly key: v.StringSchema<undefined>;
|
|
795
|
+
readonly value: v.StringSchema<undefined>;
|
|
796
|
+
}, undefined>, undefined>, undefined>;
|
|
797
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
798
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
799
|
+
readonly value: v.StringSchema<undefined>;
|
|
800
|
+
}, undefined>, undefined>, undefined>;
|
|
801
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
802
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
803
|
+
}, undefined>;
|
|
804
|
+
readonly status: v.OptionalSchema<v.ObjectSchema<{
|
|
805
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
806
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
807
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
808
|
+
readonly key: v.StringSchema<undefined>;
|
|
809
|
+
readonly value: v.StringSchema<undefined>;
|
|
810
|
+
}, undefined>, undefined>, undefined>;
|
|
811
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
812
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
813
|
+
readonly value: v.StringSchema<undefined>;
|
|
814
|
+
}, undefined>, undefined>, undefined>;
|
|
815
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
816
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
817
|
+
}, undefined>, undefined>;
|
|
818
|
+
readonly teardown: v.OptionalSchema<v.ObjectSchema<{
|
|
819
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
820
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
821
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
822
|
+
readonly key: v.StringSchema<undefined>;
|
|
823
|
+
readonly value: v.StringSchema<undefined>;
|
|
824
|
+
}, undefined>, undefined>, undefined>;
|
|
825
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
826
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
827
|
+
readonly value: v.StringSchema<undefined>;
|
|
828
|
+
}, undefined>, undefined>, undefined>;
|
|
829
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
830
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
831
|
+
}, undefined>, undefined>;
|
|
832
|
+
readonly response: v.ObjectSchema<{
|
|
833
|
+
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
834
|
+
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
835
|
+
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
836
|
+
readonly from: v.StringSchema<undefined>;
|
|
837
|
+
readonly to: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
838
|
+
}, undefined>, undefined>, undefined>;
|
|
839
|
+
readonly expiresAtPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
840
|
+
readonly externalIdPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
841
|
+
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
842
|
+
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
843
|
+
readonly tokenPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
844
|
+
readonly usernamePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
845
|
+
readonly passwordPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
846
|
+
readonly headerName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
847
|
+
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
848
|
+
}, undefined>, undefined>;
|
|
849
|
+
}, undefined>;
|
|
850
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
851
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
852
|
+
}, undefined>;
|
|
853
|
+
}, undefined>], undefined>, undefined>;
|
|
854
|
+
}, undefined>;
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
export declare const updateEnvironmentSecretsContract: {
|
|
858
|
+
readonly method: "put";
|
|
859
|
+
readonly pathResolver: () => string;
|
|
860
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
341
861
|
readonly secrets: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
342
862
|
}, undefined>;
|
|
343
863
|
readonly responsesByStatusCode: {
|
|
@@ -363,7 +883,7 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
363
883
|
}, undefined>, undefined>, undefined>;
|
|
364
884
|
}, undefined>;
|
|
365
885
|
}, undefined>;
|
|
366
|
-
readonly
|
|
886
|
+
readonly 200: v.ObjectSchema<{
|
|
367
887
|
readonly kind: v.StringSchema<undefined>;
|
|
368
888
|
readonly providerId: v.StringSchema<undefined>;
|
|
369
889
|
readonly label: v.StringSchema<undefined>;
|
|
@@ -517,48 +1037,8 @@ export declare const registerEnvironmentProviderContract: {
|
|
|
517
1037
|
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
518
1038
|
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
519
1039
|
}, undefined>;
|
|
520
|
-
}, undefined
|
|
521
|
-
|
|
522
|
-
};
|
|
523
|
-
};
|
|
524
|
-
export declare const updateEnvironmentSecretsContract: {
|
|
525
|
-
readonly method: "put";
|
|
526
|
-
readonly pathResolver: () => string;
|
|
527
|
-
readonly requestBodySchema: v.ObjectSchema<{
|
|
528
|
-
readonly secrets: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
529
|
-
}, undefined>;
|
|
530
|
-
readonly responsesByStatusCode: {
|
|
531
|
-
readonly '4xx': v.ObjectSchema<{
|
|
532
|
-
readonly error: v.ObjectSchema<{
|
|
533
|
-
readonly code: v.StringSchema<undefined>;
|
|
534
|
-
readonly message: v.StringSchema<undefined>;
|
|
535
|
-
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
536
|
-
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
537
|
-
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
538
|
-
readonly message: v.StringSchema<undefined>;
|
|
539
|
-
}, undefined>, undefined>, undefined>;
|
|
540
|
-
}, undefined>;
|
|
541
|
-
}, undefined>;
|
|
542
|
-
readonly '5xx': v.ObjectSchema<{
|
|
543
|
-
readonly error: v.ObjectSchema<{
|
|
544
|
-
readonly code: v.StringSchema<undefined>;
|
|
545
|
-
readonly message: v.StringSchema<undefined>;
|
|
546
|
-
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
547
|
-
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
548
|
-
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
549
|
-
readonly message: v.StringSchema<undefined>;
|
|
550
|
-
}, undefined>, undefined>, undefined>;
|
|
551
|
-
}, undefined>;
|
|
552
|
-
}, undefined>;
|
|
553
|
-
readonly 200: v.ObjectSchema<{
|
|
554
|
-
readonly kind: v.StringSchema<undefined>;
|
|
555
|
-
readonly providerId: v.StringSchema<undefined>;
|
|
556
|
-
readonly label: v.StringSchema<undefined>;
|
|
557
|
-
readonly baseUrl: v.StringSchema<undefined>;
|
|
558
|
-
readonly connectedAt: v.NumberSchema<undefined>;
|
|
559
|
-
readonly secretKeys: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
560
|
-
readonly config: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
561
|
-
readonly kind: v.LiteralSchema<"manifest", undefined>;
|
|
1040
|
+
}, undefined>, v.ObjectSchema<{
|
|
1041
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">, v.CheckAction<string, "reserved backend kind">]>;
|
|
562
1042
|
readonly manifest: v.ObjectSchema<{
|
|
563
1043
|
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
564
1044
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
@@ -668,42 +1148,6 @@ export declare const updateEnvironmentSecretsContract: {
|
|
|
668
1148
|
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
669
1149
|
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
670
1150
|
}, undefined>;
|
|
671
|
-
}, undefined>, v.ObjectSchema<{
|
|
672
|
-
readonly kind: v.LiteralSchema<"kubernetes", undefined>;
|
|
673
|
-
readonly kubernetes: v.ObjectSchema<{
|
|
674
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
675
|
-
readonly apiServerUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
676
|
-
readonly caCertPem: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
677
|
-
readonly insecureSkipTlsVerify: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
678
|
-
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
679
|
-
readonly manifestSource: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
680
|
-
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
681
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
682
|
-
}, undefined>, v.ObjectSchema<{
|
|
683
|
-
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
684
|
-
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
685
|
-
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
686
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
687
|
-
}, undefined>], undefined>;
|
|
688
|
-
readonly url: v.VariantSchema<"source", [v.ObjectSchema<{
|
|
689
|
-
readonly source: v.LiteralSchema<"ingressTemplate", undefined>;
|
|
690
|
-
readonly hostTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
691
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
692
|
-
}, undefined>, v.ObjectSchema<{
|
|
693
|
-
readonly source: v.LiteralSchema<"ingressStatus", undefined>;
|
|
694
|
-
readonly ingressName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
695
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
696
|
-
}, undefined>, v.ObjectSchema<{
|
|
697
|
-
readonly source: v.LiteralSchema<"serviceStatus", undefined>;
|
|
698
|
-
readonly serviceName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
699
|
-
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
700
|
-
readonly scheme: v.OptionalSchema<v.PicklistSchema<["http", "https"], undefined>, undefined>;
|
|
701
|
-
}, undefined>], undefined>;
|
|
702
|
-
readonly imageTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
703
|
-
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
704
|
-
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
705
|
-
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
706
|
-
}, undefined>;
|
|
707
1151
|
}, undefined>], undefined>, undefined>;
|
|
708
1152
|
}, undefined>;
|
|
709
1153
|
};
|
|
@@ -740,6 +1184,9 @@ export declare const unregisterEnvironmentProviderContract: {
|
|
|
740
1184
|
export declare const describeEnvironmentProviderContract: {
|
|
741
1185
|
readonly method: "get";
|
|
742
1186
|
readonly pathResolver: () => string;
|
|
1187
|
+
readonly requestQuerySchema: v.ObjectSchema<{
|
|
1188
|
+
readonly kind: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1189
|
+
}, undefined>;
|
|
743
1190
|
readonly responsesByStatusCode: {
|
|
744
1191
|
readonly '4xx': v.ObjectSchema<{
|
|
745
1192
|
readonly error: v.ObjectSchema<{
|
|
@@ -955,6 +1402,117 @@ export declare const testEnvironmentConnectionContract: {
|
|
|
955
1402
|
readonly labels: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
956
1403
|
readonly annotations: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
957
1404
|
}, undefined>;
|
|
1405
|
+
}, undefined>, v.ObjectSchema<{
|
|
1406
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">, v.CheckAction<string, "reserved backend kind">]>;
|
|
1407
|
+
readonly manifest: v.ObjectSchema<{
|
|
1408
|
+
readonly providerId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1409
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1410
|
+
readonly baseUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1411
|
+
readonly auth: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1412
|
+
readonly type: v.LiteralSchema<"none", undefined>;
|
|
1413
|
+
}, undefined>, v.ObjectSchema<{
|
|
1414
|
+
readonly type: v.LiteralSchema<"api_key", undefined>;
|
|
1415
|
+
readonly headerName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1416
|
+
readonly secretRef: v.ObjectSchema<{
|
|
1417
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1418
|
+
}, undefined>;
|
|
1419
|
+
readonly valuePrefix: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1420
|
+
}, undefined>, v.ObjectSchema<{
|
|
1421
|
+
readonly type: v.LiteralSchema<"bearer", undefined>;
|
|
1422
|
+
readonly secretRef: v.ObjectSchema<{
|
|
1423
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1424
|
+
}, undefined>;
|
|
1425
|
+
}, undefined>, v.ObjectSchema<{
|
|
1426
|
+
readonly type: v.LiteralSchema<"basic", undefined>;
|
|
1427
|
+
readonly usernameSecretRef: v.ObjectSchema<{
|
|
1428
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1429
|
+
}, undefined>;
|
|
1430
|
+
readonly passwordSecretRef: v.ObjectSchema<{
|
|
1431
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1432
|
+
}, undefined>;
|
|
1433
|
+
}, undefined>, v.ObjectSchema<{
|
|
1434
|
+
readonly type: v.LiteralSchema<"oauth2_client_credentials", undefined>;
|
|
1435
|
+
readonly tokenUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1436
|
+
readonly clientIdSecretRef: v.ObjectSchema<{
|
|
1437
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1438
|
+
}, undefined>;
|
|
1439
|
+
readonly clientSecretSecretRef: v.ObjectSchema<{
|
|
1440
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1441
|
+
}, undefined>;
|
|
1442
|
+
readonly scope: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1443
|
+
readonly audience: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1444
|
+
}, undefined>, v.ObjectSchema<{
|
|
1445
|
+
readonly type: v.LiteralSchema<"custom_headers", undefined>;
|
|
1446
|
+
readonly headers: v.ArraySchema<v.ObjectSchema<{
|
|
1447
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1448
|
+
readonly secretRef: v.ObjectSchema<{
|
|
1449
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
1450
|
+
}, undefined>;
|
|
1451
|
+
}, undefined>, undefined>;
|
|
1452
|
+
}, undefined>], undefined>;
|
|
1453
|
+
readonly provision: v.ObjectSchema<{
|
|
1454
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
1455
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1456
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1457
|
+
readonly key: v.StringSchema<undefined>;
|
|
1458
|
+
readonly value: v.StringSchema<undefined>;
|
|
1459
|
+
}, undefined>, undefined>, undefined>;
|
|
1460
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1461
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1462
|
+
readonly value: v.StringSchema<undefined>;
|
|
1463
|
+
}, undefined>, undefined>, undefined>;
|
|
1464
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1465
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
1466
|
+
}, undefined>;
|
|
1467
|
+
readonly status: v.OptionalSchema<v.ObjectSchema<{
|
|
1468
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
1469
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1470
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1471
|
+
readonly key: v.StringSchema<undefined>;
|
|
1472
|
+
readonly value: v.StringSchema<undefined>;
|
|
1473
|
+
}, undefined>, undefined>, undefined>;
|
|
1474
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1475
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1476
|
+
readonly value: v.StringSchema<undefined>;
|
|
1477
|
+
}, undefined>, undefined>, undefined>;
|
|
1478
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1479
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
1480
|
+
}, undefined>, undefined>;
|
|
1481
|
+
readonly teardown: v.OptionalSchema<v.ObjectSchema<{
|
|
1482
|
+
readonly method: v.PicklistSchema<["GET", "POST", "PUT", "PATCH", "DELETE"], undefined>;
|
|
1483
|
+
readonly pathTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1484
|
+
readonly query: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1485
|
+
readonly key: v.StringSchema<undefined>;
|
|
1486
|
+
readonly value: v.StringSchema<undefined>;
|
|
1487
|
+
}, undefined>, undefined>, undefined>;
|
|
1488
|
+
readonly headers: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1489
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1490
|
+
readonly value: v.StringSchema<undefined>;
|
|
1491
|
+
}, undefined>, undefined>, undefined>;
|
|
1492
|
+
readonly bodyTemplate: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1493
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
1494
|
+
}, undefined>, undefined>;
|
|
1495
|
+
readonly response: v.ObjectSchema<{
|
|
1496
|
+
readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1497
|
+
readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1498
|
+
readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1499
|
+
readonly from: v.StringSchema<undefined>;
|
|
1500
|
+
readonly to: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
1501
|
+
}, undefined>, undefined>, undefined>;
|
|
1502
|
+
readonly expiresAtPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1503
|
+
readonly externalIdPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1504
|
+
readonly access: v.OptionalSchema<v.ObjectSchema<{
|
|
1505
|
+
readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
|
|
1506
|
+
readonly tokenPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1507
|
+
readonly usernamePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1508
|
+
readonly passwordPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1509
|
+
readonly headerName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1510
|
+
readonly headerValuePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1511
|
+
}, undefined>, undefined>;
|
|
1512
|
+
}, undefined>;
|
|
1513
|
+
readonly defaultTtlMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 60000, undefined>]>, undefined>;
|
|
1514
|
+
readonly providerConfig: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
1515
|
+
}, undefined>;
|
|
958
1516
|
}, undefined>], undefined>, undefined>;
|
|
959
1517
|
readonly secrets: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>;
|
|
960
1518
|
}, undefined>;
|