aws-sdk-codebuild 1.150.0 → 1.152.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-codebuild/client.rb +754 -21
- data/lib/aws-sdk-codebuild/client_api.rb +281 -0
- data/lib/aws-sdk-codebuild/errors.rb +11 -0
- data/lib/aws-sdk-codebuild/types.rb +659 -3
- data/lib/aws-sdk-codebuild.rb +1 -1
- data/sig/client.rbs +121 -10
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +188 -6
- metadata +2 -2
data/lib/aws-sdk-codebuild.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -111,6 +111,18 @@ module Aws
|
|
111
111
|
) -> _BatchGetBuildsResponseSuccess
|
112
112
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetBuildsResponseSuccess
|
113
113
|
|
114
|
+
interface _BatchGetCommandExecutionsResponseSuccess
|
115
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetCommandExecutionsOutput]
|
116
|
+
def command_executions: () -> ::Array[Types::CommandExecution]
|
117
|
+
def command_executions_not_found: () -> ::Array[::String]
|
118
|
+
end
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#batch_get_command_executions-instance_method
|
120
|
+
def batch_get_command_executions: (
|
121
|
+
sandbox_id: ::String,
|
122
|
+
command_execution_ids: Array[::String]
|
123
|
+
) -> _BatchGetCommandExecutionsResponseSuccess
|
124
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetCommandExecutionsResponseSuccess
|
125
|
+
|
114
126
|
interface _BatchGetFleetsResponseSuccess
|
115
127
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetFleetsOutput]
|
116
128
|
def fleets: () -> ::Array[Types::Fleet]
|
@@ -155,6 +167,17 @@ module Aws
|
|
155
167
|
) -> _BatchGetReportsResponseSuccess
|
156
168
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetReportsResponseSuccess
|
157
169
|
|
170
|
+
interface _BatchGetSandboxesResponseSuccess
|
171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetSandboxesOutput]
|
172
|
+
def sandboxes: () -> ::Array[Types::Sandbox]
|
173
|
+
def sandboxes_not_found: () -> ::Array[::String]
|
174
|
+
end
|
175
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#batch_get_sandboxes-instance_method
|
176
|
+
def batch_get_sandboxes: (
|
177
|
+
ids: Array[::String]
|
178
|
+
) -> _BatchGetSandboxesResponseSuccess
|
179
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetSandboxesResponseSuccess
|
180
|
+
|
158
181
|
interface _CreateFleetResponseSuccess
|
159
182
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetOutput]
|
160
183
|
def fleet: () -> Types::Fleet
|
@@ -164,12 +187,13 @@ module Aws
|
|
164
187
|
name: ::String,
|
165
188
|
base_capacity: ::Integer,
|
166
189
|
environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
167
|
-
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
190
|
+
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
168
191
|
?compute_configuration: {
|
169
192
|
v_cpu: ::Integer?,
|
170
193
|
memory: ::Integer?,
|
171
194
|
disk: ::Integer?,
|
172
|
-
machine_type: ("GENERAL" | "NVME")
|
195
|
+
machine_type: ("GENERAL" | "NVME")?,
|
196
|
+
instance_type: ::String?
|
173
197
|
},
|
174
198
|
?scaling_configuration: {
|
175
199
|
scaling_type: ("TARGET_TRACKING_SCALING")?,
|
@@ -300,12 +324,13 @@ module Aws
|
|
300
324
|
environment: {
|
301
325
|
type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
302
326
|
image: ::String,
|
303
|
-
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
327
|
+
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
304
328
|
compute_configuration: {
|
305
329
|
v_cpu: ::Integer?,
|
306
330
|
memory: ::Integer?,
|
307
331
|
disk: ::Integer?,
|
308
|
-
machine_type: ("GENERAL" | "NVME")
|
332
|
+
machine_type: ("GENERAL" | "NVME")?,
|
333
|
+
instance_type: ::String?
|
309
334
|
}?,
|
310
335
|
fleet: {
|
311
336
|
fleet_arn: ::String?
|
@@ -649,6 +674,20 @@ module Aws
|
|
649
674
|
) -> _ListBuildsForProjectResponseSuccess
|
650
675
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBuildsForProjectResponseSuccess
|
651
676
|
|
677
|
+
interface _ListCommandExecutionsForSandboxResponseSuccess
|
678
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCommandExecutionsForSandboxOutput]
|
679
|
+
def command_executions: () -> ::Array[Types::CommandExecution]
|
680
|
+
def next_token: () -> ::String
|
681
|
+
end
|
682
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#list_command_executions_for_sandbox-instance_method
|
683
|
+
def list_command_executions_for_sandbox: (
|
684
|
+
sandbox_id: ::String,
|
685
|
+
?max_results: ::Integer,
|
686
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
687
|
+
?next_token: ::String
|
688
|
+
) -> _ListCommandExecutionsForSandboxResponseSuccess
|
689
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCommandExecutionsForSandboxResponseSuccess
|
690
|
+
|
652
691
|
interface _ListCuratedEnvironmentImagesResponseSuccess
|
653
692
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListCuratedEnvironmentImagesOutput]
|
654
693
|
def platforms: () -> ::Array[Types::EnvironmentPlatform]
|
@@ -732,6 +771,33 @@ module Aws
|
|
732
771
|
) -> _ListReportsForReportGroupResponseSuccess
|
733
772
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReportsForReportGroupResponseSuccess
|
734
773
|
|
774
|
+
interface _ListSandboxesResponseSuccess
|
775
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSandboxesOutput]
|
776
|
+
def ids: () -> ::Array[::String]
|
777
|
+
def next_token: () -> ::String
|
778
|
+
end
|
779
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#list_sandboxes-instance_method
|
780
|
+
def list_sandboxes: (
|
781
|
+
?max_results: ::Integer,
|
782
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
783
|
+
?next_token: ::String
|
784
|
+
) -> _ListSandboxesResponseSuccess
|
785
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSandboxesResponseSuccess
|
786
|
+
|
787
|
+
interface _ListSandboxesForProjectResponseSuccess
|
788
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSandboxesForProjectOutput]
|
789
|
+
def ids: () -> ::Array[::String]
|
790
|
+
def next_token: () -> ::String
|
791
|
+
end
|
792
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#list_sandboxes_for_project-instance_method
|
793
|
+
def list_sandboxes_for_project: (
|
794
|
+
project_name: ::String,
|
795
|
+
?max_results: ::Integer,
|
796
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
797
|
+
?next_token: ::String
|
798
|
+
) -> _ListSandboxesForProjectResponseSuccess
|
799
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSandboxesForProjectResponseSuccess
|
800
|
+
|
735
801
|
interface _ListSharedProjectsResponseSuccess
|
736
802
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSharedProjectsOutput]
|
737
803
|
def next_token: () -> ::String
|
@@ -891,7 +957,7 @@ module Aws
|
|
891
957
|
},
|
892
958
|
?environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
893
959
|
?image_override: ::String,
|
894
|
-
?compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
960
|
+
?compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
895
961
|
?certificate_override: ::String,
|
896
962
|
?cache_override: {
|
897
963
|
type: ("NO_CACHE" | "S3" | "LOCAL"),
|
@@ -1015,7 +1081,7 @@ module Aws
|
|
1015
1081
|
?report_build_batch_status_override: bool,
|
1016
1082
|
?environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
1017
1083
|
?image_override: ::String,
|
1018
|
-
?compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
1084
|
+
?compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
1019
1085
|
?certificate_override: ::String,
|
1020
1086
|
?cache_override: {
|
1021
1087
|
type: ("NO_CACHE" | "S3" | "LOCAL"),
|
@@ -1062,6 +1128,39 @@ module Aws
|
|
1062
1128
|
) -> _StartBuildBatchResponseSuccess
|
1063
1129
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBuildBatchResponseSuccess
|
1064
1130
|
|
1131
|
+
interface _StartCommandExecutionResponseSuccess
|
1132
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartCommandExecutionOutput]
|
1133
|
+
def command_execution: () -> Types::CommandExecution
|
1134
|
+
end
|
1135
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#start_command_execution-instance_method
|
1136
|
+
def start_command_execution: (
|
1137
|
+
sandbox_id: ::String,
|
1138
|
+
command: ::String,
|
1139
|
+
?type: ("SHELL")
|
1140
|
+
) -> _StartCommandExecutionResponseSuccess
|
1141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCommandExecutionResponseSuccess
|
1142
|
+
|
1143
|
+
interface _StartSandboxResponseSuccess
|
1144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSandboxOutput]
|
1145
|
+
def sandbox: () -> Types::Sandbox
|
1146
|
+
end
|
1147
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#start_sandbox-instance_method
|
1148
|
+
def start_sandbox: (
|
1149
|
+
?project_name: ::String,
|
1150
|
+
?idempotency_token: ::String
|
1151
|
+
) -> _StartSandboxResponseSuccess
|
1152
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSandboxResponseSuccess
|
1153
|
+
|
1154
|
+
interface _StartSandboxConnectionResponseSuccess
|
1155
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSandboxConnectionOutput]
|
1156
|
+
def ssm_session: () -> Types::SSMSession
|
1157
|
+
end
|
1158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#start_sandbox_connection-instance_method
|
1159
|
+
def start_sandbox_connection: (
|
1160
|
+
sandbox_id: ::String
|
1161
|
+
) -> _StartSandboxConnectionResponseSuccess
|
1162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSandboxConnectionResponseSuccess
|
1163
|
+
|
1065
1164
|
interface _StopBuildResponseSuccess
|
1066
1165
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopBuildOutput]
|
1067
1166
|
def build: () -> Types::Build
|
@@ -1082,6 +1181,16 @@ module Aws
|
|
1082
1181
|
) -> _StopBuildBatchResponseSuccess
|
1083
1182
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopBuildBatchResponseSuccess
|
1084
1183
|
|
1184
|
+
interface _StopSandboxResponseSuccess
|
1185
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopSandboxOutput]
|
1186
|
+
def sandbox: () -> Types::Sandbox
|
1187
|
+
end
|
1188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeBuild/Client.html#stop_sandbox-instance_method
|
1189
|
+
def stop_sandbox: (
|
1190
|
+
id: ::String
|
1191
|
+
) -> _StopSandboxResponseSuccess
|
1192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopSandboxResponseSuccess
|
1193
|
+
|
1085
1194
|
interface _UpdateFleetResponseSuccess
|
1086
1195
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetOutput]
|
1087
1196
|
def fleet: () -> Types::Fleet
|
@@ -1091,12 +1200,13 @@ module Aws
|
|
1091
1200
|
arn: ::String,
|
1092
1201
|
?base_capacity: ::Integer,
|
1093
1202
|
?environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
1094
|
-
?compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
1203
|
+
?compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
1095
1204
|
?compute_configuration: {
|
1096
1205
|
v_cpu: ::Integer?,
|
1097
1206
|
memory: ::Integer?,
|
1098
1207
|
disk: ::Integer?,
|
1099
|
-
machine_type: ("GENERAL" | "NVME")
|
1208
|
+
machine_type: ("GENERAL" | "NVME")?,
|
1209
|
+
instance_type: ::String?
|
1100
1210
|
},
|
1101
1211
|
?scaling_configuration: {
|
1102
1212
|
scaling_type: ("TARGET_TRACKING_SCALING")?,
|
@@ -1227,12 +1337,13 @@ module Aws
|
|
1227
1337
|
?environment: {
|
1228
1338
|
type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM"),
|
1229
1339
|
image: ::String,
|
1230
|
-
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE"),
|
1340
|
+
compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE"),
|
1231
1341
|
compute_configuration: {
|
1232
1342
|
v_cpu: ::Integer?,
|
1233
1343
|
memory: ::Integer?,
|
1234
1344
|
disk: ::Integer?,
|
1235
|
-
machine_type: ("GENERAL" | "NVME")
|
1345
|
+
machine_type: ("GENERAL" | "NVME")?,
|
1346
|
+
instance_type: ::String?
|
1236
1347
|
}?,
|
1237
1348
|
fleet: {
|
1238
1349
|
fleet_arn: ::String?
|
data/sig/errors.rbs
CHANGED
@@ -13,6 +13,8 @@ module Aws
|
|
13
13
|
|
14
14
|
class AccountLimitExceededException < ::Aws::Errors::ServiceError
|
15
15
|
end
|
16
|
+
class AccountSuspendedException < ::Aws::Errors::ServiceError
|
17
|
+
end
|
16
18
|
class InvalidInputException < ::Aws::Errors::ServiceError
|
17
19
|
end
|
18
20
|
class OAuthProviderException < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
@@ -11,6 +11,9 @@ module Aws::CodeBuild
|
|
11
11
|
class AccountLimitExceededException < Aws::EmptyStructure
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccountSuspendedException < Aws::EmptyStructure
|
15
|
+
end
|
16
|
+
|
14
17
|
class AutoRetryConfig
|
15
18
|
attr_accessor auto_retry_limit: ::Integer
|
16
19
|
attr_accessor auto_retry_number: ::Integer
|
@@ -52,6 +55,18 @@ module Aws::CodeBuild
|
|
52
55
|
SENSITIVE: []
|
53
56
|
end
|
54
57
|
|
58
|
+
class BatchGetCommandExecutionsInput
|
59
|
+
attr_accessor sandbox_id: ::String
|
60
|
+
attr_accessor command_execution_ids: ::Array[::String]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class BatchGetCommandExecutionsOutput
|
65
|
+
attr_accessor command_executions: ::Array[Types::CommandExecution]
|
66
|
+
attr_accessor command_executions_not_found: ::Array[::String]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
55
70
|
class BatchGetFleetsInput
|
56
71
|
attr_accessor names: ::Array[::String]
|
57
72
|
SENSITIVE: []
|
@@ -96,6 +111,17 @@ module Aws::CodeBuild
|
|
96
111
|
SENSITIVE: []
|
97
112
|
end
|
98
113
|
|
114
|
+
class BatchGetSandboxesInput
|
115
|
+
attr_accessor ids: ::Array[::String]
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class BatchGetSandboxesOutput
|
120
|
+
attr_accessor sandboxes: ::Array[Types::Sandbox]
|
121
|
+
attr_accessor sandboxes_not_found: ::Array[::String]
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
99
125
|
class BatchRestrictions
|
100
126
|
attr_accessor maximum_builds_allowed: ::Integer
|
101
127
|
attr_accessor compute_types_allowed: ::Array[::String]
|
@@ -272,11 +298,29 @@ module Aws::CodeBuild
|
|
272
298
|
SENSITIVE: []
|
273
299
|
end
|
274
300
|
|
301
|
+
class CommandExecution
|
302
|
+
attr_accessor id: ::String
|
303
|
+
attr_accessor sandbox_id: ::String
|
304
|
+
attr_accessor submit_time: ::Time
|
305
|
+
attr_accessor start_time: ::Time
|
306
|
+
attr_accessor end_time: ::Time
|
307
|
+
attr_accessor status: ::String
|
308
|
+
attr_accessor command: ::String
|
309
|
+
attr_accessor type: ("SHELL")
|
310
|
+
attr_accessor exit_code: ::String
|
311
|
+
attr_accessor standard_output_content: ::String
|
312
|
+
attr_accessor standard_err_content: ::String
|
313
|
+
attr_accessor logs: Types::LogsLocation
|
314
|
+
attr_accessor sandbox_arn: ::String
|
315
|
+
SENSITIVE: [:command, :standard_output_content, :standard_err_content]
|
316
|
+
end
|
317
|
+
|
275
318
|
class ComputeConfiguration
|
276
319
|
attr_accessor v_cpu: ::Integer
|
277
320
|
attr_accessor memory: ::Integer
|
278
321
|
attr_accessor disk: ::Integer
|
279
322
|
attr_accessor machine_type: ("GENERAL" | "NVME")
|
323
|
+
attr_accessor instance_type: ::String
|
280
324
|
SENSITIVE: []
|
281
325
|
end
|
282
326
|
|
@@ -284,7 +328,7 @@ module Aws::CodeBuild
|
|
284
328
|
attr_accessor name: ::String
|
285
329
|
attr_accessor base_capacity: ::Integer
|
286
330
|
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
287
|
-
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
331
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
288
332
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
289
333
|
attr_accessor scaling_configuration: Types::ScalingConfigurationInput
|
290
334
|
attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
|
@@ -509,7 +553,7 @@ module Aws::CodeBuild
|
|
509
553
|
attr_accessor status: Types::FleetStatus
|
510
554
|
attr_accessor base_capacity: ::Integer
|
511
555
|
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
512
|
-
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
556
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
513
557
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
514
558
|
attr_accessor scaling_configuration: Types::ScalingConfigurationOutput
|
515
559
|
attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
|
@@ -642,6 +686,20 @@ module Aws::CodeBuild
|
|
642
686
|
SENSITIVE: []
|
643
687
|
end
|
644
688
|
|
689
|
+
class ListCommandExecutionsForSandboxInput
|
690
|
+
attr_accessor sandbox_id: ::String
|
691
|
+
attr_accessor max_results: ::Integer
|
692
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
693
|
+
attr_accessor next_token: ::String
|
694
|
+
SENSITIVE: [:next_token]
|
695
|
+
end
|
696
|
+
|
697
|
+
class ListCommandExecutionsForSandboxOutput
|
698
|
+
attr_accessor command_executions: ::Array[Types::CommandExecution]
|
699
|
+
attr_accessor next_token: ::String
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
645
703
|
class ListCuratedEnvironmentImagesInput < Aws::EmptyStructure
|
646
704
|
end
|
647
705
|
|
@@ -720,6 +778,33 @@ module Aws::CodeBuild
|
|
720
778
|
SENSITIVE: []
|
721
779
|
end
|
722
780
|
|
781
|
+
class ListSandboxesForProjectInput
|
782
|
+
attr_accessor project_name: ::String
|
783
|
+
attr_accessor max_results: ::Integer
|
784
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
785
|
+
attr_accessor next_token: ::String
|
786
|
+
SENSITIVE: [:next_token]
|
787
|
+
end
|
788
|
+
|
789
|
+
class ListSandboxesForProjectOutput
|
790
|
+
attr_accessor ids: ::Array[::String]
|
791
|
+
attr_accessor next_token: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class ListSandboxesInput
|
796
|
+
attr_accessor max_results: ::Integer
|
797
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
798
|
+
attr_accessor next_token: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListSandboxesOutput
|
803
|
+
attr_accessor ids: ::Array[::String]
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
723
808
|
class ListSharedProjectsInput
|
724
809
|
attr_accessor sort_by: ("ARN" | "MODIFIED_TIME")
|
725
810
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
@@ -862,7 +947,7 @@ module Aws::CodeBuild
|
|
862
947
|
class ProjectEnvironment
|
863
948
|
attr_accessor type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
864
949
|
attr_accessor image: ::String
|
865
|
-
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
950
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
866
951
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
867
952
|
attr_accessor fleet: Types::ProjectFleet
|
868
953
|
attr_accessor environment_variables: ::Array[Types::EnvironmentVariable]
|
@@ -1036,6 +1121,60 @@ module Aws::CodeBuild
|
|
1036
1121
|
SENSITIVE: []
|
1037
1122
|
end
|
1038
1123
|
|
1124
|
+
class SSMSession
|
1125
|
+
attr_accessor session_id: ::String
|
1126
|
+
attr_accessor token_value: ::String
|
1127
|
+
attr_accessor stream_url: ::String
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class Sandbox
|
1132
|
+
attr_accessor id: ::String
|
1133
|
+
attr_accessor arn: ::String
|
1134
|
+
attr_accessor project_name: ::String
|
1135
|
+
attr_accessor request_time: ::Time
|
1136
|
+
attr_accessor start_time: ::Time
|
1137
|
+
attr_accessor end_time: ::Time
|
1138
|
+
attr_accessor status: ::String
|
1139
|
+
attr_accessor source: Types::ProjectSource
|
1140
|
+
attr_accessor source_version: ::String
|
1141
|
+
attr_accessor secondary_sources: ::Array[Types::ProjectSource]
|
1142
|
+
attr_accessor secondary_source_versions: ::Array[Types::ProjectSourceVersion]
|
1143
|
+
attr_accessor environment: Types::ProjectEnvironment
|
1144
|
+
attr_accessor file_system_locations: ::Array[Types::ProjectFileSystemLocation]
|
1145
|
+
attr_accessor timeout_in_minutes: ::Integer
|
1146
|
+
attr_accessor queued_timeout_in_minutes: ::Integer
|
1147
|
+
attr_accessor vpc_config: Types::VpcConfig
|
1148
|
+
attr_accessor log_config: Types::LogsConfig
|
1149
|
+
attr_accessor encryption_key: ::String
|
1150
|
+
attr_accessor service_role: ::String
|
1151
|
+
attr_accessor current_session: Types::SandboxSession
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class SandboxSession
|
1156
|
+
attr_accessor id: ::String
|
1157
|
+
attr_accessor status: ::String
|
1158
|
+
attr_accessor start_time: ::Time
|
1159
|
+
attr_accessor end_time: ::Time
|
1160
|
+
attr_accessor current_phase: ::String
|
1161
|
+
attr_accessor phases: ::Array[Types::SandboxSessionPhase]
|
1162
|
+
attr_accessor resolved_source_version: ::String
|
1163
|
+
attr_accessor logs: Types::LogsLocation
|
1164
|
+
attr_accessor network_interface: Types::NetworkInterface
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class SandboxSessionPhase
|
1169
|
+
attr_accessor phase_type: ::String
|
1170
|
+
attr_accessor phase_status: ("SUCCEEDED" | "FAILED" | "FAULT" | "TIMED_OUT" | "IN_PROGRESS" | "STOPPED")
|
1171
|
+
attr_accessor start_time: ::Time
|
1172
|
+
attr_accessor end_time: ::Time
|
1173
|
+
attr_accessor duration_in_seconds: ::Integer
|
1174
|
+
attr_accessor contexts: ::Array[Types::PhaseContext]
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1039
1178
|
class ScalingConfigurationInput
|
1040
1179
|
attr_accessor scaling_type: ("TARGET_TRACKING_SCALING")
|
1041
1180
|
attr_accessor target_tracking_scaling_configs: ::Array[Types::TargetTrackingScalingConfiguration]
|
@@ -1090,7 +1229,7 @@ module Aws::CodeBuild
|
|
1090
1229
|
attr_accessor report_build_batch_status_override: bool
|
1091
1230
|
attr_accessor environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
1092
1231
|
attr_accessor image_override: ::String
|
1093
|
-
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
1232
|
+
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
1094
1233
|
attr_accessor certificate_override: ::String
|
1095
1234
|
attr_accessor cache_override: Types::ProjectCache
|
1096
1235
|
attr_accessor service_role_override: ::String
|
@@ -1131,7 +1270,7 @@ module Aws::CodeBuild
|
|
1131
1270
|
attr_accessor build_status_config_override: Types::BuildStatusConfig
|
1132
1271
|
attr_accessor environment_type_override: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
1133
1272
|
attr_accessor image_override: ::String
|
1134
|
-
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
1273
|
+
attr_accessor compute_type_override: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
1135
1274
|
attr_accessor certificate_override: ::String
|
1136
1275
|
attr_accessor cache_override: Types::ProjectCache
|
1137
1276
|
attr_accessor service_role_override: ::String
|
@@ -1154,6 +1293,39 @@ module Aws::CodeBuild
|
|
1154
1293
|
SENSITIVE: []
|
1155
1294
|
end
|
1156
1295
|
|
1296
|
+
class StartCommandExecutionInput
|
1297
|
+
attr_accessor sandbox_id: ::String
|
1298
|
+
attr_accessor command: ::String
|
1299
|
+
attr_accessor type: ("SHELL")
|
1300
|
+
SENSITIVE: [:command]
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
class StartCommandExecutionOutput
|
1304
|
+
attr_accessor command_execution: Types::CommandExecution
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class StartSandboxConnectionInput
|
1309
|
+
attr_accessor sandbox_id: ::String
|
1310
|
+
SENSITIVE: []
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class StartSandboxConnectionOutput
|
1314
|
+
attr_accessor ssm_session: Types::SSMSession
|
1315
|
+
SENSITIVE: []
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class StartSandboxInput
|
1319
|
+
attr_accessor project_name: ::String
|
1320
|
+
attr_accessor idempotency_token: ::String
|
1321
|
+
SENSITIVE: [:idempotency_token]
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
class StartSandboxOutput
|
1325
|
+
attr_accessor sandbox: Types::Sandbox
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1157
1329
|
class StopBuildBatchInput
|
1158
1330
|
attr_accessor id: ::String
|
1159
1331
|
SENSITIVE: []
|
@@ -1174,6 +1346,16 @@ module Aws::CodeBuild
|
|
1174
1346
|
SENSITIVE: []
|
1175
1347
|
end
|
1176
1348
|
|
1349
|
+
class StopSandboxInput
|
1350
|
+
attr_accessor id: ::String
|
1351
|
+
SENSITIVE: []
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
class StopSandboxOutput
|
1355
|
+
attr_accessor sandbox: Types::Sandbox
|
1356
|
+
SENSITIVE: []
|
1357
|
+
end
|
1358
|
+
|
1177
1359
|
class Tag
|
1178
1360
|
attr_accessor key: ::String
|
1179
1361
|
attr_accessor value: ::String
|
@@ -1216,7 +1398,7 @@ module Aws::CodeBuild
|
|
1216
1398
|
attr_accessor arn: ::String
|
1217
1399
|
attr_accessor base_capacity: ::Integer
|
1218
1400
|
attr_accessor environment_type: ("WINDOWS_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_LAMBDA_CONTAINER" | "ARM_LAMBDA_CONTAINER" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2" | "MAC_ARM")
|
1219
|
-
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE")
|
1401
|
+
attr_accessor compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "BUILD_LAMBDA_1GB" | "BUILD_LAMBDA_2GB" | "BUILD_LAMBDA_4GB" | "BUILD_LAMBDA_8GB" | "BUILD_LAMBDA_10GB" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE")
|
1220
1402
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
1221
1403
|
attr_accessor scaling_configuration: Types::ScalingConfigurationInput
|
1222
1404
|
attr_accessor overflow_behavior: ("QUEUE" | "ON_DEMAND")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codebuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.152.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: 2025-04-
|
11
|
+
date: 2025-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|