aws-sdk-codecatalyst 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,702 @@
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
9
+ module CodeCatalyst
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateAccessTokenResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessTokenResponse]
77
+ def secret: () -> ::String
78
+ def name: () -> ::String
79
+ def expires_time: () -> ::Time
80
+ def access_token_id: () -> ::String
81
+ end
82
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#create_access_token-instance_method
83
+ def create_access_token: (
84
+ name: ::String,
85
+ ?expires_time: ::Time
86
+ ) -> _CreateAccessTokenResponseSuccess
87
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessTokenResponseSuccess
88
+
89
+ interface _CreateDevEnvironmentResponseSuccess
90
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDevEnvironmentResponse]
91
+ def space_name: () -> ::String
92
+ def project_name: () -> ::String
93
+ def id: () -> ::String
94
+ def vpc_connection_name: () -> ::String
95
+ end
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#create_dev_environment-instance_method
97
+ def create_dev_environment: (
98
+ space_name: ::String,
99
+ project_name: ::String,
100
+ ?repositories: Array[
101
+ {
102
+ repository_name: ::String,
103
+ branch_name: ::String?
104
+ },
105
+ ],
106
+ ?client_token: ::String,
107
+ ?alias: ::String,
108
+ ?ides: Array[
109
+ {
110
+ runtime: ::String?,
111
+ name: ::String?
112
+ },
113
+ ],
114
+ instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge"),
115
+ ?inactivity_timeout_minutes: ::Integer,
116
+ persistent_storage: {
117
+ size_in_gi_b: ::Integer
118
+ },
119
+ ?vpc_connection_name: ::String
120
+ ) -> _CreateDevEnvironmentResponseSuccess
121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDevEnvironmentResponseSuccess
122
+
123
+ interface _CreateProjectResponseSuccess
124
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectResponse]
125
+ def space_name: () -> ::String
126
+ def name: () -> ::String
127
+ def display_name: () -> ::String
128
+ def description: () -> ::String
129
+ end
130
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#create_project-instance_method
131
+ def create_project: (
132
+ space_name: ::String,
133
+ display_name: ::String,
134
+ ?description: ::String
135
+ ) -> _CreateProjectResponseSuccess
136
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
137
+
138
+ interface _CreateSourceRepositoryResponseSuccess
139
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSourceRepositoryResponse]
140
+ def space_name: () -> ::String
141
+ def project_name: () -> ::String
142
+ def name: () -> ::String
143
+ def description: () -> ::String
144
+ end
145
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#create_source_repository-instance_method
146
+ def create_source_repository: (
147
+ space_name: ::String,
148
+ project_name: ::String,
149
+ name: ::String,
150
+ ?description: ::String
151
+ ) -> _CreateSourceRepositoryResponseSuccess
152
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSourceRepositoryResponseSuccess
153
+
154
+ interface _CreateSourceRepositoryBranchResponseSuccess
155
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSourceRepositoryBranchResponse]
156
+ def ref: () -> ::String
157
+ def name: () -> ::String
158
+ def last_updated_time: () -> ::Time
159
+ def head_commit_id: () -> ::String
160
+ end
161
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#create_source_repository_branch-instance_method
162
+ def create_source_repository_branch: (
163
+ space_name: ::String,
164
+ project_name: ::String,
165
+ source_repository_name: ::String,
166
+ name: ::String,
167
+ ?head_commit_id: ::String
168
+ ) -> _CreateSourceRepositoryBranchResponseSuccess
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSourceRepositoryBranchResponseSuccess
170
+
171
+ interface _DeleteAccessTokenResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccessTokenResponse]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#delete_access_token-instance_method
175
+ def delete_access_token: (
176
+ id: ::String
177
+ ) -> _DeleteAccessTokenResponseSuccess
178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccessTokenResponseSuccess
179
+
180
+ interface _DeleteDevEnvironmentResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDevEnvironmentResponse]
182
+ def space_name: () -> ::String
183
+ def project_name: () -> ::String
184
+ def id: () -> ::String
185
+ end
186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#delete_dev_environment-instance_method
187
+ def delete_dev_environment: (
188
+ space_name: ::String,
189
+ project_name: ::String,
190
+ id: ::String
191
+ ) -> _DeleteDevEnvironmentResponseSuccess
192
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevEnvironmentResponseSuccess
193
+
194
+ interface _DeleteProjectResponseSuccess
195
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectResponse]
196
+ def space_name: () -> ::String
197
+ def name: () -> ::String
198
+ def display_name: () -> ::String
199
+ end
200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#delete_project-instance_method
201
+ def delete_project: (
202
+ space_name: ::String,
203
+ name: ::String
204
+ ) -> _DeleteProjectResponseSuccess
205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
206
+
207
+ interface _DeleteSourceRepositoryResponseSuccess
208
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSourceRepositoryResponse]
209
+ def space_name: () -> ::String
210
+ def project_name: () -> ::String
211
+ def name: () -> ::String
212
+ end
213
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#delete_source_repository-instance_method
214
+ def delete_source_repository: (
215
+ space_name: ::String,
216
+ project_name: ::String,
217
+ name: ::String
218
+ ) -> _DeleteSourceRepositoryResponseSuccess
219
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSourceRepositoryResponseSuccess
220
+
221
+ interface _DeleteSpaceResponseSuccess
222
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSpaceResponse]
223
+ def name: () -> ::String
224
+ def display_name: () -> ::String
225
+ end
226
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#delete_space-instance_method
227
+ def delete_space: (
228
+ name: ::String
229
+ ) -> _DeleteSpaceResponseSuccess
230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSpaceResponseSuccess
231
+
232
+ interface _GetDevEnvironmentResponseSuccess
233
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDevEnvironmentResponse]
234
+ def space_name: () -> ::String
235
+ def project_name: () -> ::String
236
+ def id: () -> ::String
237
+ def last_updated_time: () -> ::Time
238
+ def creator_id: () -> ::String
239
+ def status: () -> ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
240
+ def status_reason: () -> ::String
241
+ def repositories: () -> ::Array[Types::DevEnvironmentRepositorySummary]
242
+ def alias: () -> ::String
243
+ def ides: () -> ::Array[Types::Ide]
244
+ def instance_type: () -> ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
245
+ def inactivity_timeout_minutes: () -> ::Integer
246
+ def persistent_storage: () -> Types::PersistentStorage
247
+ def vpc_connection_name: () -> ::String
248
+ end
249
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_dev_environment-instance_method
250
+ def get_dev_environment: (
251
+ space_name: ::String,
252
+ project_name: ::String,
253
+ id: ::String
254
+ ) -> _GetDevEnvironmentResponseSuccess
255
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevEnvironmentResponseSuccess
256
+
257
+ interface _GetProjectResponseSuccess
258
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectResponse]
259
+ def space_name: () -> ::String
260
+ def name: () -> ::String
261
+ def display_name: () -> ::String
262
+ def description: () -> ::String
263
+ end
264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_project-instance_method
265
+ def get_project: (
266
+ space_name: ::String,
267
+ name: ::String
268
+ ) -> _GetProjectResponseSuccess
269
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
270
+
271
+ interface _GetSourceRepositoryResponseSuccess
272
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSourceRepositoryResponse]
273
+ def space_name: () -> ::String
274
+ def project_name: () -> ::String
275
+ def name: () -> ::String
276
+ def description: () -> ::String
277
+ def last_updated_time: () -> ::Time
278
+ def created_time: () -> ::Time
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_source_repository-instance_method
281
+ def get_source_repository: (
282
+ space_name: ::String,
283
+ project_name: ::String,
284
+ name: ::String
285
+ ) -> _GetSourceRepositoryResponseSuccess
286
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSourceRepositoryResponseSuccess
287
+
288
+ interface _GetSourceRepositoryCloneUrlsResponseSuccess
289
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSourceRepositoryCloneUrlsResponse]
290
+ def https: () -> ::String
291
+ end
292
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_source_repository_clone_urls-instance_method
293
+ def get_source_repository_clone_urls: (
294
+ space_name: ::String,
295
+ project_name: ::String,
296
+ source_repository_name: ::String
297
+ ) -> _GetSourceRepositoryCloneUrlsResponseSuccess
298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSourceRepositoryCloneUrlsResponseSuccess
299
+
300
+ interface _GetSpaceResponseSuccess
301
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSpaceResponse]
302
+ def name: () -> ::String
303
+ def region_name: () -> ::String
304
+ def display_name: () -> ::String
305
+ def description: () -> ::String
306
+ end
307
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_space-instance_method
308
+ def get_space: (
309
+ name: ::String
310
+ ) -> _GetSpaceResponseSuccess
311
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpaceResponseSuccess
312
+
313
+ interface _GetSubscriptionResponseSuccess
314
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionResponse]
315
+ def subscription_type: () -> ::String
316
+ def aws_account_name: () -> ::String
317
+ end
318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_subscription-instance_method
319
+ def get_subscription: (
320
+ space_name: ::String
321
+ ) -> _GetSubscriptionResponseSuccess
322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionResponseSuccess
323
+
324
+ interface _GetUserDetailsResponseSuccess
325
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserDetailsResponse]
326
+ def user_id: () -> ::String
327
+ def user_name: () -> ::String
328
+ def display_name: () -> ::String
329
+ def primary_email: () -> Types::EmailAddress
330
+ def version: () -> ::String
331
+ end
332
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_user_details-instance_method
333
+ def get_user_details: (
334
+ ?id: ::String,
335
+ ?user_name: ::String
336
+ ) -> _GetUserDetailsResponseSuccess
337
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserDetailsResponseSuccess
338
+
339
+ interface _GetWorkflowResponseSuccess
340
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowResponse]
341
+ def space_name: () -> ::String
342
+ def project_name: () -> ::String
343
+ def id: () -> ::String
344
+ def name: () -> ::String
345
+ def source_repository_name: () -> ::String
346
+ def source_branch_name: () -> ::String
347
+ def definition: () -> Types::WorkflowDefinition
348
+ def created_time: () -> ::Time
349
+ def last_updated_time: () -> ::Time
350
+ def run_mode: () -> ("QUEUED" | "PARALLEL" | "SUPERSEDED")
351
+ def status: () -> ("INVALID" | "ACTIVE")
352
+ end
353
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_workflow-instance_method
354
+ def get_workflow: (
355
+ space_name: ::String,
356
+ id: ::String,
357
+ project_name: ::String
358
+ ) -> _GetWorkflowResponseSuccess
359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
360
+
361
+ interface _GetWorkflowRunResponseSuccess
362
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowRunResponse]
363
+ def space_name: () -> ::String
364
+ def project_name: () -> ::String
365
+ def id: () -> ::String
366
+ def workflow_id: () -> ::String
367
+ def status: () -> ("SUCCEEDED" | "FAILED" | "STOPPED" | "SUPERSEDED" | "CANCELLED" | "NOT_RUN" | "VALIDATING" | "PROVISIONING" | "IN_PROGRESS" | "STOPPING" | "ABANDONED")
368
+ def status_reasons: () -> ::Array[Types::WorkflowRunStatusReason]
369
+ def start_time: () -> ::Time
370
+ def end_time: () -> ::Time
371
+ def last_updated_time: () -> ::Time
372
+ end
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_workflow_run-instance_method
374
+ def get_workflow_run: (
375
+ space_name: ::String,
376
+ id: ::String,
377
+ project_name: ::String
378
+ ) -> _GetWorkflowRunResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowRunResponseSuccess
380
+
381
+ interface _ListAccessTokensResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessTokensResponse]
383
+ def items: () -> ::Array[Types::AccessTokenSummary]
384
+ def next_token: () -> ::String
385
+ end
386
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_access_tokens-instance_method
387
+ def list_access_tokens: (
388
+ ?max_results: ::Integer,
389
+ ?next_token: ::String
390
+ ) -> _ListAccessTokensResponseSuccess
391
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessTokensResponseSuccess
392
+
393
+ interface _ListDevEnvironmentSessionsResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevEnvironmentSessionsResponse]
395
+ def items: () -> ::Array[Types::DevEnvironmentSessionSummary]
396
+ def next_token: () -> ::String
397
+ end
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_dev_environment_sessions-instance_method
399
+ def list_dev_environment_sessions: (
400
+ space_name: ::String,
401
+ project_name: ::String,
402
+ dev_environment_id: ::String,
403
+ ?next_token: ::String,
404
+ ?max_results: ::Integer
405
+ ) -> _ListDevEnvironmentSessionsResponseSuccess
406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevEnvironmentSessionsResponseSuccess
407
+
408
+ interface _ListDevEnvironmentsResponseSuccess
409
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevEnvironmentsResponse]
410
+ def items: () -> ::Array[Types::DevEnvironmentSummary]
411
+ def next_token: () -> ::String
412
+ end
413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_dev_environments-instance_method
414
+ def list_dev_environments: (
415
+ space_name: ::String,
416
+ ?project_name: ::String,
417
+ ?filters: Array[
418
+ {
419
+ key: ::String,
420
+ values: Array[::String],
421
+ comparison_operator: ::String?
422
+ },
423
+ ],
424
+ ?next_token: ::String,
425
+ ?max_results: ::Integer
426
+ ) -> _ListDevEnvironmentsResponseSuccess
427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevEnvironmentsResponseSuccess
428
+
429
+ interface _ListEventLogsResponseSuccess
430
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventLogsResponse]
431
+ def next_token: () -> ::String
432
+ def items: () -> ::Array[Types::EventLogEntry]
433
+ end
434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_event_logs-instance_method
435
+ def list_event_logs: (
436
+ space_name: ::String,
437
+ start_time: ::Time,
438
+ end_time: ::Time,
439
+ ?event_name: ::String,
440
+ ?next_token: ::String,
441
+ ?max_results: ::Integer
442
+ ) -> _ListEventLogsResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventLogsResponseSuccess
444
+
445
+ interface _ListProjectsResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResponse]
447
+ def next_token: () -> ::String
448
+ def items: () -> ::Array[Types::ProjectSummary]
449
+ end
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_projects-instance_method
451
+ def list_projects: (
452
+ space_name: ::String,
453
+ ?next_token: ::String,
454
+ ?max_results: ::Integer,
455
+ ?filters: Array[
456
+ {
457
+ key: ("hasAccessTo" | "name"),
458
+ values: Array[::String],
459
+ comparison_operator: ("EQ" | "GT" | "GE" | "LT" | "LE" | "BEGINS_WITH")?
460
+ },
461
+ ]
462
+ ) -> _ListProjectsResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
464
+
465
+ interface _ListSourceRepositoriesResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceRepositoriesResponse]
467
+ def items: () -> ::Array[Types::ListSourceRepositoriesItem]
468
+ def next_token: () -> ::String
469
+ end
470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_source_repositories-instance_method
471
+ def list_source_repositories: (
472
+ space_name: ::String,
473
+ project_name: ::String,
474
+ ?next_token: ::String,
475
+ ?max_results: ::Integer
476
+ ) -> _ListSourceRepositoriesResponseSuccess
477
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceRepositoriesResponseSuccess
478
+
479
+ interface _ListSourceRepositoryBranchesResponseSuccess
480
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceRepositoryBranchesResponse]
481
+ def next_token: () -> ::String
482
+ def items: () -> ::Array[Types::ListSourceRepositoryBranchesItem]
483
+ end
484
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_source_repository_branches-instance_method
485
+ def list_source_repository_branches: (
486
+ space_name: ::String,
487
+ project_name: ::String,
488
+ source_repository_name: ::String,
489
+ ?next_token: ::String,
490
+ ?max_results: ::Integer
491
+ ) -> _ListSourceRepositoryBranchesResponseSuccess
492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceRepositoryBranchesResponseSuccess
493
+
494
+ interface _ListSpacesResponseSuccess
495
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSpacesResponse]
496
+ def next_token: () -> ::String
497
+ def items: () -> ::Array[Types::SpaceSummary]
498
+ end
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_spaces-instance_method
500
+ def list_spaces: (
501
+ ?next_token: ::String
502
+ ) -> _ListSpacesResponseSuccess
503
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpacesResponseSuccess
504
+
505
+ interface _ListWorkflowRunsResponseSuccess
506
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowRunsResponse]
507
+ def next_token: () -> ::String
508
+ def items: () -> ::Array[Types::WorkflowRunSummary]
509
+ end
510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_workflow_runs-instance_method
511
+ def list_workflow_runs: (
512
+ space_name: ::String,
513
+ ?workflow_id: ::String,
514
+ project_name: ::String,
515
+ ?next_token: ::String,
516
+ ?max_results: ::Integer,
517
+ ?sort_by: Array[
518
+ {
519
+ },
520
+ ]
521
+ ) -> _ListWorkflowRunsResponseSuccess
522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowRunsResponseSuccess
523
+
524
+ interface _ListWorkflowsResponseSuccess
525
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
526
+ def next_token: () -> ::String
527
+ def items: () -> ::Array[Types::WorkflowSummary]
528
+ end
529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_workflows-instance_method
530
+ def list_workflows: (
531
+ space_name: ::String,
532
+ project_name: ::String,
533
+ ?next_token: ::String,
534
+ ?max_results: ::Integer,
535
+ ?sort_by: Array[
536
+ {
537
+ },
538
+ ]
539
+ ) -> _ListWorkflowsResponseSuccess
540
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
541
+
542
+ interface _StartDevEnvironmentResponseSuccess
543
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDevEnvironmentResponse]
544
+ def space_name: () -> ::String
545
+ def project_name: () -> ::String
546
+ def id: () -> ::String
547
+ def status: () -> ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
548
+ end
549
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_dev_environment-instance_method
550
+ def start_dev_environment: (
551
+ space_name: ::String,
552
+ project_name: ::String,
553
+ id: ::String,
554
+ ?ides: Array[
555
+ {
556
+ runtime: ::String?,
557
+ name: ::String?
558
+ },
559
+ ],
560
+ ?instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge"),
561
+ ?inactivity_timeout_minutes: ::Integer
562
+ ) -> _StartDevEnvironmentResponseSuccess
563
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDevEnvironmentResponseSuccess
564
+
565
+ interface _StartDevEnvironmentSessionResponseSuccess
566
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDevEnvironmentSessionResponse]
567
+ def access_details: () -> Types::DevEnvironmentAccessDetails
568
+ def session_id: () -> ::String
569
+ def space_name: () -> ::String
570
+ def project_name: () -> ::String
571
+ def id: () -> ::String
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_dev_environment_session-instance_method
574
+ def start_dev_environment_session: (
575
+ space_name: ::String,
576
+ project_name: ::String,
577
+ id: ::String,
578
+ session_configuration: {
579
+ session_type: ("SSM" | "SSH"),
580
+ execute_command_session_configuration: {
581
+ command: ::String,
582
+ arguments: Array[::String]?
583
+ }?
584
+ }
585
+ ) -> _StartDevEnvironmentSessionResponseSuccess
586
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDevEnvironmentSessionResponseSuccess
587
+
588
+ interface _StartWorkflowRunResponseSuccess
589
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartWorkflowRunResponse]
590
+ def space_name: () -> ::String
591
+ def project_name: () -> ::String
592
+ def id: () -> ::String
593
+ def workflow_id: () -> ::String
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_workflow_run-instance_method
596
+ def start_workflow_run: (
597
+ space_name: ::String,
598
+ project_name: ::String,
599
+ workflow_id: ::String,
600
+ ?client_token: ::String
601
+ ) -> _StartWorkflowRunResponseSuccess
602
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartWorkflowRunResponseSuccess
603
+
604
+ interface _StopDevEnvironmentResponseSuccess
605
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDevEnvironmentResponse]
606
+ def space_name: () -> ::String
607
+ def project_name: () -> ::String
608
+ def id: () -> ::String
609
+ def status: () -> ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
610
+ end
611
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#stop_dev_environment-instance_method
612
+ def stop_dev_environment: (
613
+ space_name: ::String,
614
+ project_name: ::String,
615
+ id: ::String
616
+ ) -> _StopDevEnvironmentResponseSuccess
617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDevEnvironmentResponseSuccess
618
+
619
+ interface _StopDevEnvironmentSessionResponseSuccess
620
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDevEnvironmentSessionResponse]
621
+ def space_name: () -> ::String
622
+ def project_name: () -> ::String
623
+ def id: () -> ::String
624
+ def session_id: () -> ::String
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#stop_dev_environment_session-instance_method
627
+ def stop_dev_environment_session: (
628
+ space_name: ::String,
629
+ project_name: ::String,
630
+ id: ::String,
631
+ session_id: ::String
632
+ ) -> _StopDevEnvironmentSessionResponseSuccess
633
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDevEnvironmentSessionResponseSuccess
634
+
635
+ interface _UpdateDevEnvironmentResponseSuccess
636
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDevEnvironmentResponse]
637
+ def id: () -> ::String
638
+ def space_name: () -> ::String
639
+ def project_name: () -> ::String
640
+ def alias: () -> ::String
641
+ def ides: () -> ::Array[Types::IdeConfiguration]
642
+ def instance_type: () -> ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
643
+ def inactivity_timeout_minutes: () -> ::Integer
644
+ def client_token: () -> ::String
645
+ end
646
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_dev_environment-instance_method
647
+ def update_dev_environment: (
648
+ space_name: ::String,
649
+ project_name: ::String,
650
+ id: ::String,
651
+ ?alias: ::String,
652
+ ?ides: Array[
653
+ {
654
+ runtime: ::String?,
655
+ name: ::String?
656
+ },
657
+ ],
658
+ ?instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge"),
659
+ ?inactivity_timeout_minutes: ::Integer,
660
+ ?client_token: ::String
661
+ ) -> _UpdateDevEnvironmentResponseSuccess
662
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEnvironmentResponseSuccess
663
+
664
+ interface _UpdateProjectResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectResponse]
666
+ def space_name: () -> ::String
667
+ def name: () -> ::String
668
+ def display_name: () -> ::String
669
+ def description: () -> ::String
670
+ end
671
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_project-instance_method
672
+ def update_project: (
673
+ space_name: ::String,
674
+ name: ::String,
675
+ ?description: ::String
676
+ ) -> _UpdateProjectResponseSuccess
677
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
678
+
679
+ interface _UpdateSpaceResponseSuccess
680
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSpaceResponse]
681
+ def name: () -> ::String
682
+ def display_name: () -> ::String
683
+ def description: () -> ::String
684
+ end
685
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_space-instance_method
686
+ def update_space: (
687
+ name: ::String,
688
+ ?description: ::String
689
+ ) -> _UpdateSpaceResponseSuccess
690
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSpaceResponseSuccess
691
+
692
+ interface _VerifySessionResponseSuccess
693
+ include ::Seahorse::Client::_ResponseSuccess[Types::VerifySessionResponse]
694
+ def identity: () -> ::String
695
+ end
696
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#verify_session-instance_method
697
+ def verify_session: () -> _VerifySessionResponseSuccess
698
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifySessionResponseSuccess
699
+ end
700
+ end
701
+ end
702
+