(params: {
token: string
sessionId?: string | null
organizationUuid?: string | null
executionTarget?: Exclude<LeaseExecutionTarget, 'local'>
providerMode?: Exclude<LeaseProviderMode, 'third_party_provider'>
})
| 345 | } |
| 346 | |
| 347 | export function updateSessionIngressRuntimeAuth(params: { |
| 348 | token: string |
| 349 | sessionId?: string | null |
| 350 | organizationUuid?: string | null |
| 351 | executionTarget?: Exclude<LeaseExecutionTarget, 'local'> |
| 352 | providerMode?: Exclude<LeaseProviderMode, 'third_party_provider'> |
| 353 | }): void { |
| 354 | updateSessionIngressAuthToken(params.token) |
| 355 | updateSessionIngressRuntimeLease( |
| 356 | buildSessionIngressLease({ |
| 357 | executionTarget: params.executionTarget, |
| 358 | organizationUuid: params.organizationUuid, |
| 359 | providerMode: params.providerMode, |
| 360 | sessionId: params.sessionId, |
| 361 | token: params.token, |
| 362 | }), |
| 363 | ) |
| 364 | } |
no test coverage detected