@daytonaio/api-client 0.131.0-rc.2 → 0.131.0-rc.3
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/package.json +1 -1
- package/src/api/admin-api.d.ts +208 -0
- package/src/api/admin-api.js +404 -0
- package/src/api/admin-api.js.map +1 -0
- package/src/api/docker-registry-api.d.ts +8 -4
- package/src/api/docker-registry-api.js +14 -7
- package/src/api/docker-registry-api.js.map +1 -1
- package/src/api/jobs-api.d.ts +197 -0
- package/src/api/jobs-api.js +371 -0
- package/src/api/jobs-api.js.map +1 -0
- package/src/api/organizations-api.d.ts +222 -0
- package/src/api/organizations-api.js +454 -0
- package/src/api/organizations-api.js.map +1 -1
- package/src/api/preview-api.d.ts +37 -0
- package/src/api/preview-api.js +74 -0
- package/src/api/preview-api.js.map +1 -1
- package/src/api/regions-api.d.ts +8 -16
- package/src/api/regions-api.js +13 -29
- package/src/api/regions-api.js.map +1 -1
- package/src/api/runners-api.d.ts +177 -22
- package/src/api/runners-api.js +338 -25
- package/src/api/runners-api.js.map +1 -1
- package/src/api/sandbox-api.d.ts +171 -0
- package/src/api/sandbox-api.js +342 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/snapshots-api.d.ts +46 -4
- package/src/api/snapshots-api.js +85 -4
- package/src/api/snapshots-api.js.map +1 -1
- package/src/api.d.ts +2 -0
- package/src/api.js +2 -0
- package/src/api.js.map +1 -1
- package/src/models/admin-create-runner.d.ts +78 -0
- package/src/models/admin-create-runner.js +4 -0
- package/src/models/admin-create-runner.js.map +1 -0
- package/src/models/api-key-list.d.ts +5 -0
- package/src/models/api-key-list.js +5 -0
- package/src/models/api-key-list.js.map +1 -1
- package/src/models/api-key-response.d.ts +5 -0
- package/src/models/api-key-response.js +5 -0
- package/src/models/api-key-response.js.map +1 -1
- package/src/models/build-info.d.ts +6 -0
- package/src/models/create-api-key.d.ts +5 -0
- package/src/models/create-api-key.js +5 -0
- package/src/models/create-api-key.js.map +1 -1
- package/src/models/create-organization-role.d.ts +5 -0
- package/src/models/create-organization-role.js +5 -0
- package/src/models/create-organization-role.js.map +1 -1
- package/src/models/create-region-response.d.ts +48 -0
- package/src/models/create-region-response.js +4 -0
- package/src/models/create-region-response.js.map +1 -0
- package/src/models/create-region.d.ts +42 -0
- package/src/models/create-region.js +4 -0
- package/src/models/create-region.js.map +1 -0
- package/src/models/create-runner-response.d.ts +30 -0
- package/src/models/create-runner-response.js +4 -0
- package/src/models/create-runner-response.js.map +1 -0
- package/src/models/create-runner.d.ts +2 -68
- package/src/models/create-runner.js +0 -6
- package/src/models/create-runner.js.map +1 -1
- package/src/models/create-snapshot.d.ts +6 -0
- package/src/models/index.d.ts +18 -0
- package/src/models/index.js +18 -0
- package/src/models/index.js.map +1 -1
- package/src/models/job-status.d.ts +23 -0
- package/src/models/job-status.js +27 -0
- package/src/models/job-status.js.map +1 -0
- package/src/models/job-type.d.ts +30 -0
- package/src/models/job-type.js +34 -0
- package/src/models/job-type.js.map +1 -0
- package/src/models/job.d.ts +88 -0
- package/src/models/job.js +22 -0
- package/src/models/job.js.map +1 -0
- package/src/models/organization-role.d.ts +5 -0
- package/src/models/organization-role.js +5 -0
- package/src/models/organization-role.js.map +1 -1
- package/src/models/paginated-jobs.d.ts +43 -0
- package/src/models/paginated-jobs.js +16 -0
- package/src/models/paginated-jobs.js.map +1 -0
- package/src/models/poll-jobs-response.d.ts +25 -0
- package/src/models/poll-jobs-response.js +16 -0
- package/src/models/poll-jobs-response.js.map +1 -0
- package/src/models/regenerate-api-key-response.d.ts +24 -0
- package/src/models/regenerate-api-key-response.js +4 -0
- package/src/models/regenerate-api-key-response.js.map +1 -0
- package/src/models/region-type.d.ts +22 -0
- package/src/models/region-type.js +26 -0
- package/src/models/region-type.js.map +1 -0
- package/src/models/region.d.ts +19 -0
- package/src/models/region.js +12 -0
- package/src/models/region.js.map +1 -1
- package/src/models/runner-full.d.ts +210 -0
- package/src/models/runner-full.js +16 -0
- package/src/models/runner-full.js.map +1 -0
- package/src/models/runner-health-metrics.d.ts +84 -0
- package/src/models/runner-health-metrics.js +4 -0
- package/src/models/runner-health-metrics.js.map +1 -0
- package/src/models/runner-healthcheck.d.ts +49 -0
- package/src/models/runner-healthcheck.js +16 -0
- package/src/models/runner-healthcheck.js.map +1 -0
- package/src/models/runner-snapshot-dto.d.ts +1 -1
- package/src/models/runner.d.ts +27 -12
- package/src/models/sandbox.d.ts +6 -0
- package/src/models/sandbox.js.map +1 -1
- package/src/models/signed-port-preview-url.d.ts +42 -0
- package/src/models/signed-port-preview-url.js +4 -0
- package/src/models/signed-port-preview-url.js.map +1 -0
- package/src/models/snapshot-dto.d.ts +18 -0
- package/src/models/ssh-access-dto.d.ts +6 -0
- package/src/models/toolbox-proxy-url.d.ts +24 -0
- package/src/models/toolbox-proxy-url.js +4 -0
- package/src/models/toolbox-proxy-url.js.map +1 -0
- package/src/models/update-job-status.d.ts +37 -0
- package/src/models/update-job-status.js +16 -0
- package/src/models/update-job-status.js.map +1 -0
- package/src/models/update-organization-role.d.ts +5 -0
- package/src/models/update-organization-role.js +5 -0
- package/src/models/update-organization-role.js.map +1 -1
- package/src/models/update-sandbox-state-dto.d.ts +6 -0
- package/src/models/update-sandbox-state-dto.js.map +1 -1
- package/src/models/url.d.ts +24 -0
- package/src/models/url.js +4 -0
- package/src/models/url.js.map +1 -0
- package/src/models/workspace.d.ts +6 -0
- package/src/models/workspace.js.map +1 -1
package/src/api/sandbox-api.d.ts
CHANGED
|
@@ -17,9 +17,12 @@ import type { PaginatedSandboxes } from '../models';
|
|
|
17
17
|
import type { PortPreviewUrl } from '../models';
|
|
18
18
|
import type { Sandbox } from '../models';
|
|
19
19
|
import type { SandboxLabels } from '../models';
|
|
20
|
+
import type { SignedPortPreviewUrl } from '../models';
|
|
20
21
|
import type { SshAccessDto } from '../models';
|
|
21
22
|
import type { SshAccessValidationDto } from '../models';
|
|
23
|
+
import type { ToolboxProxyUrl } from '../models';
|
|
22
24
|
import type { UpdateSandboxStateDto } from '../models';
|
|
25
|
+
import type { Url } from '../models';
|
|
23
26
|
/**
|
|
24
27
|
* SandboxApi - axios parameter creator
|
|
25
28
|
* @export
|
|
@@ -73,14 +76,35 @@ export declare const SandboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
73
76
|
deleteSandbox: (sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
77
|
/**
|
|
75
78
|
*
|
|
79
|
+
* @summary Expire signed preview URL for a sandbox port
|
|
80
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
81
|
+
* @param {number} port Port number to expire signed preview URL for
|
|
82
|
+
* @param {string} token Token to expire signed preview URL for
|
|
83
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
84
|
+
* @param {*} [options] Override http request option.
|
|
85
|
+
* @throws {RequiredError}
|
|
86
|
+
*/
|
|
87
|
+
expireSignedPortPreviewUrl: (sandboxIdOrName: string, port: number, token: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
88
|
+
/**
|
|
89
|
+
* This endpoint is deprecated. Use `getBuildLogsUrl` instead.
|
|
76
90
|
* @summary Get build logs
|
|
77
91
|
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
78
92
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
79
93
|
* @param {boolean} [follow] Whether to follow the logs stream
|
|
80
94
|
* @param {*} [options] Override http request option.
|
|
95
|
+
* @deprecated
|
|
81
96
|
* @throws {RequiredError}
|
|
82
97
|
*/
|
|
83
98
|
getBuildLogs: (sandboxIdOrName: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @summary Get build logs URL
|
|
102
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
103
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
104
|
+
* @param {*} [options] Override http request option.
|
|
105
|
+
* @throws {RequiredError}
|
|
106
|
+
*/
|
|
107
|
+
getBuildLogsUrl: (sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
108
|
/**
|
|
85
109
|
*
|
|
86
110
|
* @summary Get preview URL for a sandbox port
|
|
@@ -111,6 +135,26 @@ export declare const SandboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
111
135
|
* @throws {RequiredError}
|
|
112
136
|
*/
|
|
113
137
|
getSandboxesForRunner: (xDaytonaOrganizationID?: string, states?: string, skipReconcilingSandboxes?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @summary Get signed preview URL for a sandbox port
|
|
141
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
142
|
+
* @param {number} port Port number to get signed preview URL for
|
|
143
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
144
|
+
* @param {number} [expiresInSeconds] Expiration time in seconds (default: 60 seconds)
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
getSignedPortPreviewUrl: (sandboxIdOrName: string, port: number, xDaytonaOrganizationID?: string, expiresInSeconds?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @summary Get toolbox proxy URL for a sandbox
|
|
152
|
+
* @param {string} sandboxId ID of the sandbox
|
|
153
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
154
|
+
* @param {*} [options] Override http request option.
|
|
155
|
+
* @throws {RequiredError}
|
|
156
|
+
*/
|
|
157
|
+
getToolboxProxyUrl: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
114
158
|
/**
|
|
115
159
|
*
|
|
116
160
|
* @summary List all sandboxes
|
|
@@ -318,14 +362,35 @@ export declare const SandboxApiFp: (configuration?: Configuration) => {
|
|
|
318
362
|
deleteSandbox(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Sandbox>>;
|
|
319
363
|
/**
|
|
320
364
|
*
|
|
365
|
+
* @summary Expire signed preview URL for a sandbox port
|
|
366
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
367
|
+
* @param {number} port Port number to expire signed preview URL for
|
|
368
|
+
* @param {string} token Token to expire signed preview URL for
|
|
369
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
370
|
+
* @param {*} [options] Override http request option.
|
|
371
|
+
* @throws {RequiredError}
|
|
372
|
+
*/
|
|
373
|
+
expireSignedPortPreviewUrl(sandboxIdOrName: string, port: number, token: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
374
|
+
/**
|
|
375
|
+
* This endpoint is deprecated. Use `getBuildLogsUrl` instead.
|
|
321
376
|
* @summary Get build logs
|
|
322
377
|
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
323
378
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
324
379
|
* @param {boolean} [follow] Whether to follow the logs stream
|
|
325
380
|
* @param {*} [options] Override http request option.
|
|
381
|
+
* @deprecated
|
|
326
382
|
* @throws {RequiredError}
|
|
327
383
|
*/
|
|
328
384
|
getBuildLogs(sandboxIdOrName: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @summary Get build logs URL
|
|
388
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
389
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
390
|
+
* @param {*} [options] Override http request option.
|
|
391
|
+
* @throws {RequiredError}
|
|
392
|
+
*/
|
|
393
|
+
getBuildLogsUrl(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Url>>;
|
|
329
394
|
/**
|
|
330
395
|
*
|
|
331
396
|
* @summary Get preview URL for a sandbox port
|
|
@@ -356,6 +421,26 @@ export declare const SandboxApiFp: (configuration?: Configuration) => {
|
|
|
356
421
|
* @throws {RequiredError}
|
|
357
422
|
*/
|
|
358
423
|
getSandboxesForRunner(xDaytonaOrganizationID?: string, states?: string, skipReconcilingSandboxes?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Sandbox>>>;
|
|
424
|
+
/**
|
|
425
|
+
*
|
|
426
|
+
* @summary Get signed preview URL for a sandbox port
|
|
427
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
428
|
+
* @param {number} port Port number to get signed preview URL for
|
|
429
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
430
|
+
* @param {number} [expiresInSeconds] Expiration time in seconds (default: 60 seconds)
|
|
431
|
+
* @param {*} [options] Override http request option.
|
|
432
|
+
* @throws {RequiredError}
|
|
433
|
+
*/
|
|
434
|
+
getSignedPortPreviewUrl(sandboxIdOrName: string, port: number, xDaytonaOrganizationID?: string, expiresInSeconds?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SignedPortPreviewUrl>>;
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @summary Get toolbox proxy URL for a sandbox
|
|
438
|
+
* @param {string} sandboxId ID of the sandbox
|
|
439
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
440
|
+
* @param {*} [options] Override http request option.
|
|
441
|
+
* @throws {RequiredError}
|
|
442
|
+
*/
|
|
443
|
+
getToolboxProxyUrl(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ToolboxProxyUrl>>;
|
|
359
444
|
/**
|
|
360
445
|
*
|
|
361
446
|
* @summary List all sandboxes
|
|
@@ -563,14 +648,35 @@ export declare const SandboxApiFactory: (configuration?: Configuration, basePath
|
|
|
563
648
|
deleteSandbox(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Sandbox>;
|
|
564
649
|
/**
|
|
565
650
|
*
|
|
651
|
+
* @summary Expire signed preview URL for a sandbox port
|
|
652
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
653
|
+
* @param {number} port Port number to expire signed preview URL for
|
|
654
|
+
* @param {string} token Token to expire signed preview URL for
|
|
655
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
656
|
+
* @param {*} [options] Override http request option.
|
|
657
|
+
* @throws {RequiredError}
|
|
658
|
+
*/
|
|
659
|
+
expireSignedPortPreviewUrl(sandboxIdOrName: string, port: number, token: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
660
|
+
/**
|
|
661
|
+
* This endpoint is deprecated. Use `getBuildLogsUrl` instead.
|
|
566
662
|
* @summary Get build logs
|
|
567
663
|
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
568
664
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
569
665
|
* @param {boolean} [follow] Whether to follow the logs stream
|
|
570
666
|
* @param {*} [options] Override http request option.
|
|
667
|
+
* @deprecated
|
|
571
668
|
* @throws {RequiredError}
|
|
572
669
|
*/
|
|
573
670
|
getBuildLogs(sandboxIdOrName: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
671
|
+
/**
|
|
672
|
+
*
|
|
673
|
+
* @summary Get build logs URL
|
|
674
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
675
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
676
|
+
* @param {*} [options] Override http request option.
|
|
677
|
+
* @throws {RequiredError}
|
|
678
|
+
*/
|
|
679
|
+
getBuildLogsUrl(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Url>;
|
|
574
680
|
/**
|
|
575
681
|
*
|
|
576
682
|
* @summary Get preview URL for a sandbox port
|
|
@@ -601,6 +707,26 @@ export declare const SandboxApiFactory: (configuration?: Configuration, basePath
|
|
|
601
707
|
* @throws {RequiredError}
|
|
602
708
|
*/
|
|
603
709
|
getSandboxesForRunner(xDaytonaOrganizationID?: string, states?: string, skipReconcilingSandboxes?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Sandbox>>;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @summary Get signed preview URL for a sandbox port
|
|
713
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
714
|
+
* @param {number} port Port number to get signed preview URL for
|
|
715
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
716
|
+
* @param {number} [expiresInSeconds] Expiration time in seconds (default: 60 seconds)
|
|
717
|
+
* @param {*} [options] Override http request option.
|
|
718
|
+
* @throws {RequiredError}
|
|
719
|
+
*/
|
|
720
|
+
getSignedPortPreviewUrl(sandboxIdOrName: string, port: number, xDaytonaOrganizationID?: string, expiresInSeconds?: number, options?: RawAxiosRequestConfig): AxiosPromise<SignedPortPreviewUrl>;
|
|
721
|
+
/**
|
|
722
|
+
*
|
|
723
|
+
* @summary Get toolbox proxy URL for a sandbox
|
|
724
|
+
* @param {string} sandboxId ID of the sandbox
|
|
725
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
726
|
+
* @param {*} [options] Override http request option.
|
|
727
|
+
* @throws {RequiredError}
|
|
728
|
+
*/
|
|
729
|
+
getToolboxProxyUrl(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ToolboxProxyUrl>;
|
|
604
730
|
/**
|
|
605
731
|
*
|
|
606
732
|
* @summary List all sandboxes
|
|
@@ -815,15 +941,38 @@ export declare class SandboxApi extends BaseAPI {
|
|
|
815
941
|
deleteSandbox(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Sandbox, any>>;
|
|
816
942
|
/**
|
|
817
943
|
*
|
|
944
|
+
* @summary Expire signed preview URL for a sandbox port
|
|
945
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
946
|
+
* @param {number} port Port number to expire signed preview URL for
|
|
947
|
+
* @param {string} token Token to expire signed preview URL for
|
|
948
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
949
|
+
* @param {*} [options] Override http request option.
|
|
950
|
+
* @throws {RequiredError}
|
|
951
|
+
* @memberof SandboxApi
|
|
952
|
+
*/
|
|
953
|
+
expireSignedPortPreviewUrl(sandboxIdOrName: string, port: number, token: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
954
|
+
/**
|
|
955
|
+
* This endpoint is deprecated. Use `getBuildLogsUrl` instead.
|
|
818
956
|
* @summary Get build logs
|
|
819
957
|
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
820
958
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
821
959
|
* @param {boolean} [follow] Whether to follow the logs stream
|
|
822
960
|
* @param {*} [options] Override http request option.
|
|
961
|
+
* @deprecated
|
|
823
962
|
* @throws {RequiredError}
|
|
824
963
|
* @memberof SandboxApi
|
|
825
964
|
*/
|
|
826
965
|
getBuildLogs(sandboxIdOrName: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
966
|
+
/**
|
|
967
|
+
*
|
|
968
|
+
* @summary Get build logs URL
|
|
969
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
970
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
971
|
+
* @param {*} [options] Override http request option.
|
|
972
|
+
* @throws {RequiredError}
|
|
973
|
+
* @memberof SandboxApi
|
|
974
|
+
*/
|
|
975
|
+
getBuildLogsUrl(sandboxIdOrName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Url, any>>;
|
|
827
976
|
/**
|
|
828
977
|
*
|
|
829
978
|
* @summary Get preview URL for a sandbox port
|
|
@@ -857,6 +1006,28 @@ export declare class SandboxApi extends BaseAPI {
|
|
|
857
1006
|
* @memberof SandboxApi
|
|
858
1007
|
*/
|
|
859
1008
|
getSandboxesForRunner(xDaytonaOrganizationID?: string, states?: string, skipReconcilingSandboxes?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Sandbox[], any>>;
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* @summary Get signed preview URL for a sandbox port
|
|
1012
|
+
* @param {string} sandboxIdOrName ID or name of the sandbox
|
|
1013
|
+
* @param {number} port Port number to get signed preview URL for
|
|
1014
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1015
|
+
* @param {number} [expiresInSeconds] Expiration time in seconds (default: 60 seconds)
|
|
1016
|
+
* @param {*} [options] Override http request option.
|
|
1017
|
+
* @throws {RequiredError}
|
|
1018
|
+
* @memberof SandboxApi
|
|
1019
|
+
*/
|
|
1020
|
+
getSignedPortPreviewUrl(sandboxIdOrName: string, port: number, xDaytonaOrganizationID?: string, expiresInSeconds?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignedPortPreviewUrl, any>>;
|
|
1021
|
+
/**
|
|
1022
|
+
*
|
|
1023
|
+
* @summary Get toolbox proxy URL for a sandbox
|
|
1024
|
+
* @param {string} sandboxId ID of the sandbox
|
|
1025
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1026
|
+
* @param {*} [options] Override http request option.
|
|
1027
|
+
* @throws {RequiredError}
|
|
1028
|
+
* @memberof SandboxApi
|
|
1029
|
+
*/
|
|
1030
|
+
getToolboxProxyUrl(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ToolboxProxyUrl, any>>;
|
|
860
1031
|
/**
|
|
861
1032
|
*
|
|
862
1033
|
* @summary List all sandboxes
|