-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheditors.ts
181 lines (159 loc) · 4.34 KB
/
editors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { APIPromise } from '../api-promise';
import { EditorsPage, type EditorsPageParams, PagePromise } from '../pagination';
import { RequestOptions } from '../internal/request-options';
export class Editors extends APIResource {
/**
* Gets details about a specific editor.
*
* Use this method to:
*
* - View editor information
* - Get editor configuration
*
* ### Examples
*
* - Get editor details:
*
* Retrieves information about a specific editor.
*
* ```yaml
* id: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
* ```
*/
retrieve(body: EditorRetrieveParams, options?: RequestOptions): APIPromise<EditorRetrieveResponse> {
return this._client.post('/gitpod.v1.EditorService/GetEditor', { body, ...options });
}
/**
* Lists all available code editors.
*
* Use this method to:
*
* - View supported editors
* - Get editor capabilities
* - Browse editor options
* - Check editor availability
*
* ### Examples
*
* - List editors:
*
* Shows all available editors with pagination.
*
* ```yaml
* pagination:
* pageSize: 20
* ```
*/
list(params: EditorListParams, options?: RequestOptions): PagePromise<EditorsEditorsPage, Editor> {
const { token, pageSize, ...body } = params;
return this._client.getAPIList('/gitpod.v1.EditorService/ListEditors', EditorsPage<Editor>, {
query: { token, pageSize },
body,
method: 'post',
...options,
});
}
/**
* Resolves the URL for accessing an editor in a specific environment.
*
* Use this method to:
*
* - Get editor access URLs
* - Launch editors for environments
* - Set up editor connections
* - Configure editor access
*
* ### Examples
*
* - Resolve editor URL:
*
* Gets the URL for accessing an editor in an environment.
*
* ```yaml
* editorId: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
* environmentId: "07e03a28-65a5-4d98-b532-8ea67b188048"
* organizationId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
* ```
*/
resolveURL(body: EditorResolveURLParams, options?: RequestOptions): APIPromise<EditorResolveURLResponse> {
return this._client.post('/gitpod.v1.EditorService/ResolveEditorURL', { body, ...options });
}
}
export type EditorsEditorsPage = EditorsPage<Editor>;
export interface Editor {
id: string;
installationInstructions: string;
name: string;
urlTemplate: string;
alias?: string;
iconUrl?: string;
shortDescription?: string;
}
export interface EditorRetrieveResponse {
/**
* editor contains the editor
*/
editor: Editor;
}
export interface EditorResolveURLResponse {
/**
* url is the resolved editor URL
*/
url: string;
}
export interface EditorRetrieveParams {
/**
* id is the ID of the editor to get
*/
id: string;
}
export interface EditorListParams extends EditorsPageParams {
/**
* Body param: pagination contains the pagination options for listing environments
*/
pagination?: EditorListParams.Pagination;
}
export namespace EditorListParams {
/**
* pagination contains the pagination options for listing environments
*/
export interface Pagination {
/**
* Token for the next set of results that was returned as next_token of a
* PaginationResponse
*/
token?: string;
/**
* Page size is the maximum number of results to retrieve per page. Defaults to 25.
* Maximum 100.
*/
pageSize?: number;
}
}
export interface EditorResolveURLParams {
/**
* editorId is the ID of the editor to resolve the URL for
*/
editorId: string;
/**
* environmentId is the ID of the environment to resolve the URL for
*/
environmentId: string;
/**
* organizationId is the ID of the organization to resolve the URL for
*/
organizationId: string;
}
export declare namespace Editors {
export {
type Editor as Editor,
type EditorRetrieveResponse as EditorRetrieveResponse,
type EditorResolveURLResponse as EditorResolveURLResponse,
type EditorsEditorsPage as EditorsEditorsPage,
type EditorRetrieveParams as EditorRetrieveParams,
type EditorListParams as EditorListParams,
type EditorResolveURLParams as EditorResolveURLParams,
};
}