File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 104
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-f7024f4171c7c4ec558de1c27f338b1089ffddd0d2dbfdb9bb9f9c2abe8f47bf .yml
3- openapi_spec_hash : ced43682b49e73a2862f99b49abb4fcd
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-ac10847d991ef8ed89124b5550922cb5726af2b4a4c3396ee6ff82938302fc25 .yml
3+ openapi_spec_hash : 0d902563108fe2461708c05336eab40a
44config_hash : 16e4457a0bb26e98a335a1c2a572290a
Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ import { path } from '../../internal/utils/path';
1414 */
1515export class Connections extends APIResource {
1616 /**
17- * Creates an auth connection for a profile and domain combination. Returns 409
18- * Conflict if an auth connection already exists for the given profile and domain.
17+ * Creates an auth connection for a profile and domain combination. If the provided
18+ * profile_name does not exist, it is created automatically. Returns 409 Conflict
19+ * if an auth connection already exists for the given profile and domain.
1920 *
2021 * @example
2122 * ```ts
@@ -334,6 +335,11 @@ export interface ManagedAuth {
334335 */
335336 live_view_url ?: string | null ;
336337
338+ /**
339+ * Optional login page URL to skip discovery
340+ */
341+ login_url ?: string ;
342+
337343 /**
338344 * MFA method options (present when flow_step=awaiting_input and MFA selection
339345 * required)
@@ -521,7 +527,8 @@ export interface ManagedAuthCreateRequest {
521527 domain : string ;
522528
523529 /**
524- * Name of the profile to manage authentication for
530+ * Name of the profile to manage authentication for. If the profile does not exist,
531+ * it is created automatically.
525532 */
526533 profile_name : string ;
527534
@@ -975,7 +982,8 @@ export interface ConnectionCreateParams {
975982 domain : string ;
976983
977984 /**
978- * Name of the profile to manage authentication for
985+ * Name of the profile to manage authentication for. If the profile does not exist,
986+ * it is created automatically.
979987 */
980988 profile_name : string ;
981989
You can’t perform that action at this time.
0 commit comments