aws-sdk-codecatalyst 1.11.0 → 1.13.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 +330 -8
- data/lib/aws-sdk-codecatalyst/client_api.rb +236 -2
- data/lib/aws-sdk-codecatalyst/endpoints.rb +65 -0
- data/lib/aws-sdk-codecatalyst/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-codecatalyst/types.rb +578 -4
- data/lib/aws-sdk-codecatalyst.rb +1 -1
- metadata +2 -2
@@ -185,6 +185,10 @@ module Aws::CodeCatalyst
|
|
185
185
|
# </note>
|
186
186
|
# @return [Types::PersistentStorageConfiguration]
|
187
187
|
#
|
188
|
+
# @!attribute [rw] vpc_connection_name
|
189
|
+
# The name of the connection to use connect to a Amazon VPC.
|
190
|
+
# @return [String]
|
191
|
+
#
|
188
192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentRequest AWS API Documentation
|
189
193
|
#
|
190
194
|
class CreateDevEnvironmentRequest < Struct.new(
|
@@ -196,7 +200,8 @@ module Aws::CodeCatalyst
|
|
196
200
|
:ides,
|
197
201
|
:instance_type,
|
198
202
|
:inactivity_timeout_minutes,
|
199
|
-
:persistent_storage
|
203
|
+
:persistent_storage,
|
204
|
+
:vpc_connection_name)
|
200
205
|
SENSITIVE = []
|
201
206
|
include Aws::Structure
|
202
207
|
end
|
@@ -213,12 +218,18 @@ module Aws::CodeCatalyst
|
|
213
218
|
# The system-generated unique ID of the Dev Environment.
|
214
219
|
# @return [String]
|
215
220
|
#
|
221
|
+
# @!attribute [rw] vpc_connection_name
|
222
|
+
# The name of the connection used to connect to Amazon VPC used when
|
223
|
+
# the Dev Environment was created, if any.
|
224
|
+
# @return [String]
|
225
|
+
#
|
216
226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentResponse AWS API Documentation
|
217
227
|
#
|
218
228
|
class CreateDevEnvironmentResponse < Struct.new(
|
219
229
|
:space_name,
|
220
230
|
:project_name,
|
221
|
-
:id
|
231
|
+
:id,
|
232
|
+
:vpc_connection_name)
|
222
233
|
SENSITIVE = []
|
223
234
|
include Aws::Structure
|
224
235
|
end
|
@@ -742,6 +753,11 @@ module Aws::CodeCatalyst
|
|
742
753
|
# Dev Environment.
|
743
754
|
# @return [Types::PersistentStorage]
|
744
755
|
#
|
756
|
+
# @!attribute [rw] vpc_connection_name
|
757
|
+
# The name of the connection used to connect to Amazon VPC used when
|
758
|
+
# the Dev Environment was created, if any.
|
759
|
+
# @return [String]
|
760
|
+
#
|
745
761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentSummary AWS API Documentation
|
746
762
|
#
|
747
763
|
class DevEnvironmentSummary < Struct.new(
|
@@ -757,7 +773,8 @@ module Aws::CodeCatalyst
|
|
757
773
|
:ides,
|
758
774
|
:instance_type,
|
759
775
|
:inactivity_timeout_minutes,
|
760
|
-
:persistent_storage
|
776
|
+
:persistent_storage,
|
777
|
+
:vpc_connection_name)
|
761
778
|
SENSITIVE = []
|
762
779
|
include Aws::Structure
|
763
780
|
end
|
@@ -1024,6 +1041,11 @@ module Aws::CodeCatalyst
|
|
1024
1041
|
# 16GB of persistent storage.
|
1025
1042
|
# @return [Types::PersistentStorage]
|
1026
1043
|
#
|
1044
|
+
# @!attribute [rw] vpc_connection_name
|
1045
|
+
# The name of the connection used to connect to Amazon VPC used when
|
1046
|
+
# the Dev Environment was created, if any.
|
1047
|
+
# @return [String]
|
1048
|
+
#
|
1027
1049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetDevEnvironmentResponse AWS API Documentation
|
1028
1050
|
#
|
1029
1051
|
class GetDevEnvironmentResponse < Struct.new(
|
@@ -1039,7 +1061,8 @@ module Aws::CodeCatalyst
|
|
1039
1061
|
:ides,
|
1040
1062
|
:instance_type,
|
1041
1063
|
:inactivity_timeout_minutes,
|
1042
|
-
:persistent_storage
|
1064
|
+
:persistent_storage,
|
1065
|
+
:vpc_connection_name)
|
1043
1066
|
SENSITIVE = []
|
1044
1067
|
include Aws::Structure
|
1045
1068
|
end
|
@@ -1309,6 +1332,199 @@ module Aws::CodeCatalyst
|
|
1309
1332
|
include Aws::Structure
|
1310
1333
|
end
|
1311
1334
|
|
1335
|
+
# @!attribute [rw] space_name
|
1336
|
+
# The name of the space.
|
1337
|
+
# @return [String]
|
1338
|
+
#
|
1339
|
+
# @!attribute [rw] id
|
1340
|
+
# The ID of the workflow. To rerieve a list of workflow IDs, use
|
1341
|
+
# ListWorkflows.
|
1342
|
+
# @return [String]
|
1343
|
+
#
|
1344
|
+
# @!attribute [rw] project_name
|
1345
|
+
# The name of the project in the space.
|
1346
|
+
# @return [String]
|
1347
|
+
#
|
1348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetWorkflowRequest AWS API Documentation
|
1349
|
+
#
|
1350
|
+
class GetWorkflowRequest < Struct.new(
|
1351
|
+
:space_name,
|
1352
|
+
:id,
|
1353
|
+
:project_name)
|
1354
|
+
SENSITIVE = []
|
1355
|
+
include Aws::Structure
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
# @!attribute [rw] space_name
|
1359
|
+
# The name of the space.
|
1360
|
+
# @return [String]
|
1361
|
+
#
|
1362
|
+
# @!attribute [rw] project_name
|
1363
|
+
# The name of the project in the space.
|
1364
|
+
# @return [String]
|
1365
|
+
#
|
1366
|
+
# @!attribute [rw] id
|
1367
|
+
# The ID of the workflow.
|
1368
|
+
# @return [String]
|
1369
|
+
#
|
1370
|
+
# @!attribute [rw] name
|
1371
|
+
# The name of the workflow.
|
1372
|
+
# @return [String]
|
1373
|
+
#
|
1374
|
+
# @!attribute [rw] source_repository_name
|
1375
|
+
# The name of the source repository where the workflow YAML is stored.
|
1376
|
+
# @return [String]
|
1377
|
+
#
|
1378
|
+
# @!attribute [rw] source_branch_name
|
1379
|
+
# The name of the branch that contains the workflow YAML.
|
1380
|
+
# @return [String]
|
1381
|
+
#
|
1382
|
+
# @!attribute [rw] definition
|
1383
|
+
# Information about the workflow definition file for the workflow.
|
1384
|
+
# @return [Types::WorkflowDefinition]
|
1385
|
+
#
|
1386
|
+
# @!attribute [rw] created_time
|
1387
|
+
# The date and time the workflow was created, in coordinated universal
|
1388
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1]
|
1389
|
+
#
|
1390
|
+
#
|
1391
|
+
#
|
1392
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1393
|
+
# @return [Time]
|
1394
|
+
#
|
1395
|
+
# @!attribute [rw] last_updated_time
|
1396
|
+
# The date and time the workflow was last updated, in coordinated
|
1397
|
+
# universal time (UTC) timestamp format as specified in [RFC 3339][1]
|
1398
|
+
#
|
1399
|
+
#
|
1400
|
+
#
|
1401
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1402
|
+
# @return [Time]
|
1403
|
+
#
|
1404
|
+
# @!attribute [rw] run_mode
|
1405
|
+
# The behavior to use when multiple workflows occur at the same time.
|
1406
|
+
# For more information, see
|
1407
|
+
# [https://docs.aws.amazon.com/codecatalyst/latest/userguide/workflows-configure-runs.html][1]
|
1408
|
+
# in the Amazon CodeCatalyst User Guide.
|
1409
|
+
#
|
1410
|
+
#
|
1411
|
+
#
|
1412
|
+
# [1]: https://docs.aws.amazon.com/codecatalyst/latest/userguide/workflows-configure-runs.html
|
1413
|
+
# @return [String]
|
1414
|
+
#
|
1415
|
+
# @!attribute [rw] status
|
1416
|
+
# The status of the workflow.
|
1417
|
+
# @return [String]
|
1418
|
+
#
|
1419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetWorkflowResponse AWS API Documentation
|
1420
|
+
#
|
1421
|
+
class GetWorkflowResponse < Struct.new(
|
1422
|
+
:space_name,
|
1423
|
+
:project_name,
|
1424
|
+
:id,
|
1425
|
+
:name,
|
1426
|
+
:source_repository_name,
|
1427
|
+
:source_branch_name,
|
1428
|
+
:definition,
|
1429
|
+
:created_time,
|
1430
|
+
:last_updated_time,
|
1431
|
+
:run_mode,
|
1432
|
+
:status)
|
1433
|
+
SENSITIVE = []
|
1434
|
+
include Aws::Structure
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
# @!attribute [rw] space_name
|
1438
|
+
# The name of the space.
|
1439
|
+
# @return [String]
|
1440
|
+
#
|
1441
|
+
# @!attribute [rw] id
|
1442
|
+
# The ID of the workflow run. To retrieve a list of workflow run IDs,
|
1443
|
+
# use ListWorkflowRuns.
|
1444
|
+
# @return [String]
|
1445
|
+
#
|
1446
|
+
# @!attribute [rw] project_name
|
1447
|
+
# The name of the project in the space.
|
1448
|
+
# @return [String]
|
1449
|
+
#
|
1450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetWorkflowRunRequest AWS API Documentation
|
1451
|
+
#
|
1452
|
+
class GetWorkflowRunRequest < Struct.new(
|
1453
|
+
:space_name,
|
1454
|
+
:id,
|
1455
|
+
:project_name)
|
1456
|
+
SENSITIVE = []
|
1457
|
+
include Aws::Structure
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
# @!attribute [rw] space_name
|
1461
|
+
# The name of the space.
|
1462
|
+
# @return [String]
|
1463
|
+
#
|
1464
|
+
# @!attribute [rw] project_name
|
1465
|
+
# The name of the project in the space.
|
1466
|
+
# @return [String]
|
1467
|
+
#
|
1468
|
+
# @!attribute [rw] id
|
1469
|
+
# The ID of the workflow run.
|
1470
|
+
# @return [String]
|
1471
|
+
#
|
1472
|
+
# @!attribute [rw] workflow_id
|
1473
|
+
# The ID of the workflow.
|
1474
|
+
# @return [String]
|
1475
|
+
#
|
1476
|
+
# @!attribute [rw] status
|
1477
|
+
# The status of the workflow run.
|
1478
|
+
# @return [String]
|
1479
|
+
#
|
1480
|
+
# @!attribute [rw] status_reasons
|
1481
|
+
# Information about the reasons for the status of the workflow run.
|
1482
|
+
# @return [Array<Types::WorkflowRunStatusReason>]
|
1483
|
+
#
|
1484
|
+
# @!attribute [rw] start_time
|
1485
|
+
# The date and time the workflow run began, in coordinated universal
|
1486
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1]
|
1487
|
+
#
|
1488
|
+
#
|
1489
|
+
#
|
1490
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1491
|
+
# @return [Time]
|
1492
|
+
#
|
1493
|
+
# @!attribute [rw] end_time
|
1494
|
+
# The date and time the workflow run ended, in coordinated universal
|
1495
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1].
|
1496
|
+
#
|
1497
|
+
#
|
1498
|
+
#
|
1499
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1500
|
+
# @return [Time]
|
1501
|
+
#
|
1502
|
+
# @!attribute [rw] last_updated_time
|
1503
|
+
# The date and time the workflow run status was last updated, in
|
1504
|
+
# coordinated universal time (UTC) timestamp format as specified in
|
1505
|
+
# [RFC 3339][1]
|
1506
|
+
#
|
1507
|
+
#
|
1508
|
+
#
|
1509
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
1510
|
+
# @return [Time]
|
1511
|
+
#
|
1512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetWorkflowRunResponse AWS API Documentation
|
1513
|
+
#
|
1514
|
+
class GetWorkflowRunResponse < Struct.new(
|
1515
|
+
:space_name,
|
1516
|
+
:project_name,
|
1517
|
+
:id,
|
1518
|
+
:workflow_id,
|
1519
|
+
:status,
|
1520
|
+
:status_reasons,
|
1521
|
+
:start_time,
|
1522
|
+
:end_time,
|
1523
|
+
:last_updated_time)
|
1524
|
+
SENSITIVE = []
|
1525
|
+
include Aws::Structure
|
1526
|
+
end
|
1527
|
+
|
1312
1528
|
# Information about an integrated development environment (IDE) used in
|
1313
1529
|
# a Dev Environment.
|
1314
1530
|
#
|
@@ -1839,6 +2055,120 @@ module Aws::CodeCatalyst
|
|
1839
2055
|
include Aws::Structure
|
1840
2056
|
end
|
1841
2057
|
|
2058
|
+
# @!attribute [rw] space_name
|
2059
|
+
# The name of the space.
|
2060
|
+
# @return [String]
|
2061
|
+
#
|
2062
|
+
# @!attribute [rw] workflow_id
|
2063
|
+
# The ID of the workflow. To retrieve a list of workflow IDs, use
|
2064
|
+
# ListWorkflows.
|
2065
|
+
# @return [String]
|
2066
|
+
#
|
2067
|
+
# @!attribute [rw] project_name
|
2068
|
+
# The name of the project in the space.
|
2069
|
+
# @return [String]
|
2070
|
+
#
|
2071
|
+
# @!attribute [rw] next_token
|
2072
|
+
# A token returned from a call to this API to indicate the next batch
|
2073
|
+
# of results to return, if any.
|
2074
|
+
# @return [String]
|
2075
|
+
#
|
2076
|
+
# @!attribute [rw] max_results
|
2077
|
+
# The maximum number of results to show in a single call to this API.
|
2078
|
+
# If the number of results is larger than the number you specified,
|
2079
|
+
# the response will include a `NextToken` element, which you can use
|
2080
|
+
# to obtain additional results.
|
2081
|
+
# @return [Integer]
|
2082
|
+
#
|
2083
|
+
# @!attribute [rw] sort_by
|
2084
|
+
# Information used to sort the items in the returned list.
|
2085
|
+
# @return [Array<Types::WorkflowRunSortCriteria>]
|
2086
|
+
#
|
2087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListWorkflowRunsRequest AWS API Documentation
|
2088
|
+
#
|
2089
|
+
class ListWorkflowRunsRequest < Struct.new(
|
2090
|
+
:space_name,
|
2091
|
+
:workflow_id,
|
2092
|
+
:project_name,
|
2093
|
+
:next_token,
|
2094
|
+
:max_results,
|
2095
|
+
:sort_by)
|
2096
|
+
SENSITIVE = []
|
2097
|
+
include Aws::Structure
|
2098
|
+
end
|
2099
|
+
|
2100
|
+
# @!attribute [rw] next_token
|
2101
|
+
# A token returned from a call to this API to indicate the next batch
|
2102
|
+
# of results to return, if any.
|
2103
|
+
# @return [String]
|
2104
|
+
#
|
2105
|
+
# @!attribute [rw] items
|
2106
|
+
# Information about the runs of a workflow.
|
2107
|
+
# @return [Array<Types::WorkflowRunSummary>]
|
2108
|
+
#
|
2109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListWorkflowRunsResponse AWS API Documentation
|
2110
|
+
#
|
2111
|
+
class ListWorkflowRunsResponse < Struct.new(
|
2112
|
+
:next_token,
|
2113
|
+
:items)
|
2114
|
+
SENSITIVE = []
|
2115
|
+
include Aws::Structure
|
2116
|
+
end
|
2117
|
+
|
2118
|
+
# @!attribute [rw] space_name
|
2119
|
+
# The name of the space.
|
2120
|
+
# @return [String]
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] project_name
|
2123
|
+
# The name of the project in the space.
|
2124
|
+
# @return [String]
|
2125
|
+
#
|
2126
|
+
# @!attribute [rw] next_token
|
2127
|
+
# A token returned from a call to this API to indicate the next batch
|
2128
|
+
# of results to return, if any.
|
2129
|
+
# @return [String]
|
2130
|
+
#
|
2131
|
+
# @!attribute [rw] max_results
|
2132
|
+
# The maximum number of results to show in a single call to this API.
|
2133
|
+
# If the number of results is larger than the number you specified,
|
2134
|
+
# the response will include a `NextToken` element, which you can use
|
2135
|
+
# to obtain additional results.
|
2136
|
+
# @return [Integer]
|
2137
|
+
#
|
2138
|
+
# @!attribute [rw] sort_by
|
2139
|
+
# Information used to sort the items in the returned list.
|
2140
|
+
# @return [Array<Types::WorkflowSortCriteria>]
|
2141
|
+
#
|
2142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListWorkflowsRequest AWS API Documentation
|
2143
|
+
#
|
2144
|
+
class ListWorkflowsRequest < Struct.new(
|
2145
|
+
:space_name,
|
2146
|
+
:project_name,
|
2147
|
+
:next_token,
|
2148
|
+
:max_results,
|
2149
|
+
:sort_by)
|
2150
|
+
SENSITIVE = []
|
2151
|
+
include Aws::Structure
|
2152
|
+
end
|
2153
|
+
|
2154
|
+
# @!attribute [rw] next_token
|
2155
|
+
# A token returned from a call to this API to indicate the next batch
|
2156
|
+
# of results to return, if any.
|
2157
|
+
# @return [String]
|
2158
|
+
#
|
2159
|
+
# @!attribute [rw] items
|
2160
|
+
# Information about the workflows in a project.
|
2161
|
+
# @return [Array<Types::WorkflowSummary>]
|
2162
|
+
#
|
2163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListWorkflowsResponse AWS API Documentation
|
2164
|
+
#
|
2165
|
+
class ListWorkflowsResponse < Struct.new(
|
2166
|
+
:next_token,
|
2167
|
+
:items)
|
2168
|
+
SENSITIVE = []
|
2169
|
+
include Aws::Structure
|
2170
|
+
end
|
2171
|
+
|
1842
2172
|
# Information about the persistent storage for a Dev Environment.
|
1843
2173
|
#
|
1844
2174
|
# @!attribute [rw] size_in_gi_b
|
@@ -2152,6 +2482,68 @@ module Aws::CodeCatalyst
|
|
2152
2482
|
include Aws::Structure
|
2153
2483
|
end
|
2154
2484
|
|
2485
|
+
# @!attribute [rw] space_name
|
2486
|
+
# The name of the space.
|
2487
|
+
# @return [String]
|
2488
|
+
#
|
2489
|
+
# @!attribute [rw] project_name
|
2490
|
+
# The name of the project in the space.
|
2491
|
+
# @return [String]
|
2492
|
+
#
|
2493
|
+
# @!attribute [rw] workflow_id
|
2494
|
+
# The system-generated unique ID of the workflow. To retrieve a list
|
2495
|
+
# of workflow IDs, use ListWorkflows.
|
2496
|
+
# @return [String]
|
2497
|
+
#
|
2498
|
+
# @!attribute [rw] client_token
|
2499
|
+
# A user-specified idempotency token. Idempotency ensures that an API
|
2500
|
+
# request completes only once. With an idempotent request, if the
|
2501
|
+
# original request completes successfully, the subsequent retries
|
2502
|
+
# return the result from the original successful request and have no
|
2503
|
+
# additional effect.
|
2504
|
+
#
|
2505
|
+
# **A suitable default value is auto-generated.** You should normally
|
2506
|
+
# not need to pass this option.
|
2507
|
+
# @return [String]
|
2508
|
+
#
|
2509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartWorkflowRunRequest AWS API Documentation
|
2510
|
+
#
|
2511
|
+
class StartWorkflowRunRequest < Struct.new(
|
2512
|
+
:space_name,
|
2513
|
+
:project_name,
|
2514
|
+
:workflow_id,
|
2515
|
+
:client_token)
|
2516
|
+
SENSITIVE = []
|
2517
|
+
include Aws::Structure
|
2518
|
+
end
|
2519
|
+
|
2520
|
+
# @!attribute [rw] space_name
|
2521
|
+
# The name of the space.
|
2522
|
+
# @return [String]
|
2523
|
+
#
|
2524
|
+
# @!attribute [rw] project_name
|
2525
|
+
# The name of the project in the space.
|
2526
|
+
# @return [String]
|
2527
|
+
#
|
2528
|
+
# @!attribute [rw] id
|
2529
|
+
# The system-generated unique ID of the workflow run.
|
2530
|
+
# @return [String]
|
2531
|
+
#
|
2532
|
+
# @!attribute [rw] workflow_id
|
2533
|
+
# The system-generated unique ID of the workflow.
|
2534
|
+
# @return [String]
|
2535
|
+
#
|
2536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartWorkflowRunResponse AWS API Documentation
|
2537
|
+
#
|
2538
|
+
class StartWorkflowRunResponse < Struct.new(
|
2539
|
+
:space_name,
|
2540
|
+
:project_name,
|
2541
|
+
:id,
|
2542
|
+
:workflow_id)
|
2543
|
+
SENSITIVE = []
|
2544
|
+
include Aws::Structure
|
2545
|
+
end
|
2546
|
+
|
2155
2547
|
# @!attribute [rw] space_name
|
2156
2548
|
# The name of the space.
|
2157
2549
|
# @return [String]
|
@@ -2537,5 +2929,187 @@ module Aws::CodeCatalyst
|
|
2537
2929
|
include Aws::Structure
|
2538
2930
|
end
|
2539
2931
|
|
2932
|
+
# Information about a workflow definition file.
|
2933
|
+
#
|
2934
|
+
# @!attribute [rw] path
|
2935
|
+
# The path to the workflow definition file stored in the source
|
2936
|
+
# repository for the project, including the file name.
|
2937
|
+
# @return [String]
|
2938
|
+
#
|
2939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowDefinition AWS API Documentation
|
2940
|
+
#
|
2941
|
+
class WorkflowDefinition < Struct.new(
|
2942
|
+
:path)
|
2943
|
+
SENSITIVE = []
|
2944
|
+
include Aws::Structure
|
2945
|
+
end
|
2946
|
+
|
2947
|
+
# Information about a workflow definition.
|
2948
|
+
#
|
2949
|
+
# @!attribute [rw] path
|
2950
|
+
# The path to the workflow definition file stored in the source
|
2951
|
+
# repository for the project, including the file name.
|
2952
|
+
# @return [String]
|
2953
|
+
#
|
2954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowDefinitionSummary AWS API Documentation
|
2955
|
+
#
|
2956
|
+
class WorkflowDefinitionSummary < Struct.new(
|
2957
|
+
:path)
|
2958
|
+
SENSITIVE = []
|
2959
|
+
include Aws::Structure
|
2960
|
+
end
|
2961
|
+
|
2962
|
+
# Information used to sort workflow runs in the returned list.
|
2963
|
+
#
|
2964
|
+
# @api private
|
2965
|
+
#
|
2966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowRunSortCriteria AWS API Documentation
|
2967
|
+
#
|
2968
|
+
class WorkflowRunSortCriteria < Aws::EmptyStructure; end
|
2969
|
+
|
2970
|
+
# Information about the status of a workflow run.
|
2971
|
+
#
|
2972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowRunStatusReason AWS API Documentation
|
2973
|
+
#
|
2974
|
+
class WorkflowRunStatusReason < Aws::EmptyStructure; end
|
2975
|
+
|
2976
|
+
# Information about a workflow run.
|
2977
|
+
#
|
2978
|
+
# @!attribute [rw] id
|
2979
|
+
# The system-generated unique ID of the workflow run.
|
2980
|
+
# @return [String]
|
2981
|
+
#
|
2982
|
+
# @!attribute [rw] workflow_id
|
2983
|
+
# The system-generated unique ID of the workflow.
|
2984
|
+
# @return [String]
|
2985
|
+
#
|
2986
|
+
# @!attribute [rw] workflow_name
|
2987
|
+
# The name of the workflow.
|
2988
|
+
# @return [String]
|
2989
|
+
#
|
2990
|
+
# @!attribute [rw] status
|
2991
|
+
# The status of the workflow run.
|
2992
|
+
# @return [String]
|
2993
|
+
#
|
2994
|
+
# @!attribute [rw] status_reasons
|
2995
|
+
# The reasons for the workflow run status.
|
2996
|
+
# @return [Array<Types::WorkflowRunStatusReason>]
|
2997
|
+
#
|
2998
|
+
# @!attribute [rw] start_time
|
2999
|
+
# The date and time the workflow run began, in coordinated universal
|
3000
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1].
|
3001
|
+
#
|
3002
|
+
#
|
3003
|
+
#
|
3004
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
3005
|
+
# @return [Time]
|
3006
|
+
#
|
3007
|
+
# @!attribute [rw] end_time
|
3008
|
+
# The date and time the workflow run ended, in coordinated universal
|
3009
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1]
|
3010
|
+
#
|
3011
|
+
#
|
3012
|
+
#
|
3013
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
3014
|
+
# @return [Time]
|
3015
|
+
#
|
3016
|
+
# @!attribute [rw] last_updated_time
|
3017
|
+
# The date and time the workflow was last updated, in coordinated
|
3018
|
+
# universal time (UTC) timestamp format as specified in [RFC 3339][1]
|
3019
|
+
#
|
3020
|
+
#
|
3021
|
+
#
|
3022
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
3023
|
+
# @return [Time]
|
3024
|
+
#
|
3025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowRunSummary AWS API Documentation
|
3026
|
+
#
|
3027
|
+
class WorkflowRunSummary < Struct.new(
|
3028
|
+
:id,
|
3029
|
+
:workflow_id,
|
3030
|
+
:workflow_name,
|
3031
|
+
:status,
|
3032
|
+
:status_reasons,
|
3033
|
+
:start_time,
|
3034
|
+
:end_time,
|
3035
|
+
:last_updated_time)
|
3036
|
+
SENSITIVE = []
|
3037
|
+
include Aws::Structure
|
3038
|
+
end
|
3039
|
+
|
3040
|
+
# Information used to sort workflows in the returned list.
|
3041
|
+
#
|
3042
|
+
# @api private
|
3043
|
+
#
|
3044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowSortCriteria AWS API Documentation
|
3045
|
+
#
|
3046
|
+
class WorkflowSortCriteria < Aws::EmptyStructure; end
|
3047
|
+
|
3048
|
+
# Information about a workflow.
|
3049
|
+
#
|
3050
|
+
# @!attribute [rw] id
|
3051
|
+
# The system-generated unique ID of a workflow.
|
3052
|
+
# @return [String]
|
3053
|
+
#
|
3054
|
+
# @!attribute [rw] name
|
3055
|
+
# The name of the workflow.
|
3056
|
+
# @return [String]
|
3057
|
+
#
|
3058
|
+
# @!attribute [rw] source_repository_name
|
3059
|
+
# The name of the source repository where the workflow definition file
|
3060
|
+
# is stored.
|
3061
|
+
# @return [String]
|
3062
|
+
#
|
3063
|
+
# @!attribute [rw] source_branch_name
|
3064
|
+
# The name of the branch of the source repository where the workflow
|
3065
|
+
# definition file is stored.
|
3066
|
+
# @return [String]
|
3067
|
+
#
|
3068
|
+
# @!attribute [rw] definition
|
3069
|
+
# Information about the workflow definition file.
|
3070
|
+
# @return [Types::WorkflowDefinitionSummary]
|
3071
|
+
#
|
3072
|
+
# @!attribute [rw] created_time
|
3073
|
+
# The date and time the workflow was created, in coordinated universal
|
3074
|
+
# time (UTC) timestamp format as specified in [RFC 3339][1]
|
3075
|
+
#
|
3076
|
+
#
|
3077
|
+
#
|
3078
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
3079
|
+
# @return [Time]
|
3080
|
+
#
|
3081
|
+
# @!attribute [rw] last_updated_time
|
3082
|
+
# The date and time the workflow was last updated, in coordinated
|
3083
|
+
# universal time (UTC) timestamp format as specified in [RFC 3339][1]
|
3084
|
+
#
|
3085
|
+
#
|
3086
|
+
#
|
3087
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
|
3088
|
+
# @return [Time]
|
3089
|
+
#
|
3090
|
+
# @!attribute [rw] run_mode
|
3091
|
+
# The run mode of the workflow.
|
3092
|
+
# @return [String]
|
3093
|
+
#
|
3094
|
+
# @!attribute [rw] status
|
3095
|
+
# The status of the workflow.
|
3096
|
+
# @return [String]
|
3097
|
+
#
|
3098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/WorkflowSummary AWS API Documentation
|
3099
|
+
#
|
3100
|
+
class WorkflowSummary < Struct.new(
|
3101
|
+
:id,
|
3102
|
+
:name,
|
3103
|
+
:source_repository_name,
|
3104
|
+
:source_branch_name,
|
3105
|
+
:definition,
|
3106
|
+
:created_time,
|
3107
|
+
:last_updated_time,
|
3108
|
+
:run_mode,
|
3109
|
+
:status)
|
3110
|
+
SENSITIVE = []
|
3111
|
+
include Aws::Structure
|
3112
|
+
end
|
3113
|
+
|
2540
3114
|
end
|
2541
3115
|
end
|
data/lib/aws-sdk-codecatalyst.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codecatalyst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|