aws-sdk-codecatalyst 1.15.0 → 1.17.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codecatalyst/client.rb +7 -2
- data/lib/aws-sdk-codecatalyst/client_api.rb +2 -0
- data/lib/aws-sdk-codecatalyst/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-codecatalyst/types.rb +27 -2
- data/lib/aws-sdk-codecatalyst.rb +1 -1
- data/sig/client.rbs +704 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +839 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,839 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CodeCatalyst
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccessTokenSummary
|
17
|
+
attr_accessor id: ::String
|
18
|
+
attr_accessor name: ::String
|
19
|
+
attr_accessor expires_time: ::Time
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class ConflictException
|
24
|
+
attr_accessor message: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class CreateAccessTokenRequest
|
29
|
+
attr_accessor name: ::String
|
30
|
+
attr_accessor expires_time: ::Time
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class CreateAccessTokenResponse
|
35
|
+
attr_accessor secret: ::String
|
36
|
+
attr_accessor name: ::String
|
37
|
+
attr_accessor expires_time: ::Time
|
38
|
+
attr_accessor access_token_id: ::String
|
39
|
+
SENSITIVE: [:secret]
|
40
|
+
end
|
41
|
+
|
42
|
+
class CreateDevEnvironmentRequest
|
43
|
+
attr_accessor space_name: ::String
|
44
|
+
attr_accessor project_name: ::String
|
45
|
+
attr_accessor repositories: ::Array[Types::RepositoryInput]
|
46
|
+
attr_accessor client_token: ::String
|
47
|
+
attr_accessor alias: ::String
|
48
|
+
attr_accessor ides: ::Array[Types::IdeConfiguration]
|
49
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
50
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
51
|
+
attr_accessor persistent_storage: Types::PersistentStorageConfiguration
|
52
|
+
attr_accessor vpc_connection_name: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class CreateDevEnvironmentResponse
|
57
|
+
attr_accessor space_name: ::String
|
58
|
+
attr_accessor project_name: ::String
|
59
|
+
attr_accessor id: ::String
|
60
|
+
attr_accessor vpc_connection_name: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class CreateProjectRequest
|
65
|
+
attr_accessor space_name: ::String
|
66
|
+
attr_accessor display_name: ::String
|
67
|
+
attr_accessor description: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateProjectResponse
|
72
|
+
attr_accessor space_name: ::String
|
73
|
+
attr_accessor name: ::String
|
74
|
+
attr_accessor display_name: ::String
|
75
|
+
attr_accessor description: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateSourceRepositoryBranchRequest
|
80
|
+
attr_accessor space_name: ::String
|
81
|
+
attr_accessor project_name: ::String
|
82
|
+
attr_accessor source_repository_name: ::String
|
83
|
+
attr_accessor name: ::String
|
84
|
+
attr_accessor head_commit_id: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class CreateSourceRepositoryBranchResponse
|
89
|
+
attr_accessor ref: ::String
|
90
|
+
attr_accessor name: ::String
|
91
|
+
attr_accessor last_updated_time: ::Time
|
92
|
+
attr_accessor head_commit_id: ::String
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class CreateSourceRepositoryRequest
|
97
|
+
attr_accessor space_name: ::String
|
98
|
+
attr_accessor project_name: ::String
|
99
|
+
attr_accessor name: ::String
|
100
|
+
attr_accessor description: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class CreateSourceRepositoryResponse
|
105
|
+
attr_accessor space_name: ::String
|
106
|
+
attr_accessor project_name: ::String
|
107
|
+
attr_accessor name: ::String
|
108
|
+
attr_accessor description: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class DeleteAccessTokenRequest
|
113
|
+
attr_accessor id: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class DeleteAccessTokenResponse < Aws::EmptyStructure
|
118
|
+
end
|
119
|
+
|
120
|
+
class DeleteDevEnvironmentRequest
|
121
|
+
attr_accessor space_name: ::String
|
122
|
+
attr_accessor project_name: ::String
|
123
|
+
attr_accessor id: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class DeleteDevEnvironmentResponse
|
128
|
+
attr_accessor space_name: ::String
|
129
|
+
attr_accessor project_name: ::String
|
130
|
+
attr_accessor id: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class DeleteProjectRequest
|
135
|
+
attr_accessor space_name: ::String
|
136
|
+
attr_accessor name: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class DeleteProjectResponse
|
141
|
+
attr_accessor space_name: ::String
|
142
|
+
attr_accessor name: ::String
|
143
|
+
attr_accessor display_name: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class DeleteSourceRepositoryRequest
|
148
|
+
attr_accessor space_name: ::String
|
149
|
+
attr_accessor project_name: ::String
|
150
|
+
attr_accessor name: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class DeleteSourceRepositoryResponse
|
155
|
+
attr_accessor space_name: ::String
|
156
|
+
attr_accessor project_name: ::String
|
157
|
+
attr_accessor name: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class DeleteSpaceRequest
|
162
|
+
attr_accessor name: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class DeleteSpaceResponse
|
167
|
+
attr_accessor name: ::String
|
168
|
+
attr_accessor display_name: ::String
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class DevEnvironmentAccessDetails
|
173
|
+
attr_accessor stream_url: ::String
|
174
|
+
attr_accessor token_value: ::String
|
175
|
+
SENSITIVE: [:stream_url, :token_value]
|
176
|
+
end
|
177
|
+
|
178
|
+
class DevEnvironmentRepositorySummary
|
179
|
+
attr_accessor repository_name: ::String
|
180
|
+
attr_accessor branch_name: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class DevEnvironmentSessionConfiguration
|
185
|
+
attr_accessor session_type: ("SSM" | "SSH")
|
186
|
+
attr_accessor execute_command_session_configuration: Types::ExecuteCommandSessionConfiguration
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class DevEnvironmentSessionSummary
|
191
|
+
attr_accessor space_name: ::String
|
192
|
+
attr_accessor project_name: ::String
|
193
|
+
attr_accessor dev_environment_id: ::String
|
194
|
+
attr_accessor started_time: ::Time
|
195
|
+
attr_accessor id: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class DevEnvironmentSummary
|
200
|
+
attr_accessor space_name: ::String
|
201
|
+
attr_accessor project_name: ::String
|
202
|
+
attr_accessor id: ::String
|
203
|
+
attr_accessor last_updated_time: ::Time
|
204
|
+
attr_accessor creator_id: ::String
|
205
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
|
206
|
+
attr_accessor status_reason: ::String
|
207
|
+
attr_accessor repositories: ::Array[Types::DevEnvironmentRepositorySummary]
|
208
|
+
attr_accessor alias: ::String
|
209
|
+
attr_accessor ides: ::Array[Types::Ide]
|
210
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
211
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
212
|
+
attr_accessor persistent_storage: Types::PersistentStorage
|
213
|
+
attr_accessor vpc_connection_name: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class EmailAddress
|
218
|
+
attr_accessor email: ::String
|
219
|
+
attr_accessor verified: bool
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class EventLogEntry
|
224
|
+
attr_accessor id: ::String
|
225
|
+
attr_accessor event_name: ::String
|
226
|
+
attr_accessor event_type: ::String
|
227
|
+
attr_accessor event_category: ::String
|
228
|
+
attr_accessor event_source: ::String
|
229
|
+
attr_accessor event_time: ::Time
|
230
|
+
attr_accessor operation_type: ("READONLY" | "MUTATION")
|
231
|
+
attr_accessor user_identity: Types::UserIdentity
|
232
|
+
attr_accessor project_information: Types::ProjectInformation
|
233
|
+
attr_accessor request_id: ::String
|
234
|
+
attr_accessor request_payload: Types::EventPayload
|
235
|
+
attr_accessor response_payload: Types::EventPayload
|
236
|
+
attr_accessor error_code: ::String
|
237
|
+
attr_accessor source_ip_address: ::String
|
238
|
+
attr_accessor user_agent: ::String
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class EventPayload
|
243
|
+
attr_accessor content_type: ::String
|
244
|
+
attr_accessor data: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class ExecuteCommandSessionConfiguration
|
249
|
+
attr_accessor command: ::String
|
250
|
+
attr_accessor arguments: ::Array[::String]
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class Filter
|
255
|
+
attr_accessor key: ::String
|
256
|
+
attr_accessor values: ::Array[::String]
|
257
|
+
attr_accessor comparison_operator: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class GetDevEnvironmentRequest
|
262
|
+
attr_accessor space_name: ::String
|
263
|
+
attr_accessor project_name: ::String
|
264
|
+
attr_accessor id: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class GetDevEnvironmentResponse
|
269
|
+
attr_accessor space_name: ::String
|
270
|
+
attr_accessor project_name: ::String
|
271
|
+
attr_accessor id: ::String
|
272
|
+
attr_accessor last_updated_time: ::Time
|
273
|
+
attr_accessor creator_id: ::String
|
274
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
|
275
|
+
attr_accessor status_reason: ::String
|
276
|
+
attr_accessor repositories: ::Array[Types::DevEnvironmentRepositorySummary]
|
277
|
+
attr_accessor alias: ::String
|
278
|
+
attr_accessor ides: ::Array[Types::Ide]
|
279
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
280
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
281
|
+
attr_accessor persistent_storage: Types::PersistentStorage
|
282
|
+
attr_accessor vpc_connection_name: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class GetProjectRequest
|
287
|
+
attr_accessor space_name: ::String
|
288
|
+
attr_accessor name: ::String
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class GetProjectResponse
|
293
|
+
attr_accessor space_name: ::String
|
294
|
+
attr_accessor name: ::String
|
295
|
+
attr_accessor display_name: ::String
|
296
|
+
attr_accessor description: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class GetSourceRepositoryCloneUrlsRequest
|
301
|
+
attr_accessor space_name: ::String
|
302
|
+
attr_accessor project_name: ::String
|
303
|
+
attr_accessor source_repository_name: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class GetSourceRepositoryCloneUrlsResponse
|
308
|
+
attr_accessor https: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class GetSourceRepositoryRequest
|
313
|
+
attr_accessor space_name: ::String
|
314
|
+
attr_accessor project_name: ::String
|
315
|
+
attr_accessor name: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class GetSourceRepositoryResponse
|
320
|
+
attr_accessor space_name: ::String
|
321
|
+
attr_accessor project_name: ::String
|
322
|
+
attr_accessor name: ::String
|
323
|
+
attr_accessor description: ::String
|
324
|
+
attr_accessor last_updated_time: ::Time
|
325
|
+
attr_accessor created_time: ::Time
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class GetSpaceRequest
|
330
|
+
attr_accessor name: ::String
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class GetSpaceResponse
|
335
|
+
attr_accessor name: ::String
|
336
|
+
attr_accessor region_name: ::String
|
337
|
+
attr_accessor display_name: ::String
|
338
|
+
attr_accessor description: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class GetSubscriptionRequest
|
343
|
+
attr_accessor space_name: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class GetSubscriptionResponse
|
348
|
+
attr_accessor subscription_type: ::String
|
349
|
+
attr_accessor aws_account_name: ::String
|
350
|
+
attr_accessor pending_subscription_type: ::String
|
351
|
+
attr_accessor pending_subscription_start_time: ::Time
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class GetUserDetailsRequest
|
356
|
+
attr_accessor id: ::String
|
357
|
+
attr_accessor user_name: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class GetUserDetailsResponse
|
362
|
+
attr_accessor user_id: ::String
|
363
|
+
attr_accessor user_name: ::String
|
364
|
+
attr_accessor display_name: ::String
|
365
|
+
attr_accessor primary_email: Types::EmailAddress
|
366
|
+
attr_accessor version: ::String
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class GetWorkflowRequest
|
371
|
+
attr_accessor space_name: ::String
|
372
|
+
attr_accessor id: ::String
|
373
|
+
attr_accessor project_name: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class GetWorkflowResponse
|
378
|
+
attr_accessor space_name: ::String
|
379
|
+
attr_accessor project_name: ::String
|
380
|
+
attr_accessor id: ::String
|
381
|
+
attr_accessor name: ::String
|
382
|
+
attr_accessor source_repository_name: ::String
|
383
|
+
attr_accessor source_branch_name: ::String
|
384
|
+
attr_accessor definition: Types::WorkflowDefinition
|
385
|
+
attr_accessor created_time: ::Time
|
386
|
+
attr_accessor last_updated_time: ::Time
|
387
|
+
attr_accessor run_mode: ("QUEUED" | "PARALLEL" | "SUPERSEDED")
|
388
|
+
attr_accessor status: ("INVALID" | "ACTIVE")
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class GetWorkflowRunRequest
|
393
|
+
attr_accessor space_name: ::String
|
394
|
+
attr_accessor id: ::String
|
395
|
+
attr_accessor project_name: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class GetWorkflowRunResponse
|
400
|
+
attr_accessor space_name: ::String
|
401
|
+
attr_accessor project_name: ::String
|
402
|
+
attr_accessor id: ::String
|
403
|
+
attr_accessor workflow_id: ::String
|
404
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "STOPPED" | "SUPERSEDED" | "CANCELLED" | "NOT_RUN" | "VALIDATING" | "PROVISIONING" | "IN_PROGRESS" | "STOPPING" | "ABANDONED")
|
405
|
+
attr_accessor status_reasons: ::Array[Types::WorkflowRunStatusReason]
|
406
|
+
attr_accessor start_time: ::Time
|
407
|
+
attr_accessor end_time: ::Time
|
408
|
+
attr_accessor last_updated_time: ::Time
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class Ide
|
413
|
+
attr_accessor runtime: ::String
|
414
|
+
attr_accessor name: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class IdeConfiguration
|
419
|
+
attr_accessor runtime: ::String
|
420
|
+
attr_accessor name: ::String
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class ListAccessTokensRequest
|
425
|
+
attr_accessor max_results: ::Integer
|
426
|
+
attr_accessor next_token: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class ListAccessTokensResponse
|
431
|
+
attr_accessor items: ::Array[Types::AccessTokenSummary]
|
432
|
+
attr_accessor next_token: ::String
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class ListDevEnvironmentSessionsRequest
|
437
|
+
attr_accessor space_name: ::String
|
438
|
+
attr_accessor project_name: ::String
|
439
|
+
attr_accessor dev_environment_id: ::String
|
440
|
+
attr_accessor next_token: ::String
|
441
|
+
attr_accessor max_results: ::Integer
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class ListDevEnvironmentSessionsResponse
|
446
|
+
attr_accessor items: ::Array[Types::DevEnvironmentSessionSummary]
|
447
|
+
attr_accessor next_token: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class ListDevEnvironmentsRequest
|
452
|
+
attr_accessor space_name: ::String
|
453
|
+
attr_accessor project_name: ::String
|
454
|
+
attr_accessor filters: ::Array[Types::Filter]
|
455
|
+
attr_accessor next_token: ::String
|
456
|
+
attr_accessor max_results: ::Integer
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class ListDevEnvironmentsResponse
|
461
|
+
attr_accessor items: ::Array[Types::DevEnvironmentSummary]
|
462
|
+
attr_accessor next_token: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class ListEventLogsRequest
|
467
|
+
attr_accessor space_name: ::String
|
468
|
+
attr_accessor start_time: ::Time
|
469
|
+
attr_accessor end_time: ::Time
|
470
|
+
attr_accessor event_name: ::String
|
471
|
+
attr_accessor next_token: ::String
|
472
|
+
attr_accessor max_results: ::Integer
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class ListEventLogsResponse
|
477
|
+
attr_accessor next_token: ::String
|
478
|
+
attr_accessor items: ::Array[Types::EventLogEntry]
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class ListProjectsRequest
|
483
|
+
attr_accessor space_name: ::String
|
484
|
+
attr_accessor next_token: ::String
|
485
|
+
attr_accessor max_results: ::Integer
|
486
|
+
attr_accessor filters: ::Array[Types::ProjectListFilter]
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class ListProjectsResponse
|
491
|
+
attr_accessor next_token: ::String
|
492
|
+
attr_accessor items: ::Array[Types::ProjectSummary]
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class ListSourceRepositoriesItem
|
497
|
+
attr_accessor id: ::String
|
498
|
+
attr_accessor name: ::String
|
499
|
+
attr_accessor description: ::String
|
500
|
+
attr_accessor last_updated_time: ::Time
|
501
|
+
attr_accessor created_time: ::Time
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ListSourceRepositoriesRequest
|
506
|
+
attr_accessor space_name: ::String
|
507
|
+
attr_accessor project_name: ::String
|
508
|
+
attr_accessor next_token: ::String
|
509
|
+
attr_accessor max_results: ::Integer
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class ListSourceRepositoriesResponse
|
514
|
+
attr_accessor items: ::Array[Types::ListSourceRepositoriesItem]
|
515
|
+
attr_accessor next_token: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class ListSourceRepositoryBranchesItem
|
520
|
+
attr_accessor ref: ::String
|
521
|
+
attr_accessor name: ::String
|
522
|
+
attr_accessor last_updated_time: ::Time
|
523
|
+
attr_accessor head_commit_id: ::String
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class ListSourceRepositoryBranchesRequest
|
528
|
+
attr_accessor space_name: ::String
|
529
|
+
attr_accessor project_name: ::String
|
530
|
+
attr_accessor source_repository_name: ::String
|
531
|
+
attr_accessor next_token: ::String
|
532
|
+
attr_accessor max_results: ::Integer
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class ListSourceRepositoryBranchesResponse
|
537
|
+
attr_accessor next_token: ::String
|
538
|
+
attr_accessor items: ::Array[Types::ListSourceRepositoryBranchesItem]
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class ListSpacesRequest
|
543
|
+
attr_accessor next_token: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class ListSpacesResponse
|
548
|
+
attr_accessor next_token: ::String
|
549
|
+
attr_accessor items: ::Array[Types::SpaceSummary]
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class ListWorkflowRunsRequest
|
554
|
+
attr_accessor space_name: ::String
|
555
|
+
attr_accessor workflow_id: ::String
|
556
|
+
attr_accessor project_name: ::String
|
557
|
+
attr_accessor next_token: ::String
|
558
|
+
attr_accessor max_results: ::Integer
|
559
|
+
attr_accessor sort_by: ::Array[Types::WorkflowRunSortCriteria]
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class ListWorkflowRunsResponse
|
564
|
+
attr_accessor next_token: ::String
|
565
|
+
attr_accessor items: ::Array[Types::WorkflowRunSummary]
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class ListWorkflowsRequest
|
570
|
+
attr_accessor space_name: ::String
|
571
|
+
attr_accessor project_name: ::String
|
572
|
+
attr_accessor next_token: ::String
|
573
|
+
attr_accessor max_results: ::Integer
|
574
|
+
attr_accessor sort_by: ::Array[Types::WorkflowSortCriteria]
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class ListWorkflowsResponse
|
579
|
+
attr_accessor next_token: ::String
|
580
|
+
attr_accessor items: ::Array[Types::WorkflowSummary]
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class PersistentStorage
|
585
|
+
attr_accessor size_in_gi_b: ::Integer
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class PersistentStorageConfiguration
|
590
|
+
attr_accessor size_in_gi_b: ::Integer
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class ProjectInformation
|
595
|
+
attr_accessor name: ::String
|
596
|
+
attr_accessor project_id: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ProjectListFilter
|
601
|
+
attr_accessor key: ("hasAccessTo" | "name")
|
602
|
+
attr_accessor values: ::Array[::String]
|
603
|
+
attr_accessor comparison_operator: ("EQ" | "GT" | "GE" | "LT" | "LE" | "BEGINS_WITH")
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class ProjectSummary
|
608
|
+
attr_accessor name: ::String
|
609
|
+
attr_accessor display_name: ::String
|
610
|
+
attr_accessor description: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class RepositoryInput
|
615
|
+
attr_accessor repository_name: ::String
|
616
|
+
attr_accessor branch_name: ::String
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class ResourceNotFoundException
|
621
|
+
attr_accessor message: ::String
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class ServiceQuotaExceededException
|
626
|
+
attr_accessor message: ::String
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class SpaceSummary
|
631
|
+
attr_accessor name: ::String
|
632
|
+
attr_accessor region_name: ::String
|
633
|
+
attr_accessor display_name: ::String
|
634
|
+
attr_accessor description: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class StartDevEnvironmentRequest
|
639
|
+
attr_accessor space_name: ::String
|
640
|
+
attr_accessor project_name: ::String
|
641
|
+
attr_accessor id: ::String
|
642
|
+
attr_accessor ides: ::Array[Types::IdeConfiguration]
|
643
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
644
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class StartDevEnvironmentResponse
|
649
|
+
attr_accessor space_name: ::String
|
650
|
+
attr_accessor project_name: ::String
|
651
|
+
attr_accessor id: ::String
|
652
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class StartDevEnvironmentSessionRequest
|
657
|
+
attr_accessor space_name: ::String
|
658
|
+
attr_accessor project_name: ::String
|
659
|
+
attr_accessor id: ::String
|
660
|
+
attr_accessor session_configuration: Types::DevEnvironmentSessionConfiguration
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class StartDevEnvironmentSessionResponse
|
665
|
+
attr_accessor access_details: Types::DevEnvironmentAccessDetails
|
666
|
+
attr_accessor session_id: ::String
|
667
|
+
attr_accessor space_name: ::String
|
668
|
+
attr_accessor project_name: ::String
|
669
|
+
attr_accessor id: ::String
|
670
|
+
SENSITIVE: [:access_details]
|
671
|
+
end
|
672
|
+
|
673
|
+
class StartWorkflowRunRequest
|
674
|
+
attr_accessor space_name: ::String
|
675
|
+
attr_accessor project_name: ::String
|
676
|
+
attr_accessor workflow_id: ::String
|
677
|
+
attr_accessor client_token: ::String
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class StartWorkflowRunResponse
|
682
|
+
attr_accessor space_name: ::String
|
683
|
+
attr_accessor project_name: ::String
|
684
|
+
attr_accessor id: ::String
|
685
|
+
attr_accessor workflow_id: ::String
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class StopDevEnvironmentRequest
|
690
|
+
attr_accessor space_name: ::String
|
691
|
+
attr_accessor project_name: ::String
|
692
|
+
attr_accessor id: ::String
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class StopDevEnvironmentResponse
|
697
|
+
attr_accessor space_name: ::String
|
698
|
+
attr_accessor project_name: ::String
|
699
|
+
attr_accessor id: ::String
|
700
|
+
attr_accessor status: ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class StopDevEnvironmentSessionRequest
|
705
|
+
attr_accessor space_name: ::String
|
706
|
+
attr_accessor project_name: ::String
|
707
|
+
attr_accessor id: ::String
|
708
|
+
attr_accessor session_id: ::String
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class StopDevEnvironmentSessionResponse
|
713
|
+
attr_accessor space_name: ::String
|
714
|
+
attr_accessor project_name: ::String
|
715
|
+
attr_accessor id: ::String
|
716
|
+
attr_accessor session_id: ::String
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class ThrottlingException
|
721
|
+
attr_accessor message: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class UpdateDevEnvironmentRequest
|
726
|
+
attr_accessor space_name: ::String
|
727
|
+
attr_accessor project_name: ::String
|
728
|
+
attr_accessor id: ::String
|
729
|
+
attr_accessor alias: ::String
|
730
|
+
attr_accessor ides: ::Array[Types::IdeConfiguration]
|
731
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
732
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
733
|
+
attr_accessor client_token: ::String
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class UpdateDevEnvironmentResponse
|
738
|
+
attr_accessor id: ::String
|
739
|
+
attr_accessor space_name: ::String
|
740
|
+
attr_accessor project_name: ::String
|
741
|
+
attr_accessor alias: ::String
|
742
|
+
attr_accessor ides: ::Array[Types::IdeConfiguration]
|
743
|
+
attr_accessor instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
|
744
|
+
attr_accessor inactivity_timeout_minutes: ::Integer
|
745
|
+
attr_accessor client_token: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class UpdateProjectRequest
|
750
|
+
attr_accessor space_name: ::String
|
751
|
+
attr_accessor name: ::String
|
752
|
+
attr_accessor description: ::String
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class UpdateProjectResponse
|
757
|
+
attr_accessor space_name: ::String
|
758
|
+
attr_accessor name: ::String
|
759
|
+
attr_accessor display_name: ::String
|
760
|
+
attr_accessor description: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class UpdateSpaceRequest
|
765
|
+
attr_accessor name: ::String
|
766
|
+
attr_accessor description: ::String
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class UpdateSpaceResponse
|
771
|
+
attr_accessor name: ::String
|
772
|
+
attr_accessor display_name: ::String
|
773
|
+
attr_accessor description: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class UserIdentity
|
778
|
+
attr_accessor user_type: ("USER" | "AWS_ACCOUNT" | "UNKNOWN")
|
779
|
+
attr_accessor principal_id: ::String
|
780
|
+
attr_accessor user_name: ::String
|
781
|
+
attr_accessor aws_account_id: ::String
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class ValidationException
|
786
|
+
attr_accessor message: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class VerifySessionResponse
|
791
|
+
attr_accessor identity: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class WorkflowDefinition
|
796
|
+
attr_accessor path: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class WorkflowDefinitionSummary
|
801
|
+
attr_accessor path: ::String
|
802
|
+
SENSITIVE: []
|
803
|
+
end
|
804
|
+
|
805
|
+
class WorkflowRunSortCriteria < Aws::EmptyStructure
|
806
|
+
end
|
807
|
+
|
808
|
+
class WorkflowRunStatusReason < Aws::EmptyStructure
|
809
|
+
end
|
810
|
+
|
811
|
+
class WorkflowRunSummary
|
812
|
+
attr_accessor id: ::String
|
813
|
+
attr_accessor workflow_id: ::String
|
814
|
+
attr_accessor workflow_name: ::String
|
815
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "STOPPED" | "SUPERSEDED" | "CANCELLED" | "NOT_RUN" | "VALIDATING" | "PROVISIONING" | "IN_PROGRESS" | "STOPPING" | "ABANDONED")
|
816
|
+
attr_accessor status_reasons: ::Array[Types::WorkflowRunStatusReason]
|
817
|
+
attr_accessor start_time: ::Time
|
818
|
+
attr_accessor end_time: ::Time
|
819
|
+
attr_accessor last_updated_time: ::Time
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class WorkflowSortCriteria < Aws::EmptyStructure
|
824
|
+
end
|
825
|
+
|
826
|
+
class WorkflowSummary
|
827
|
+
attr_accessor id: ::String
|
828
|
+
attr_accessor name: ::String
|
829
|
+
attr_accessor source_repository_name: ::String
|
830
|
+
attr_accessor source_branch_name: ::String
|
831
|
+
attr_accessor definition: Types::WorkflowDefinitionSummary
|
832
|
+
attr_accessor created_time: ::Time
|
833
|
+
attr_accessor last_updated_time: ::Time
|
834
|
+
attr_accessor run_mode: ("QUEUED" | "PARALLEL" | "SUPERSEDED")
|
835
|
+
attr_accessor status: ("INVALID" | "ACTIVE")
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
end
|
839
|
+
end
|