@aws-sdk/client-codecatalyst 3.1087.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/CodeCatalyst.d.ts +131 -154
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +12 -40
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +4 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSourceRepositoryBranchCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetProjectCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSpaceCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetUserDetailsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDevEnvironmentSessionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDevEnvironmentsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListEventLogsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSourceRepositoriesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSourceRepositoryBranchesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartDevEnvironmentSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopDevEnvironmentSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/VerifySessionCommand.d.ts +2 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListSpacesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -26
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -20
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -26
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -7
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -40,18 +40,12 @@ import {
|
|
|
40
40
|
DeleteSourceRepositoryCommandInput,
|
|
41
41
|
DeleteSourceRepositoryCommandOutput,
|
|
42
42
|
} from "./commands/DeleteSourceRepositoryCommand";
|
|
43
|
-
import {
|
|
44
|
-
DeleteSpaceCommandInput,
|
|
45
|
-
DeleteSpaceCommandOutput,
|
|
46
|
-
} from "./commands/DeleteSpaceCommand";
|
|
43
|
+
import { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "./commands/DeleteSpaceCommand";
|
|
47
44
|
import {
|
|
48
45
|
GetDevEnvironmentCommandInput,
|
|
49
46
|
GetDevEnvironmentCommandOutput,
|
|
50
47
|
} from "./commands/GetDevEnvironmentCommand";
|
|
51
|
-
import {
|
|
52
|
-
GetProjectCommandInput,
|
|
53
|
-
GetProjectCommandOutput,
|
|
54
|
-
} from "./commands/GetProjectCommand";
|
|
48
|
+
import { GetProjectCommandInput, GetProjectCommandOutput } from "./commands/GetProjectCommand";
|
|
55
49
|
import {
|
|
56
50
|
GetSourceRepositoryCloneUrlsCommandInput,
|
|
57
51
|
GetSourceRepositoryCloneUrlsCommandOutput,
|
|
@@ -60,10 +54,7 @@ import {
|
|
|
60
54
|
GetSourceRepositoryCommandInput,
|
|
61
55
|
GetSourceRepositoryCommandOutput,
|
|
62
56
|
} from "./commands/GetSourceRepositoryCommand";
|
|
63
|
-
import {
|
|
64
|
-
GetSpaceCommandInput,
|
|
65
|
-
GetSpaceCommandOutput,
|
|
66
|
-
} from "./commands/GetSpaceCommand";
|
|
57
|
+
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
67
58
|
import {
|
|
68
59
|
GetSubscriptionCommandInput,
|
|
69
60
|
GetSubscriptionCommandOutput,
|
|
@@ -72,10 +63,7 @@ import {
|
|
|
72
63
|
GetUserDetailsCommandInput,
|
|
73
64
|
GetUserDetailsCommandOutput,
|
|
74
65
|
} from "./commands/GetUserDetailsCommand";
|
|
75
|
-
import {
|
|
76
|
-
GetWorkflowCommandInput,
|
|
77
|
-
GetWorkflowCommandOutput,
|
|
78
|
-
} from "./commands/GetWorkflowCommand";
|
|
66
|
+
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
79
67
|
import {
|
|
80
68
|
GetWorkflowRunCommandInput,
|
|
81
69
|
GetWorkflowRunCommandOutput,
|
|
@@ -108,10 +96,7 @@ import {
|
|
|
108
96
|
ListSourceRepositoryBranchesCommandInput,
|
|
109
97
|
ListSourceRepositoryBranchesCommandOutput,
|
|
110
98
|
} from "./commands/ListSourceRepositoryBranchesCommand";
|
|
111
|
-
import {
|
|
112
|
-
ListSpacesCommandInput,
|
|
113
|
-
ListSpacesCommandOutput,
|
|
114
|
-
} from "./commands/ListSpacesCommand";
|
|
99
|
+
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
115
100
|
import {
|
|
116
101
|
ListWorkflowRunsCommandInput,
|
|
117
102
|
ListWorkflowRunsCommandOutput,
|
|
@@ -148,10 +133,7 @@ import {
|
|
|
148
133
|
UpdateProjectCommandInput,
|
|
149
134
|
UpdateProjectCommandOutput,
|
|
150
135
|
} from "./commands/UpdateProjectCommand";
|
|
151
|
-
import {
|
|
152
|
-
UpdateSpaceCommandInput,
|
|
153
|
-
UpdateSpaceCommandOutput,
|
|
154
|
-
} from "./commands/UpdateSpaceCommand";
|
|
136
|
+
import { UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand";
|
|
155
137
|
import {
|
|
156
138
|
VerifySessionCommandInput,
|
|
157
139
|
VerifySessionCommandOutput,
|
|
@@ -159,573 +141,568 @@ import {
|
|
|
159
141
|
export interface CodeCatalyst {
|
|
160
142
|
createAccessToken(
|
|
161
143
|
args: CreateAccessTokenCommandInput,
|
|
162
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
163
145
|
): Promise<CreateAccessTokenCommandOutput>;
|
|
164
146
|
createAccessToken(
|
|
165
147
|
args: CreateAccessTokenCommandInput,
|
|
166
|
-
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void,
|
|
167
149
|
): void;
|
|
168
150
|
createAccessToken(
|
|
169
151
|
args: CreateAccessTokenCommandInput,
|
|
170
152
|
options: __HttpHandlerOptions,
|
|
171
|
-
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void,
|
|
172
154
|
): void;
|
|
173
155
|
createDevEnvironment(
|
|
174
156
|
args: CreateDevEnvironmentCommandInput,
|
|
175
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
176
158
|
): Promise<CreateDevEnvironmentCommandOutput>;
|
|
177
159
|
createDevEnvironment(
|
|
178
160
|
args: CreateDevEnvironmentCommandInput,
|
|
179
|
-
cb: (err: any, data?: CreateDevEnvironmentCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: CreateDevEnvironmentCommandOutput) => void,
|
|
180
162
|
): void;
|
|
181
163
|
createDevEnvironment(
|
|
182
164
|
args: CreateDevEnvironmentCommandInput,
|
|
183
165
|
options: __HttpHandlerOptions,
|
|
184
|
-
cb: (err: any, data?: CreateDevEnvironmentCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreateDevEnvironmentCommandOutput) => void,
|
|
185
167
|
): void;
|
|
186
168
|
createProject(
|
|
187
169
|
args: CreateProjectCommandInput,
|
|
188
|
-
options?: __HttpHandlerOptions
|
|
170
|
+
options?: __HttpHandlerOptions,
|
|
189
171
|
): Promise<CreateProjectCommandOutput>;
|
|
190
172
|
createProject(
|
|
191
173
|
args: CreateProjectCommandInput,
|
|
192
|
-
cb: (err: any, data?: CreateProjectCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: CreateProjectCommandOutput) => void,
|
|
193
175
|
): void;
|
|
194
176
|
createProject(
|
|
195
177
|
args: CreateProjectCommandInput,
|
|
196
178
|
options: __HttpHandlerOptions,
|
|
197
|
-
cb: (err: any, data?: CreateProjectCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: CreateProjectCommandOutput) => void,
|
|
198
180
|
): void;
|
|
199
181
|
createSourceRepository(
|
|
200
182
|
args: CreateSourceRepositoryCommandInput,
|
|
201
|
-
options?: __HttpHandlerOptions
|
|
183
|
+
options?: __HttpHandlerOptions,
|
|
202
184
|
): Promise<CreateSourceRepositoryCommandOutput>;
|
|
203
185
|
createSourceRepository(
|
|
204
186
|
args: CreateSourceRepositoryCommandInput,
|
|
205
|
-
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void,
|
|
206
188
|
): void;
|
|
207
189
|
createSourceRepository(
|
|
208
190
|
args: CreateSourceRepositoryCommandInput,
|
|
209
191
|
options: __HttpHandlerOptions,
|
|
210
|
-
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void,
|
|
211
193
|
): void;
|
|
212
194
|
createSourceRepositoryBranch(
|
|
213
195
|
args: CreateSourceRepositoryBranchCommandInput,
|
|
214
|
-
options?: __HttpHandlerOptions
|
|
196
|
+
options?: __HttpHandlerOptions,
|
|
215
197
|
): Promise<CreateSourceRepositoryBranchCommandOutput>;
|
|
216
198
|
createSourceRepositoryBranch(
|
|
217
199
|
args: CreateSourceRepositoryBranchCommandInput,
|
|
218
|
-
cb: (err: any, data?: CreateSourceRepositoryBranchCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: CreateSourceRepositoryBranchCommandOutput) => void,
|
|
219
201
|
): void;
|
|
220
202
|
createSourceRepositoryBranch(
|
|
221
203
|
args: CreateSourceRepositoryBranchCommandInput,
|
|
222
204
|
options: __HttpHandlerOptions,
|
|
223
|
-
cb: (err: any, data?: CreateSourceRepositoryBranchCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: CreateSourceRepositoryBranchCommandOutput) => void,
|
|
224
206
|
): void;
|
|
225
207
|
deleteAccessToken(
|
|
226
208
|
args: DeleteAccessTokenCommandInput,
|
|
227
|
-
options?: __HttpHandlerOptions
|
|
209
|
+
options?: __HttpHandlerOptions,
|
|
228
210
|
): Promise<DeleteAccessTokenCommandOutput>;
|
|
229
211
|
deleteAccessToken(
|
|
230
212
|
args: DeleteAccessTokenCommandInput,
|
|
231
|
-
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void,
|
|
232
214
|
): void;
|
|
233
215
|
deleteAccessToken(
|
|
234
216
|
args: DeleteAccessTokenCommandInput,
|
|
235
217
|
options: __HttpHandlerOptions,
|
|
236
|
-
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void,
|
|
237
219
|
): void;
|
|
238
220
|
deleteDevEnvironment(
|
|
239
221
|
args: DeleteDevEnvironmentCommandInput,
|
|
240
|
-
options?: __HttpHandlerOptions
|
|
222
|
+
options?: __HttpHandlerOptions,
|
|
241
223
|
): Promise<DeleteDevEnvironmentCommandOutput>;
|
|
242
224
|
deleteDevEnvironment(
|
|
243
225
|
args: DeleteDevEnvironmentCommandInput,
|
|
244
|
-
cb: (err: any, data?: DeleteDevEnvironmentCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: DeleteDevEnvironmentCommandOutput) => void,
|
|
245
227
|
): void;
|
|
246
228
|
deleteDevEnvironment(
|
|
247
229
|
args: DeleteDevEnvironmentCommandInput,
|
|
248
230
|
options: __HttpHandlerOptions,
|
|
249
|
-
cb: (err: any, data?: DeleteDevEnvironmentCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: DeleteDevEnvironmentCommandOutput) => void,
|
|
250
232
|
): void;
|
|
251
233
|
deleteProject(
|
|
252
234
|
args: DeleteProjectCommandInput,
|
|
253
|
-
options?: __HttpHandlerOptions
|
|
235
|
+
options?: __HttpHandlerOptions,
|
|
254
236
|
): Promise<DeleteProjectCommandOutput>;
|
|
255
237
|
deleteProject(
|
|
256
238
|
args: DeleteProjectCommandInput,
|
|
257
|
-
cb: (err: any, data?: DeleteProjectCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: DeleteProjectCommandOutput) => void,
|
|
258
240
|
): void;
|
|
259
241
|
deleteProject(
|
|
260
242
|
args: DeleteProjectCommandInput,
|
|
261
243
|
options: __HttpHandlerOptions,
|
|
262
|
-
cb: (err: any, data?: DeleteProjectCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: DeleteProjectCommandOutput) => void,
|
|
263
245
|
): void;
|
|
264
246
|
deleteSourceRepository(
|
|
265
247
|
args: DeleteSourceRepositoryCommandInput,
|
|
266
|
-
options?: __HttpHandlerOptions
|
|
248
|
+
options?: __HttpHandlerOptions,
|
|
267
249
|
): Promise<DeleteSourceRepositoryCommandOutput>;
|
|
268
250
|
deleteSourceRepository(
|
|
269
251
|
args: DeleteSourceRepositoryCommandInput,
|
|
270
|
-
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void,
|
|
271
253
|
): void;
|
|
272
254
|
deleteSourceRepository(
|
|
273
255
|
args: DeleteSourceRepositoryCommandInput,
|
|
274
256
|
options: __HttpHandlerOptions,
|
|
275
|
-
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void,
|
|
276
258
|
): void;
|
|
277
259
|
deleteSpace(
|
|
278
260
|
args: DeleteSpaceCommandInput,
|
|
279
|
-
options?: __HttpHandlerOptions
|
|
261
|
+
options?: __HttpHandlerOptions,
|
|
280
262
|
): Promise<DeleteSpaceCommandOutput>;
|
|
281
263
|
deleteSpace(
|
|
282
264
|
args: DeleteSpaceCommandInput,
|
|
283
|
-
cb: (err: any, data?: DeleteSpaceCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: DeleteSpaceCommandOutput) => void,
|
|
284
266
|
): void;
|
|
285
267
|
deleteSpace(
|
|
286
268
|
args: DeleteSpaceCommandInput,
|
|
287
269
|
options: __HttpHandlerOptions,
|
|
288
|
-
cb: (err: any, data?: DeleteSpaceCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: DeleteSpaceCommandOutput) => void,
|
|
289
271
|
): void;
|
|
290
272
|
getDevEnvironment(
|
|
291
273
|
args: GetDevEnvironmentCommandInput,
|
|
292
|
-
options?: __HttpHandlerOptions
|
|
274
|
+
options?: __HttpHandlerOptions,
|
|
293
275
|
): Promise<GetDevEnvironmentCommandOutput>;
|
|
294
276
|
getDevEnvironment(
|
|
295
277
|
args: GetDevEnvironmentCommandInput,
|
|
296
|
-
cb: (err: any, data?: GetDevEnvironmentCommandOutput) => void
|
|
278
|
+
cb: (err: any, data?: GetDevEnvironmentCommandOutput) => void,
|
|
297
279
|
): void;
|
|
298
280
|
getDevEnvironment(
|
|
299
281
|
args: GetDevEnvironmentCommandInput,
|
|
300
282
|
options: __HttpHandlerOptions,
|
|
301
|
-
cb: (err: any, data?: GetDevEnvironmentCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: GetDevEnvironmentCommandOutput) => void,
|
|
302
284
|
): void;
|
|
303
285
|
getProject(
|
|
304
286
|
args: GetProjectCommandInput,
|
|
305
|
-
options?: __HttpHandlerOptions
|
|
287
|
+
options?: __HttpHandlerOptions,
|
|
306
288
|
): Promise<GetProjectCommandOutput>;
|
|
307
289
|
getProject(
|
|
308
290
|
args: GetProjectCommandInput,
|
|
309
|
-
cb: (err: any, data?: GetProjectCommandOutput) => void
|
|
291
|
+
cb: (err: any, data?: GetProjectCommandOutput) => void,
|
|
310
292
|
): void;
|
|
311
293
|
getProject(
|
|
312
294
|
args: GetProjectCommandInput,
|
|
313
295
|
options: __HttpHandlerOptions,
|
|
314
|
-
cb: (err: any, data?: GetProjectCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: GetProjectCommandOutput) => void,
|
|
315
297
|
): void;
|
|
316
298
|
getSourceRepository(
|
|
317
299
|
args: GetSourceRepositoryCommandInput,
|
|
318
|
-
options?: __HttpHandlerOptions
|
|
300
|
+
options?: __HttpHandlerOptions,
|
|
319
301
|
): Promise<GetSourceRepositoryCommandOutput>;
|
|
320
302
|
getSourceRepository(
|
|
321
303
|
args: GetSourceRepositoryCommandInput,
|
|
322
|
-
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void
|
|
304
|
+
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void,
|
|
323
305
|
): void;
|
|
324
306
|
getSourceRepository(
|
|
325
307
|
args: GetSourceRepositoryCommandInput,
|
|
326
308
|
options: __HttpHandlerOptions,
|
|
327
|
-
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void,
|
|
328
310
|
): void;
|
|
329
311
|
getSourceRepositoryCloneUrls(
|
|
330
312
|
args: GetSourceRepositoryCloneUrlsCommandInput,
|
|
331
|
-
options?: __HttpHandlerOptions
|
|
313
|
+
options?: __HttpHandlerOptions,
|
|
332
314
|
): Promise<GetSourceRepositoryCloneUrlsCommandOutput>;
|
|
333
315
|
getSourceRepositoryCloneUrls(
|
|
334
316
|
args: GetSourceRepositoryCloneUrlsCommandInput,
|
|
335
|
-
cb: (err: any, data?: GetSourceRepositoryCloneUrlsCommandOutput) => void
|
|
317
|
+
cb: (err: any, data?: GetSourceRepositoryCloneUrlsCommandOutput) => void,
|
|
336
318
|
): void;
|
|
337
319
|
getSourceRepositoryCloneUrls(
|
|
338
320
|
args: GetSourceRepositoryCloneUrlsCommandInput,
|
|
339
321
|
options: __HttpHandlerOptions,
|
|
340
|
-
cb: (err: any, data?: GetSourceRepositoryCloneUrlsCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: GetSourceRepositoryCloneUrlsCommandOutput) => void,
|
|
341
323
|
): void;
|
|
342
324
|
getSpace(
|
|
343
325
|
args: GetSpaceCommandInput,
|
|
344
|
-
options?: __HttpHandlerOptions
|
|
326
|
+
options?: __HttpHandlerOptions,
|
|
345
327
|
): Promise<GetSpaceCommandOutput>;
|
|
346
|
-
getSpace(
|
|
347
|
-
args: GetSpaceCommandInput,
|
|
348
|
-
cb: (err: any, data?: GetSpaceCommandOutput) => void
|
|
349
|
-
): void;
|
|
328
|
+
getSpace(args: GetSpaceCommandInput, cb: (err: any, data?: GetSpaceCommandOutput) => void): void;
|
|
350
329
|
getSpace(
|
|
351
330
|
args: GetSpaceCommandInput,
|
|
352
331
|
options: __HttpHandlerOptions,
|
|
353
|
-
cb: (err: any, data?: GetSpaceCommandOutput) => void
|
|
332
|
+
cb: (err: any, data?: GetSpaceCommandOutput) => void,
|
|
354
333
|
): void;
|
|
355
334
|
getSubscription(
|
|
356
335
|
args: GetSubscriptionCommandInput,
|
|
357
|
-
options?: __HttpHandlerOptions
|
|
336
|
+
options?: __HttpHandlerOptions,
|
|
358
337
|
): Promise<GetSubscriptionCommandOutput>;
|
|
359
338
|
getSubscription(
|
|
360
339
|
args: GetSubscriptionCommandInput,
|
|
361
|
-
cb: (err: any, data?: GetSubscriptionCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: GetSubscriptionCommandOutput) => void,
|
|
362
341
|
): void;
|
|
363
342
|
getSubscription(
|
|
364
343
|
args: GetSubscriptionCommandInput,
|
|
365
344
|
options: __HttpHandlerOptions,
|
|
366
|
-
cb: (err: any, data?: GetSubscriptionCommandOutput) => void
|
|
345
|
+
cb: (err: any, data?: GetSubscriptionCommandOutput) => void,
|
|
367
346
|
): void;
|
|
368
347
|
getUserDetails(): Promise<GetUserDetailsCommandOutput>;
|
|
369
348
|
getUserDetails(
|
|
370
349
|
args: GetUserDetailsCommandInput,
|
|
371
|
-
options?: __HttpHandlerOptions
|
|
350
|
+
options?: __HttpHandlerOptions,
|
|
372
351
|
): Promise<GetUserDetailsCommandOutput>;
|
|
373
352
|
getUserDetails(
|
|
374
353
|
args: GetUserDetailsCommandInput,
|
|
375
|
-
cb: (err: any, data?: GetUserDetailsCommandOutput) => void
|
|
354
|
+
cb: (err: any, data?: GetUserDetailsCommandOutput) => void,
|
|
376
355
|
): void;
|
|
377
356
|
getUserDetails(
|
|
378
357
|
args: GetUserDetailsCommandInput,
|
|
379
358
|
options: __HttpHandlerOptions,
|
|
380
|
-
cb: (err: any, data?: GetUserDetailsCommandOutput) => void
|
|
359
|
+
cb: (err: any, data?: GetUserDetailsCommandOutput) => void,
|
|
381
360
|
): void;
|
|
382
361
|
getWorkflow(
|
|
383
362
|
args: GetWorkflowCommandInput,
|
|
384
|
-
options?: __HttpHandlerOptions
|
|
363
|
+
options?: __HttpHandlerOptions,
|
|
385
364
|
): Promise<GetWorkflowCommandOutput>;
|
|
386
365
|
getWorkflow(
|
|
387
366
|
args: GetWorkflowCommandInput,
|
|
388
|
-
cb: (err: any, data?: GetWorkflowCommandOutput) => void
|
|
367
|
+
cb: (err: any, data?: GetWorkflowCommandOutput) => void,
|
|
389
368
|
): void;
|
|
390
369
|
getWorkflow(
|
|
391
370
|
args: GetWorkflowCommandInput,
|
|
392
371
|
options: __HttpHandlerOptions,
|
|
393
|
-
cb: (err: any, data?: GetWorkflowCommandOutput) => void
|
|
372
|
+
cb: (err: any, data?: GetWorkflowCommandOutput) => void,
|
|
394
373
|
): void;
|
|
395
374
|
getWorkflowRun(
|
|
396
375
|
args: GetWorkflowRunCommandInput,
|
|
397
|
-
options?: __HttpHandlerOptions
|
|
376
|
+
options?: __HttpHandlerOptions,
|
|
398
377
|
): Promise<GetWorkflowRunCommandOutput>;
|
|
399
378
|
getWorkflowRun(
|
|
400
379
|
args: GetWorkflowRunCommandInput,
|
|
401
|
-
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
|
|
380
|
+
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void,
|
|
402
381
|
): void;
|
|
403
382
|
getWorkflowRun(
|
|
404
383
|
args: GetWorkflowRunCommandInput,
|
|
405
384
|
options: __HttpHandlerOptions,
|
|
406
|
-
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
|
|
385
|
+
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void,
|
|
407
386
|
): void;
|
|
408
387
|
listAccessTokens(): Promise<ListAccessTokensCommandOutput>;
|
|
409
388
|
listAccessTokens(
|
|
410
389
|
args: ListAccessTokensCommandInput,
|
|
411
|
-
options?: __HttpHandlerOptions
|
|
390
|
+
options?: __HttpHandlerOptions,
|
|
412
391
|
): Promise<ListAccessTokensCommandOutput>;
|
|
413
392
|
listAccessTokens(
|
|
414
393
|
args: ListAccessTokensCommandInput,
|
|
415
|
-
cb: (err: any, data?: ListAccessTokensCommandOutput) => void
|
|
394
|
+
cb: (err: any, data?: ListAccessTokensCommandOutput) => void,
|
|
416
395
|
): void;
|
|
417
396
|
listAccessTokens(
|
|
418
397
|
args: ListAccessTokensCommandInput,
|
|
419
398
|
options: __HttpHandlerOptions,
|
|
420
|
-
cb: (err: any, data?: ListAccessTokensCommandOutput) => void
|
|
399
|
+
cb: (err: any, data?: ListAccessTokensCommandOutput) => void,
|
|
421
400
|
): void;
|
|
422
401
|
listDevEnvironments(
|
|
423
402
|
args: ListDevEnvironmentsCommandInput,
|
|
424
|
-
options?: __HttpHandlerOptions
|
|
403
|
+
options?: __HttpHandlerOptions,
|
|
425
404
|
): Promise<ListDevEnvironmentsCommandOutput>;
|
|
426
405
|
listDevEnvironments(
|
|
427
406
|
args: ListDevEnvironmentsCommandInput,
|
|
428
|
-
cb: (err: any, data?: ListDevEnvironmentsCommandOutput) => void
|
|
407
|
+
cb: (err: any, data?: ListDevEnvironmentsCommandOutput) => void,
|
|
429
408
|
): void;
|
|
430
409
|
listDevEnvironments(
|
|
431
410
|
args: ListDevEnvironmentsCommandInput,
|
|
432
411
|
options: __HttpHandlerOptions,
|
|
433
|
-
cb: (err: any, data?: ListDevEnvironmentsCommandOutput) => void
|
|
412
|
+
cb: (err: any, data?: ListDevEnvironmentsCommandOutput) => void,
|
|
434
413
|
): void;
|
|
435
414
|
listDevEnvironmentSessions(
|
|
436
415
|
args: ListDevEnvironmentSessionsCommandInput,
|
|
437
|
-
options?: __HttpHandlerOptions
|
|
416
|
+
options?: __HttpHandlerOptions,
|
|
438
417
|
): Promise<ListDevEnvironmentSessionsCommandOutput>;
|
|
439
418
|
listDevEnvironmentSessions(
|
|
440
419
|
args: ListDevEnvironmentSessionsCommandInput,
|
|
441
|
-
cb: (err: any, data?: ListDevEnvironmentSessionsCommandOutput) => void
|
|
420
|
+
cb: (err: any, data?: ListDevEnvironmentSessionsCommandOutput) => void,
|
|
442
421
|
): void;
|
|
443
422
|
listDevEnvironmentSessions(
|
|
444
423
|
args: ListDevEnvironmentSessionsCommandInput,
|
|
445
424
|
options: __HttpHandlerOptions,
|
|
446
|
-
cb: (err: any, data?: ListDevEnvironmentSessionsCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: ListDevEnvironmentSessionsCommandOutput) => void,
|
|
447
426
|
): void;
|
|
448
427
|
listEventLogs(
|
|
449
428
|
args: ListEventLogsCommandInput,
|
|
450
|
-
options?: __HttpHandlerOptions
|
|
429
|
+
options?: __HttpHandlerOptions,
|
|
451
430
|
): Promise<ListEventLogsCommandOutput>;
|
|
452
431
|
listEventLogs(
|
|
453
432
|
args: ListEventLogsCommandInput,
|
|
454
|
-
cb: (err: any, data?: ListEventLogsCommandOutput) => void
|
|
433
|
+
cb: (err: any, data?: ListEventLogsCommandOutput) => void,
|
|
455
434
|
): void;
|
|
456
435
|
listEventLogs(
|
|
457
436
|
args: ListEventLogsCommandInput,
|
|
458
437
|
options: __HttpHandlerOptions,
|
|
459
|
-
cb: (err: any, data?: ListEventLogsCommandOutput) => void
|
|
438
|
+
cb: (err: any, data?: ListEventLogsCommandOutput) => void,
|
|
460
439
|
): void;
|
|
461
440
|
listProjects(
|
|
462
441
|
args: ListProjectsCommandInput,
|
|
463
|
-
options?: __HttpHandlerOptions
|
|
442
|
+
options?: __HttpHandlerOptions,
|
|
464
443
|
): Promise<ListProjectsCommandOutput>;
|
|
465
444
|
listProjects(
|
|
466
445
|
args: ListProjectsCommandInput,
|
|
467
|
-
cb: (err: any, data?: ListProjectsCommandOutput) => void
|
|
446
|
+
cb: (err: any, data?: ListProjectsCommandOutput) => void,
|
|
468
447
|
): void;
|
|
469
448
|
listProjects(
|
|
470
449
|
args: ListProjectsCommandInput,
|
|
471
450
|
options: __HttpHandlerOptions,
|
|
472
|
-
cb: (err: any, data?: ListProjectsCommandOutput) => void
|
|
451
|
+
cb: (err: any, data?: ListProjectsCommandOutput) => void,
|
|
473
452
|
): void;
|
|
474
453
|
listSourceRepositories(
|
|
475
454
|
args: ListSourceRepositoriesCommandInput,
|
|
476
|
-
options?: __HttpHandlerOptions
|
|
455
|
+
options?: __HttpHandlerOptions,
|
|
477
456
|
): Promise<ListSourceRepositoriesCommandOutput>;
|
|
478
457
|
listSourceRepositories(
|
|
479
458
|
args: ListSourceRepositoriesCommandInput,
|
|
480
|
-
cb: (err: any, data?: ListSourceRepositoriesCommandOutput) => void
|
|
459
|
+
cb: (err: any, data?: ListSourceRepositoriesCommandOutput) => void,
|
|
481
460
|
): void;
|
|
482
461
|
listSourceRepositories(
|
|
483
462
|
args: ListSourceRepositoriesCommandInput,
|
|
484
463
|
options: __HttpHandlerOptions,
|
|
485
|
-
cb: (err: any, data?: ListSourceRepositoriesCommandOutput) => void
|
|
464
|
+
cb: (err: any, data?: ListSourceRepositoriesCommandOutput) => void,
|
|
486
465
|
): void;
|
|
487
466
|
listSourceRepositoryBranches(
|
|
488
467
|
args: ListSourceRepositoryBranchesCommandInput,
|
|
489
|
-
options?: __HttpHandlerOptions
|
|
468
|
+
options?: __HttpHandlerOptions,
|
|
490
469
|
): Promise<ListSourceRepositoryBranchesCommandOutput>;
|
|
491
470
|
listSourceRepositoryBranches(
|
|
492
471
|
args: ListSourceRepositoryBranchesCommandInput,
|
|
493
|
-
cb: (err: any, data?: ListSourceRepositoryBranchesCommandOutput) => void
|
|
472
|
+
cb: (err: any, data?: ListSourceRepositoryBranchesCommandOutput) => void,
|
|
494
473
|
): void;
|
|
495
474
|
listSourceRepositoryBranches(
|
|
496
475
|
args: ListSourceRepositoryBranchesCommandInput,
|
|
497
476
|
options: __HttpHandlerOptions,
|
|
498
|
-
cb: (err: any, data?: ListSourceRepositoryBranchesCommandOutput) => void
|
|
477
|
+
cb: (err: any, data?: ListSourceRepositoryBranchesCommandOutput) => void,
|
|
499
478
|
): void;
|
|
500
479
|
listSpaces(): Promise<ListSpacesCommandOutput>;
|
|
501
480
|
listSpaces(
|
|
502
481
|
args: ListSpacesCommandInput,
|
|
503
|
-
options?: __HttpHandlerOptions
|
|
482
|
+
options?: __HttpHandlerOptions,
|
|
504
483
|
): Promise<ListSpacesCommandOutput>;
|
|
505
484
|
listSpaces(
|
|
506
485
|
args: ListSpacesCommandInput,
|
|
507
|
-
cb: (err: any, data?: ListSpacesCommandOutput) => void
|
|
486
|
+
cb: (err: any, data?: ListSpacesCommandOutput) => void,
|
|
508
487
|
): void;
|
|
509
488
|
listSpaces(
|
|
510
489
|
args: ListSpacesCommandInput,
|
|
511
490
|
options: __HttpHandlerOptions,
|
|
512
|
-
cb: (err: any, data?: ListSpacesCommandOutput) => void
|
|
491
|
+
cb: (err: any, data?: ListSpacesCommandOutput) => void,
|
|
513
492
|
): void;
|
|
514
493
|
listWorkflowRuns(
|
|
515
494
|
args: ListWorkflowRunsCommandInput,
|
|
516
|
-
options?: __HttpHandlerOptions
|
|
495
|
+
options?: __HttpHandlerOptions,
|
|
517
496
|
): Promise<ListWorkflowRunsCommandOutput>;
|
|
518
497
|
listWorkflowRuns(
|
|
519
498
|
args: ListWorkflowRunsCommandInput,
|
|
520
|
-
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
|
|
499
|
+
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void,
|
|
521
500
|
): void;
|
|
522
501
|
listWorkflowRuns(
|
|
523
502
|
args: ListWorkflowRunsCommandInput,
|
|
524
503
|
options: __HttpHandlerOptions,
|
|
525
|
-
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
|
|
504
|
+
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void,
|
|
526
505
|
): void;
|
|
527
506
|
listWorkflows(
|
|
528
507
|
args: ListWorkflowsCommandInput,
|
|
529
|
-
options?: __HttpHandlerOptions
|
|
508
|
+
options?: __HttpHandlerOptions,
|
|
530
509
|
): Promise<ListWorkflowsCommandOutput>;
|
|
531
510
|
listWorkflows(
|
|
532
511
|
args: ListWorkflowsCommandInput,
|
|
533
|
-
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
512
|
+
cb: (err: any, data?: ListWorkflowsCommandOutput) => void,
|
|
534
513
|
): void;
|
|
535
514
|
listWorkflows(
|
|
536
515
|
args: ListWorkflowsCommandInput,
|
|
537
516
|
options: __HttpHandlerOptions,
|
|
538
|
-
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
517
|
+
cb: (err: any, data?: ListWorkflowsCommandOutput) => void,
|
|
539
518
|
): void;
|
|
540
519
|
startDevEnvironment(
|
|
541
520
|
args: StartDevEnvironmentCommandInput,
|
|
542
|
-
options?: __HttpHandlerOptions
|
|
521
|
+
options?: __HttpHandlerOptions,
|
|
543
522
|
): Promise<StartDevEnvironmentCommandOutput>;
|
|
544
523
|
startDevEnvironment(
|
|
545
524
|
args: StartDevEnvironmentCommandInput,
|
|
546
|
-
cb: (err: any, data?: StartDevEnvironmentCommandOutput) => void
|
|
525
|
+
cb: (err: any, data?: StartDevEnvironmentCommandOutput) => void,
|
|
547
526
|
): void;
|
|
548
527
|
startDevEnvironment(
|
|
549
528
|
args: StartDevEnvironmentCommandInput,
|
|
550
529
|
options: __HttpHandlerOptions,
|
|
551
|
-
cb: (err: any, data?: StartDevEnvironmentCommandOutput) => void
|
|
530
|
+
cb: (err: any, data?: StartDevEnvironmentCommandOutput) => void,
|
|
552
531
|
): void;
|
|
553
532
|
startDevEnvironmentSession(
|
|
554
533
|
args: StartDevEnvironmentSessionCommandInput,
|
|
555
|
-
options?: __HttpHandlerOptions
|
|
534
|
+
options?: __HttpHandlerOptions,
|
|
556
535
|
): Promise<StartDevEnvironmentSessionCommandOutput>;
|
|
557
536
|
startDevEnvironmentSession(
|
|
558
537
|
args: StartDevEnvironmentSessionCommandInput,
|
|
559
|
-
cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void
|
|
538
|
+
cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void,
|
|
560
539
|
): void;
|
|
561
540
|
startDevEnvironmentSession(
|
|
562
541
|
args: StartDevEnvironmentSessionCommandInput,
|
|
563
542
|
options: __HttpHandlerOptions,
|
|
564
|
-
cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void
|
|
543
|
+
cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void,
|
|
565
544
|
): void;
|
|
566
545
|
startWorkflowRun(
|
|
567
546
|
args: StartWorkflowRunCommandInput,
|
|
568
|
-
options?: __HttpHandlerOptions
|
|
547
|
+
options?: __HttpHandlerOptions,
|
|
569
548
|
): Promise<StartWorkflowRunCommandOutput>;
|
|
570
549
|
startWorkflowRun(
|
|
571
550
|
args: StartWorkflowRunCommandInput,
|
|
572
|
-
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
|
|
551
|
+
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void,
|
|
573
552
|
): void;
|
|
574
553
|
startWorkflowRun(
|
|
575
554
|
args: StartWorkflowRunCommandInput,
|
|
576
555
|
options: __HttpHandlerOptions,
|
|
577
|
-
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
|
|
556
|
+
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void,
|
|
578
557
|
): void;
|
|
579
558
|
stopDevEnvironment(
|
|
580
559
|
args: StopDevEnvironmentCommandInput,
|
|
581
|
-
options?: __HttpHandlerOptions
|
|
560
|
+
options?: __HttpHandlerOptions,
|
|
582
561
|
): Promise<StopDevEnvironmentCommandOutput>;
|
|
583
562
|
stopDevEnvironment(
|
|
584
563
|
args: StopDevEnvironmentCommandInput,
|
|
585
|
-
cb: (err: any, data?: StopDevEnvironmentCommandOutput) => void
|
|
564
|
+
cb: (err: any, data?: StopDevEnvironmentCommandOutput) => void,
|
|
586
565
|
): void;
|
|
587
566
|
stopDevEnvironment(
|
|
588
567
|
args: StopDevEnvironmentCommandInput,
|
|
589
568
|
options: __HttpHandlerOptions,
|
|
590
|
-
cb: (err: any, data?: StopDevEnvironmentCommandOutput) => void
|
|
569
|
+
cb: (err: any, data?: StopDevEnvironmentCommandOutput) => void,
|
|
591
570
|
): void;
|
|
592
571
|
stopDevEnvironmentSession(
|
|
593
572
|
args: StopDevEnvironmentSessionCommandInput,
|
|
594
|
-
options?: __HttpHandlerOptions
|
|
573
|
+
options?: __HttpHandlerOptions,
|
|
595
574
|
): Promise<StopDevEnvironmentSessionCommandOutput>;
|
|
596
575
|
stopDevEnvironmentSession(
|
|
597
576
|
args: StopDevEnvironmentSessionCommandInput,
|
|
598
|
-
cb: (err: any, data?: StopDevEnvironmentSessionCommandOutput) => void
|
|
577
|
+
cb: (err: any, data?: StopDevEnvironmentSessionCommandOutput) => void,
|
|
599
578
|
): void;
|
|
600
579
|
stopDevEnvironmentSession(
|
|
601
580
|
args: StopDevEnvironmentSessionCommandInput,
|
|
602
581
|
options: __HttpHandlerOptions,
|
|
603
|
-
cb: (err: any, data?: StopDevEnvironmentSessionCommandOutput) => void
|
|
582
|
+
cb: (err: any, data?: StopDevEnvironmentSessionCommandOutput) => void,
|
|
604
583
|
): void;
|
|
605
584
|
updateDevEnvironment(
|
|
606
585
|
args: UpdateDevEnvironmentCommandInput,
|
|
607
|
-
options?: __HttpHandlerOptions
|
|
586
|
+
options?: __HttpHandlerOptions,
|
|
608
587
|
): Promise<UpdateDevEnvironmentCommandOutput>;
|
|
609
588
|
updateDevEnvironment(
|
|
610
589
|
args: UpdateDevEnvironmentCommandInput,
|
|
611
|
-
cb: (err: any, data?: UpdateDevEnvironmentCommandOutput) => void
|
|
590
|
+
cb: (err: any, data?: UpdateDevEnvironmentCommandOutput) => void,
|
|
612
591
|
): void;
|
|
613
592
|
updateDevEnvironment(
|
|
614
593
|
args: UpdateDevEnvironmentCommandInput,
|
|
615
594
|
options: __HttpHandlerOptions,
|
|
616
|
-
cb: (err: any, data?: UpdateDevEnvironmentCommandOutput) => void
|
|
595
|
+
cb: (err: any, data?: UpdateDevEnvironmentCommandOutput) => void,
|
|
617
596
|
): void;
|
|
618
597
|
updateProject(
|
|
619
598
|
args: UpdateProjectCommandInput,
|
|
620
|
-
options?: __HttpHandlerOptions
|
|
599
|
+
options?: __HttpHandlerOptions,
|
|
621
600
|
): Promise<UpdateProjectCommandOutput>;
|
|
622
601
|
updateProject(
|
|
623
602
|
args: UpdateProjectCommandInput,
|
|
624
|
-
cb: (err: any, data?: UpdateProjectCommandOutput) => void
|
|
603
|
+
cb: (err: any, data?: UpdateProjectCommandOutput) => void,
|
|
625
604
|
): void;
|
|
626
605
|
updateProject(
|
|
627
606
|
args: UpdateProjectCommandInput,
|
|
628
607
|
options: __HttpHandlerOptions,
|
|
629
|
-
cb: (err: any, data?: UpdateProjectCommandOutput) => void
|
|
608
|
+
cb: (err: any, data?: UpdateProjectCommandOutput) => void,
|
|
630
609
|
): void;
|
|
631
610
|
updateSpace(
|
|
632
611
|
args: UpdateSpaceCommandInput,
|
|
633
|
-
options?: __HttpHandlerOptions
|
|
612
|
+
options?: __HttpHandlerOptions,
|
|
634
613
|
): Promise<UpdateSpaceCommandOutput>;
|
|
635
614
|
updateSpace(
|
|
636
615
|
args: UpdateSpaceCommandInput,
|
|
637
|
-
cb: (err: any, data?: UpdateSpaceCommandOutput) => void
|
|
616
|
+
cb: (err: any, data?: UpdateSpaceCommandOutput) => void,
|
|
638
617
|
): void;
|
|
639
618
|
updateSpace(
|
|
640
619
|
args: UpdateSpaceCommandInput,
|
|
641
620
|
options: __HttpHandlerOptions,
|
|
642
|
-
cb: (err: any, data?: UpdateSpaceCommandOutput) => void
|
|
621
|
+
cb: (err: any, data?: UpdateSpaceCommandOutput) => void,
|
|
643
622
|
): void;
|
|
644
623
|
verifySession(): Promise<VerifySessionCommandOutput>;
|
|
645
624
|
verifySession(
|
|
646
625
|
args: VerifySessionCommandInput,
|
|
647
|
-
options?: __HttpHandlerOptions
|
|
626
|
+
options?: __HttpHandlerOptions,
|
|
648
627
|
): Promise<VerifySessionCommandOutput>;
|
|
649
628
|
verifySession(
|
|
650
629
|
args: VerifySessionCommandInput,
|
|
651
|
-
cb: (err: any, data?: VerifySessionCommandOutput) => void
|
|
630
|
+
cb: (err: any, data?: VerifySessionCommandOutput) => void,
|
|
652
631
|
): void;
|
|
653
632
|
verifySession(
|
|
654
633
|
args: VerifySessionCommandInput,
|
|
655
634
|
options: __HttpHandlerOptions,
|
|
656
|
-
cb: (err: any, data?: VerifySessionCommandOutput) => void
|
|
635
|
+
cb: (err: any, data?: VerifySessionCommandOutput) => void,
|
|
657
636
|
): void;
|
|
658
637
|
paginateListAccessTokens(
|
|
659
638
|
args?: ListAccessTokensCommandInput,
|
|
660
639
|
paginationConfig?: Pick<
|
|
661
640
|
PaginationConfiguration,
|
|
662
641
|
Exclude<keyof PaginationConfiguration, "client">
|
|
663
|
-
|
|
642
|
+
>,
|
|
664
643
|
): Paginator<ListAccessTokensCommandOutput>;
|
|
665
644
|
paginateListDevEnvironments(
|
|
666
645
|
args: ListDevEnvironmentsCommandInput,
|
|
667
646
|
paginationConfig?: Pick<
|
|
668
647
|
PaginationConfiguration,
|
|
669
648
|
Exclude<keyof PaginationConfiguration, "client">
|
|
670
|
-
|
|
649
|
+
>,
|
|
671
650
|
): Paginator<ListDevEnvironmentsCommandOutput>;
|
|
672
651
|
paginateListDevEnvironmentSessions(
|
|
673
652
|
args: ListDevEnvironmentSessionsCommandInput,
|
|
674
653
|
paginationConfig?: Pick<
|
|
675
654
|
PaginationConfiguration,
|
|
676
655
|
Exclude<keyof PaginationConfiguration, "client">
|
|
677
|
-
|
|
656
|
+
>,
|
|
678
657
|
): Paginator<ListDevEnvironmentSessionsCommandOutput>;
|
|
679
658
|
paginateListEventLogs(
|
|
680
659
|
args: ListEventLogsCommandInput,
|
|
681
660
|
paginationConfig?: Pick<
|
|
682
661
|
PaginationConfiguration,
|
|
683
662
|
Exclude<keyof PaginationConfiguration, "client">
|
|
684
|
-
|
|
663
|
+
>,
|
|
685
664
|
): Paginator<ListEventLogsCommandOutput>;
|
|
686
665
|
paginateListProjects(
|
|
687
666
|
args: ListProjectsCommandInput,
|
|
688
667
|
paginationConfig?: Pick<
|
|
689
668
|
PaginationConfiguration,
|
|
690
669
|
Exclude<keyof PaginationConfiguration, "client">
|
|
691
|
-
|
|
670
|
+
>,
|
|
692
671
|
): Paginator<ListProjectsCommandOutput>;
|
|
693
672
|
paginateListSourceRepositories(
|
|
694
673
|
args: ListSourceRepositoriesCommandInput,
|
|
695
674
|
paginationConfig?: Pick<
|
|
696
675
|
PaginationConfiguration,
|
|
697
676
|
Exclude<keyof PaginationConfiguration, "client">
|
|
698
|
-
|
|
677
|
+
>,
|
|
699
678
|
): Paginator<ListSourceRepositoriesCommandOutput>;
|
|
700
679
|
paginateListSourceRepositoryBranches(
|
|
701
680
|
args: ListSourceRepositoryBranchesCommandInput,
|
|
702
681
|
paginationConfig?: Pick<
|
|
703
682
|
PaginationConfiguration,
|
|
704
683
|
Exclude<keyof PaginationConfiguration, "client">
|
|
705
|
-
|
|
684
|
+
>,
|
|
706
685
|
): Paginator<ListSourceRepositoryBranchesCommandOutput>;
|
|
707
686
|
paginateListSpaces(
|
|
708
687
|
args?: ListSpacesCommandInput,
|
|
709
688
|
paginationConfig?: Pick<
|
|
710
689
|
PaginationConfiguration,
|
|
711
690
|
Exclude<keyof PaginationConfiguration, "client">
|
|
712
|
-
|
|
691
|
+
>,
|
|
713
692
|
): Paginator<ListSpacesCommandOutput>;
|
|
714
693
|
paginateListWorkflowRuns(
|
|
715
694
|
args: ListWorkflowRunsCommandInput,
|
|
716
695
|
paginationConfig?: Pick<
|
|
717
696
|
PaginationConfiguration,
|
|
718
697
|
Exclude<keyof PaginationConfiguration, "client">
|
|
719
|
-
|
|
698
|
+
>,
|
|
720
699
|
): Paginator<ListWorkflowRunsCommandOutput>;
|
|
721
700
|
paginateListWorkflows(
|
|
722
701
|
args: ListWorkflowsCommandInput,
|
|
723
702
|
paginationConfig?: Pick<
|
|
724
703
|
PaginationConfiguration,
|
|
725
704
|
Exclude<keyof PaginationConfiguration, "client">
|
|
726
|
-
|
|
705
|
+
>,
|
|
727
706
|
): Paginator<ListWorkflowsCommandOutput>;
|
|
728
707
|
}
|
|
729
|
-
export declare class CodeCatalyst
|
|
730
|
-
extends CodeCatalystClient
|
|
731
|
-
implements CodeCatalyst {}
|
|
708
|
+
export declare class CodeCatalyst extends CodeCatalystClient implements CodeCatalyst {}
|