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.
data/sig/client.rbs ADDED
@@ -0,0 +1,704 @@
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
+ def pending_subscription_type: () -> ::String
318
+ def pending_subscription_start_time: () -> ::Time
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_subscription-instance_method
321
+ def get_subscription: (
322
+ space_name: ::String
323
+ ) -> _GetSubscriptionResponseSuccess
324
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSubscriptionResponseSuccess
325
+
326
+ interface _GetUserDetailsResponseSuccess
327
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUserDetailsResponse]
328
+ def user_id: () -> ::String
329
+ def user_name: () -> ::String
330
+ def display_name: () -> ::String
331
+ def primary_email: () -> Types::EmailAddress
332
+ def version: () -> ::String
333
+ end
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_user_details-instance_method
335
+ def get_user_details: (
336
+ ?id: ::String,
337
+ ?user_name: ::String
338
+ ) -> _GetUserDetailsResponseSuccess
339
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserDetailsResponseSuccess
340
+
341
+ interface _GetWorkflowResponseSuccess
342
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowResponse]
343
+ def space_name: () -> ::String
344
+ def project_name: () -> ::String
345
+ def id: () -> ::String
346
+ def name: () -> ::String
347
+ def source_repository_name: () -> ::String
348
+ def source_branch_name: () -> ::String
349
+ def definition: () -> Types::WorkflowDefinition
350
+ def created_time: () -> ::Time
351
+ def last_updated_time: () -> ::Time
352
+ def run_mode: () -> ("QUEUED" | "PARALLEL" | "SUPERSEDED")
353
+ def status: () -> ("INVALID" | "ACTIVE")
354
+ end
355
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_workflow-instance_method
356
+ def get_workflow: (
357
+ space_name: ::String,
358
+ id: ::String,
359
+ project_name: ::String
360
+ ) -> _GetWorkflowResponseSuccess
361
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
362
+
363
+ interface _GetWorkflowRunResponseSuccess
364
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowRunResponse]
365
+ def space_name: () -> ::String
366
+ def project_name: () -> ::String
367
+ def id: () -> ::String
368
+ def workflow_id: () -> ::String
369
+ def status: () -> ("SUCCEEDED" | "FAILED" | "STOPPED" | "SUPERSEDED" | "CANCELLED" | "NOT_RUN" | "VALIDATING" | "PROVISIONING" | "IN_PROGRESS" | "STOPPING" | "ABANDONED")
370
+ def status_reasons: () -> ::Array[Types::WorkflowRunStatusReason]
371
+ def start_time: () -> ::Time
372
+ def end_time: () -> ::Time
373
+ def last_updated_time: () -> ::Time
374
+ end
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#get_workflow_run-instance_method
376
+ def get_workflow_run: (
377
+ space_name: ::String,
378
+ id: ::String,
379
+ project_name: ::String
380
+ ) -> _GetWorkflowRunResponseSuccess
381
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowRunResponseSuccess
382
+
383
+ interface _ListAccessTokensResponseSuccess
384
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessTokensResponse]
385
+ def items: () -> ::Array[Types::AccessTokenSummary]
386
+ def next_token: () -> ::String
387
+ end
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_access_tokens-instance_method
389
+ def list_access_tokens: (
390
+ ?max_results: ::Integer,
391
+ ?next_token: ::String
392
+ ) -> _ListAccessTokensResponseSuccess
393
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessTokensResponseSuccess
394
+
395
+ interface _ListDevEnvironmentSessionsResponseSuccess
396
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevEnvironmentSessionsResponse]
397
+ def items: () -> ::Array[Types::DevEnvironmentSessionSummary]
398
+ def next_token: () -> ::String
399
+ end
400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_dev_environment_sessions-instance_method
401
+ def list_dev_environment_sessions: (
402
+ space_name: ::String,
403
+ project_name: ::String,
404
+ dev_environment_id: ::String,
405
+ ?next_token: ::String,
406
+ ?max_results: ::Integer
407
+ ) -> _ListDevEnvironmentSessionsResponseSuccess
408
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevEnvironmentSessionsResponseSuccess
409
+
410
+ interface _ListDevEnvironmentsResponseSuccess
411
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevEnvironmentsResponse]
412
+ def items: () -> ::Array[Types::DevEnvironmentSummary]
413
+ def next_token: () -> ::String
414
+ end
415
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_dev_environments-instance_method
416
+ def list_dev_environments: (
417
+ space_name: ::String,
418
+ ?project_name: ::String,
419
+ ?filters: Array[
420
+ {
421
+ key: ::String,
422
+ values: Array[::String],
423
+ comparison_operator: ::String?
424
+ },
425
+ ],
426
+ ?next_token: ::String,
427
+ ?max_results: ::Integer
428
+ ) -> _ListDevEnvironmentsResponseSuccess
429
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevEnvironmentsResponseSuccess
430
+
431
+ interface _ListEventLogsResponseSuccess
432
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventLogsResponse]
433
+ def next_token: () -> ::String
434
+ def items: () -> ::Array[Types::EventLogEntry]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_event_logs-instance_method
437
+ def list_event_logs: (
438
+ space_name: ::String,
439
+ start_time: ::Time,
440
+ end_time: ::Time,
441
+ ?event_name: ::String,
442
+ ?next_token: ::String,
443
+ ?max_results: ::Integer
444
+ ) -> _ListEventLogsResponseSuccess
445
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventLogsResponseSuccess
446
+
447
+ interface _ListProjectsResponseSuccess
448
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResponse]
449
+ def next_token: () -> ::String
450
+ def items: () -> ::Array[Types::ProjectSummary]
451
+ end
452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_projects-instance_method
453
+ def list_projects: (
454
+ space_name: ::String,
455
+ ?next_token: ::String,
456
+ ?max_results: ::Integer,
457
+ ?filters: Array[
458
+ {
459
+ key: ("hasAccessTo" | "name"),
460
+ values: Array[::String],
461
+ comparison_operator: ("EQ" | "GT" | "GE" | "LT" | "LE" | "BEGINS_WITH")?
462
+ },
463
+ ]
464
+ ) -> _ListProjectsResponseSuccess
465
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
466
+
467
+ interface _ListSourceRepositoriesResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceRepositoriesResponse]
469
+ def items: () -> ::Array[Types::ListSourceRepositoriesItem]
470
+ def next_token: () -> ::String
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_source_repositories-instance_method
473
+ def list_source_repositories: (
474
+ space_name: ::String,
475
+ project_name: ::String,
476
+ ?next_token: ::String,
477
+ ?max_results: ::Integer
478
+ ) -> _ListSourceRepositoriesResponseSuccess
479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceRepositoriesResponseSuccess
480
+
481
+ interface _ListSourceRepositoryBranchesResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceRepositoryBranchesResponse]
483
+ def next_token: () -> ::String
484
+ def items: () -> ::Array[Types::ListSourceRepositoryBranchesItem]
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_source_repository_branches-instance_method
487
+ def list_source_repository_branches: (
488
+ space_name: ::String,
489
+ project_name: ::String,
490
+ source_repository_name: ::String,
491
+ ?next_token: ::String,
492
+ ?max_results: ::Integer
493
+ ) -> _ListSourceRepositoryBranchesResponseSuccess
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceRepositoryBranchesResponseSuccess
495
+
496
+ interface _ListSpacesResponseSuccess
497
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSpacesResponse]
498
+ def next_token: () -> ::String
499
+ def items: () -> ::Array[Types::SpaceSummary]
500
+ end
501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_spaces-instance_method
502
+ def list_spaces: (
503
+ ?next_token: ::String
504
+ ) -> _ListSpacesResponseSuccess
505
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpacesResponseSuccess
506
+
507
+ interface _ListWorkflowRunsResponseSuccess
508
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowRunsResponse]
509
+ def next_token: () -> ::String
510
+ def items: () -> ::Array[Types::WorkflowRunSummary]
511
+ end
512
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_workflow_runs-instance_method
513
+ def list_workflow_runs: (
514
+ space_name: ::String,
515
+ ?workflow_id: ::String,
516
+ project_name: ::String,
517
+ ?next_token: ::String,
518
+ ?max_results: ::Integer,
519
+ ?sort_by: Array[
520
+ {
521
+ },
522
+ ]
523
+ ) -> _ListWorkflowRunsResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowRunsResponseSuccess
525
+
526
+ interface _ListWorkflowsResponseSuccess
527
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
528
+ def next_token: () -> ::String
529
+ def items: () -> ::Array[Types::WorkflowSummary]
530
+ end
531
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#list_workflows-instance_method
532
+ def list_workflows: (
533
+ space_name: ::String,
534
+ project_name: ::String,
535
+ ?next_token: ::String,
536
+ ?max_results: ::Integer,
537
+ ?sort_by: Array[
538
+ {
539
+ },
540
+ ]
541
+ ) -> _ListWorkflowsResponseSuccess
542
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
543
+
544
+ interface _StartDevEnvironmentResponseSuccess
545
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDevEnvironmentResponse]
546
+ def space_name: () -> ::String
547
+ def project_name: () -> ::String
548
+ def id: () -> ::String
549
+ def status: () -> ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
550
+ end
551
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_dev_environment-instance_method
552
+ def start_dev_environment: (
553
+ space_name: ::String,
554
+ project_name: ::String,
555
+ id: ::String,
556
+ ?ides: Array[
557
+ {
558
+ runtime: ::String?,
559
+ name: ::String?
560
+ },
561
+ ],
562
+ ?instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge"),
563
+ ?inactivity_timeout_minutes: ::Integer
564
+ ) -> _StartDevEnvironmentResponseSuccess
565
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDevEnvironmentResponseSuccess
566
+
567
+ interface _StartDevEnvironmentSessionResponseSuccess
568
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDevEnvironmentSessionResponse]
569
+ def access_details: () -> Types::DevEnvironmentAccessDetails
570
+ def session_id: () -> ::String
571
+ def space_name: () -> ::String
572
+ def project_name: () -> ::String
573
+ def id: () -> ::String
574
+ end
575
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_dev_environment_session-instance_method
576
+ def start_dev_environment_session: (
577
+ space_name: ::String,
578
+ project_name: ::String,
579
+ id: ::String,
580
+ session_configuration: {
581
+ session_type: ("SSM" | "SSH"),
582
+ execute_command_session_configuration: {
583
+ command: ::String,
584
+ arguments: Array[::String]?
585
+ }?
586
+ }
587
+ ) -> _StartDevEnvironmentSessionResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDevEnvironmentSessionResponseSuccess
589
+
590
+ interface _StartWorkflowRunResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartWorkflowRunResponse]
592
+ def space_name: () -> ::String
593
+ def project_name: () -> ::String
594
+ def id: () -> ::String
595
+ def workflow_id: () -> ::String
596
+ end
597
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#start_workflow_run-instance_method
598
+ def start_workflow_run: (
599
+ space_name: ::String,
600
+ project_name: ::String,
601
+ workflow_id: ::String,
602
+ ?client_token: ::String
603
+ ) -> _StartWorkflowRunResponseSuccess
604
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartWorkflowRunResponseSuccess
605
+
606
+ interface _StopDevEnvironmentResponseSuccess
607
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDevEnvironmentResponse]
608
+ def space_name: () -> ::String
609
+ def project_name: () -> ::String
610
+ def id: () -> ::String
611
+ def status: () -> ("PENDING" | "RUNNING" | "STARTING" | "STOPPING" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#stop_dev_environment-instance_method
614
+ def stop_dev_environment: (
615
+ space_name: ::String,
616
+ project_name: ::String,
617
+ id: ::String
618
+ ) -> _StopDevEnvironmentResponseSuccess
619
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDevEnvironmentResponseSuccess
620
+
621
+ interface _StopDevEnvironmentSessionResponseSuccess
622
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDevEnvironmentSessionResponse]
623
+ def space_name: () -> ::String
624
+ def project_name: () -> ::String
625
+ def id: () -> ::String
626
+ def session_id: () -> ::String
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#stop_dev_environment_session-instance_method
629
+ def stop_dev_environment_session: (
630
+ space_name: ::String,
631
+ project_name: ::String,
632
+ id: ::String,
633
+ session_id: ::String
634
+ ) -> _StopDevEnvironmentSessionResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDevEnvironmentSessionResponseSuccess
636
+
637
+ interface _UpdateDevEnvironmentResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDevEnvironmentResponse]
639
+ def id: () -> ::String
640
+ def space_name: () -> ::String
641
+ def project_name: () -> ::String
642
+ def alias: () -> ::String
643
+ def ides: () -> ::Array[Types::IdeConfiguration]
644
+ def instance_type: () -> ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge")
645
+ def inactivity_timeout_minutes: () -> ::Integer
646
+ def client_token: () -> ::String
647
+ end
648
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_dev_environment-instance_method
649
+ def update_dev_environment: (
650
+ space_name: ::String,
651
+ project_name: ::String,
652
+ id: ::String,
653
+ ?alias: ::String,
654
+ ?ides: Array[
655
+ {
656
+ runtime: ::String?,
657
+ name: ::String?
658
+ },
659
+ ],
660
+ ?instance_type: ("dev.standard1.small" | "dev.standard1.medium" | "dev.standard1.large" | "dev.standard1.xlarge"),
661
+ ?inactivity_timeout_minutes: ::Integer,
662
+ ?client_token: ::String
663
+ ) -> _UpdateDevEnvironmentResponseSuccess
664
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEnvironmentResponseSuccess
665
+
666
+ interface _UpdateProjectResponseSuccess
667
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectResponse]
668
+ def space_name: () -> ::String
669
+ def name: () -> ::String
670
+ def display_name: () -> ::String
671
+ def description: () -> ::String
672
+ end
673
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_project-instance_method
674
+ def update_project: (
675
+ space_name: ::String,
676
+ name: ::String,
677
+ ?description: ::String
678
+ ) -> _UpdateProjectResponseSuccess
679
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
680
+
681
+ interface _UpdateSpaceResponseSuccess
682
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSpaceResponse]
683
+ def name: () -> ::String
684
+ def display_name: () -> ::String
685
+ def description: () -> ::String
686
+ end
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#update_space-instance_method
688
+ def update_space: (
689
+ name: ::String,
690
+ ?description: ::String
691
+ ) -> _UpdateSpaceResponseSuccess
692
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSpaceResponseSuccess
693
+
694
+ interface _VerifySessionResponseSuccess
695
+ include ::Seahorse::Client::_ResponseSuccess[Types::VerifySessionResponse]
696
+ def identity: () -> ::String
697
+ end
698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeCatalyst/Client.html#verify_session-instance_method
699
+ def verify_session: () -> _VerifySessionResponseSuccess
700
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifySessionResponseSuccess
701
+ end
702
+ end
703
+ end
704
+