@aws-sdk/client-codebuild 3.682.0 → 3.686.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.
- package/dist-cjs/index.js +10 -0
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +7 -1
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +7 -1
- package/dist-types/commands/BatchGetFleetsCommand.d.ts +7 -1
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +7 -1
- package/dist-types/commands/CreateFleetCommand.d.ts +14 -2
- package/dist-types/commands/CreateProjectCommand.d.ts +14 -2
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +7 -1
- package/dist-types/commands/RetryBuildCommand.d.ts +7 -1
- package/dist-types/commands/StartBuildBatchCommand.d.ts +8 -2
- package/dist-types/commands/StartBuildCommand.d.ts +8 -2
- package/dist-types/commands/StopBuildBatchCommand.d.ts +7 -1
- package/dist-types/commands/StopBuildCommand.d.ts +7 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +14 -2
- package/dist-types/commands/UpdateProjectCommand.d.ts +14 -2
- package/dist-types/models/models_0.d.ts +227 -60
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -93,6 +93,7 @@ __export(src_exports, {
|
|
|
93
93
|
ListSharedReportGroupsCommand: () => ListSharedReportGroupsCommand,
|
|
94
94
|
ListSourceCredentialsCommand: () => ListSourceCredentialsCommand,
|
|
95
95
|
LogsConfigStatusType: () => LogsConfigStatusType,
|
|
96
|
+
MachineType: () => MachineType,
|
|
96
97
|
OAuthProviderException: () => OAuthProviderException,
|
|
97
98
|
PlatformType: () => PlatformType,
|
|
98
99
|
ProjectSortByType: () => ProjectSortByType,
|
|
@@ -393,7 +394,12 @@ var CacheType = {
|
|
|
393
394
|
NO_CACHE: "NO_CACHE",
|
|
394
395
|
S3: "S3"
|
|
395
396
|
};
|
|
397
|
+
var MachineType = {
|
|
398
|
+
GENERAL: "GENERAL",
|
|
399
|
+
NVME: "NVME"
|
|
400
|
+
};
|
|
396
401
|
var ComputeType = {
|
|
402
|
+
ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE",
|
|
397
403
|
BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE",
|
|
398
404
|
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
399
405
|
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
@@ -1716,6 +1722,7 @@ var de_ResourceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput
|
|
|
1716
1722
|
var se_CreateFleetInput = /* @__PURE__ */ __name((input, context) => {
|
|
1717
1723
|
return (0, import_smithy_client.take)(input, {
|
|
1718
1724
|
baseCapacity: [],
|
|
1725
|
+
computeConfiguration: import_smithy_client._json,
|
|
1719
1726
|
computeType: [],
|
|
1720
1727
|
environmentType: [],
|
|
1721
1728
|
fleetServiceRole: [],
|
|
@@ -1761,6 +1768,7 @@ var se_UpdateFleetInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1761
1768
|
return (0, import_smithy_client.take)(input, {
|
|
1762
1769
|
arn: [],
|
|
1763
1770
|
baseCapacity: [],
|
|
1771
|
+
computeConfiguration: import_smithy_client._json,
|
|
1764
1772
|
computeType: [],
|
|
1765
1773
|
environmentType: [],
|
|
1766
1774
|
fleetServiceRole: [],
|
|
@@ -2019,6 +2027,7 @@ var de_Fleet = /* @__PURE__ */ __name((output, context) => {
|
|
|
2019
2027
|
return (0, import_smithy_client.take)(output, {
|
|
2020
2028
|
arn: import_smithy_client.expectString,
|
|
2021
2029
|
baseCapacity: import_smithy_client.expectInt32,
|
|
2030
|
+
computeConfiguration: import_smithy_client._json,
|
|
2022
2031
|
computeType: import_smithy_client.expectString,
|
|
2023
2032
|
created: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2024
2033
|
environmentType: import_smithy_client.expectString,
|
|
@@ -3143,6 +3152,7 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3143
3152
|
StatusType,
|
|
3144
3153
|
CacheMode,
|
|
3145
3154
|
CacheType,
|
|
3155
|
+
MachineType,
|
|
3146
3156
|
ComputeType,
|
|
3147
3157
|
EnvironmentVariableType,
|
|
3148
3158
|
ImagePullCredentialsType,
|
|
@@ -71,7 +71,12 @@ export const CacheType = {
|
|
|
71
71
|
NO_CACHE: "NO_CACHE",
|
|
72
72
|
S3: "S3",
|
|
73
73
|
};
|
|
74
|
+
export const MachineType = {
|
|
75
|
+
GENERAL: "GENERAL",
|
|
76
|
+
NVME: "NVME",
|
|
77
|
+
};
|
|
74
78
|
export const ComputeType = {
|
|
79
|
+
ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE",
|
|
75
80
|
BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE",
|
|
76
81
|
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
77
82
|
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
@@ -1032,6 +1032,7 @@ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
|
1032
1032
|
const se_CreateFleetInput = (input, context) => {
|
|
1033
1033
|
return take(input, {
|
|
1034
1034
|
baseCapacity: [],
|
|
1035
|
+
computeConfiguration: _json,
|
|
1035
1036
|
computeType: [],
|
|
1036
1037
|
environmentType: [],
|
|
1037
1038
|
fleetServiceRole: [],
|
|
@@ -1079,6 +1080,7 @@ const se_UpdateFleetInput = (input, context) => {
|
|
|
1079
1080
|
return take(input, {
|
|
1080
1081
|
arn: [],
|
|
1081
1082
|
baseCapacity: [],
|
|
1083
|
+
computeConfiguration: _json,
|
|
1082
1084
|
computeType: [],
|
|
1083
1085
|
environmentType: [],
|
|
1084
1086
|
fleetServiceRole: [],
|
|
@@ -1351,6 +1353,7 @@ const de_Fleet = (output, context) => {
|
|
|
1351
1353
|
return take(output, {
|
|
1352
1354
|
arn: __expectString,
|
|
1353
1355
|
baseCapacity: __expectInt32,
|
|
1356
|
+
computeConfiguration: _json,
|
|
1354
1357
|
computeType: __expectString,
|
|
1355
1358
|
created: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1356
1359
|
environmentType: __expectString,
|
|
@@ -146,7 +146,13 @@ declare const BatchGetBuildBatchesCommand_base: {
|
|
|
146
146
|
* // environment: { // ProjectEnvironment
|
|
147
147
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
148
148
|
* // image: "STRING_VALUE", // required
|
|
149
|
-
* // computeType: "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", // required
|
|
149
|
+
* // computeType: "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", // required
|
|
150
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
151
|
+
* // vCpu: Number("long"),
|
|
152
|
+
* // memory: Number("long"),
|
|
153
|
+
* // disk: Number("long"),
|
|
154
|
+
* // machineType: "GENERAL" || "NVME",
|
|
155
|
+
* // },
|
|
150
156
|
* // fleet: { // ProjectFleet
|
|
151
157
|
* // fleetArn: "STRING_VALUE",
|
|
152
158
|
* // },
|
|
@@ -147,7 +147,13 @@ declare const BatchGetBuildsCommand_base: {
|
|
|
147
147
|
* // environment: { // ProjectEnvironment
|
|
148
148
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
149
149
|
* // image: "STRING_VALUE", // required
|
|
150
|
-
* // computeType: "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", // required
|
|
150
|
+
* // computeType: "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", // required
|
|
151
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
152
|
+
* // vCpu: Number("long"),
|
|
153
|
+
* // memory: Number("long"),
|
|
154
|
+
* // disk: Number("long"),
|
|
155
|
+
* // machineType: "GENERAL" || "NVME",
|
|
156
|
+
* // },
|
|
151
157
|
* // fleet: { // ProjectFleet
|
|
152
158
|
* // fleetArn: "STRING_VALUE",
|
|
153
159
|
* // },
|
|
@@ -56,7 +56,13 @@ declare const BatchGetFleetsCommand_base: {
|
|
|
56
56
|
* // },
|
|
57
57
|
* // baseCapacity: Number("int"),
|
|
58
58
|
* // environmentType: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
59
|
-
* // computeType: "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",
|
|
59
|
+
* // computeType: "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",
|
|
60
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
61
|
+
* // vCpu: Number("long"),
|
|
62
|
+
* // memory: Number("long"),
|
|
63
|
+
* // disk: Number("long"),
|
|
64
|
+
* // machineType: "GENERAL" || "NVME",
|
|
65
|
+
* // },
|
|
60
66
|
* // scalingConfiguration: { // ScalingConfigurationOutput
|
|
61
67
|
* // scalingType: "TARGET_TRACKING_SCALING",
|
|
62
68
|
* // targetTrackingScalingConfigs: [ // TargetTrackingScalingConfigurations
|
|
@@ -132,7 +132,13 @@ declare const BatchGetProjectsCommand_base: {
|
|
|
132
132
|
* // environment: { // ProjectEnvironment
|
|
133
133
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
134
134
|
* // image: "STRING_VALUE", // required
|
|
135
|
-
* // computeType: "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", // required
|
|
135
|
+
* // computeType: "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", // required
|
|
136
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
137
|
+
* // vCpu: Number("long"),
|
|
138
|
+
* // memory: Number("long"),
|
|
139
|
+
* // disk: Number("long"),
|
|
140
|
+
* // machineType: "GENERAL" || "NVME",
|
|
141
|
+
* // },
|
|
136
142
|
* // fleet: { // ProjectFleet
|
|
137
143
|
* // fleetArn: "STRING_VALUE",
|
|
138
144
|
* // },
|
|
@@ -38,7 +38,13 @@ declare const CreateFleetCommand_base: {
|
|
|
38
38
|
* name: "STRING_VALUE", // required
|
|
39
39
|
* baseCapacity: Number("int"), // required
|
|
40
40
|
* environmentType: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
41
|
-
* computeType: "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", // required
|
|
41
|
+
* computeType: "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", // required
|
|
42
|
+
* computeConfiguration: { // ComputeConfiguration
|
|
43
|
+
* vCpu: Number("long"),
|
|
44
|
+
* memory: Number("long"),
|
|
45
|
+
* disk: Number("long"),
|
|
46
|
+
* machineType: "GENERAL" || "NVME",
|
|
47
|
+
* },
|
|
42
48
|
* scalingConfiguration: { // ScalingConfigurationInput
|
|
43
49
|
* scalingType: "TARGET_TRACKING_SCALING",
|
|
44
50
|
* targetTrackingScalingConfigs: [ // TargetTrackingScalingConfigurations
|
|
@@ -96,7 +102,13 @@ declare const CreateFleetCommand_base: {
|
|
|
96
102
|
* // },
|
|
97
103
|
* // baseCapacity: Number("int"),
|
|
98
104
|
* // environmentType: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
99
|
-
* // computeType: "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",
|
|
105
|
+
* // computeType: "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",
|
|
106
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
107
|
+
* // vCpu: Number("long"),
|
|
108
|
+
* // memory: Number("long"),
|
|
109
|
+
* // disk: Number("long"),
|
|
110
|
+
* // machineType: "GENERAL" || "NVME",
|
|
111
|
+
* // },
|
|
100
112
|
* // scalingConfiguration: { // ScalingConfigurationOutput
|
|
101
113
|
* // scalingType: "TARGET_TRACKING_SCALING",
|
|
102
114
|
* // targetTrackingScalingConfigs: [ // TargetTrackingScalingConfigurations
|
|
@@ -122,7 +122,13 @@ declare const CreateProjectCommand_base: {
|
|
|
122
122
|
* environment: { // ProjectEnvironment
|
|
123
123
|
* type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
124
124
|
* image: "STRING_VALUE", // required
|
|
125
|
-
* computeType: "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", // required
|
|
125
|
+
* computeType: "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", // required
|
|
126
|
+
* computeConfiguration: { // ComputeConfiguration
|
|
127
|
+
* vCpu: Number("long"),
|
|
128
|
+
* memory: Number("long"),
|
|
129
|
+
* disk: Number("long"),
|
|
130
|
+
* machineType: "GENERAL" || "NVME",
|
|
131
|
+
* },
|
|
126
132
|
* fleet: { // ProjectFleet
|
|
127
133
|
* fleetArn: "STRING_VALUE",
|
|
128
134
|
* },
|
|
@@ -290,7 +296,13 @@ declare const CreateProjectCommand_base: {
|
|
|
290
296
|
* // environment: { // ProjectEnvironment
|
|
291
297
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
292
298
|
* // image: "STRING_VALUE", // required
|
|
293
|
-
* // computeType: "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", // required
|
|
299
|
+
* // computeType: "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", // required
|
|
300
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
301
|
+
* // vCpu: Number("long"),
|
|
302
|
+
* // memory: Number("long"),
|
|
303
|
+
* // disk: Number("long"),
|
|
304
|
+
* // machineType: "GENERAL" || "NVME",
|
|
305
|
+
* // },
|
|
294
306
|
* // fleet: { // ProjectFleet
|
|
295
307
|
* // fleetArn: "STRING_VALUE",
|
|
296
308
|
* // },
|
|
@@ -145,7 +145,13 @@ declare const RetryBuildBatchCommand_base: {
|
|
|
145
145
|
* // environment: { // ProjectEnvironment
|
|
146
146
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
147
147
|
* // image: "STRING_VALUE", // required
|
|
148
|
-
* // computeType: "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", // required
|
|
148
|
+
* // computeType: "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", // required
|
|
149
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
150
|
+
* // vCpu: Number("long"),
|
|
151
|
+
* // memory: Number("long"),
|
|
152
|
+
* // disk: Number("long"),
|
|
153
|
+
* // machineType: "GENERAL" || "NVME",
|
|
154
|
+
* // },
|
|
149
155
|
* // fleet: { // ProjectFleet
|
|
150
156
|
* // fleetArn: "STRING_VALUE",
|
|
151
157
|
* // },
|
|
@@ -145,7 +145,13 @@ declare const RetryBuildCommand_base: {
|
|
|
145
145
|
* // environment: { // ProjectEnvironment
|
|
146
146
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
147
147
|
* // image: "STRING_VALUE", // required
|
|
148
|
-
* // computeType: "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", // required
|
|
148
|
+
* // computeType: "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", // required
|
|
149
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
150
|
+
* // vCpu: Number("long"),
|
|
151
|
+
* // memory: Number("long"),
|
|
152
|
+
* // disk: Number("long"),
|
|
153
|
+
* // machineType: "GENERAL" || "NVME",
|
|
154
|
+
* // },
|
|
149
155
|
* // fleet: { // ProjectFleet
|
|
150
156
|
* // fleetArn: "STRING_VALUE",
|
|
151
157
|
* // },
|
|
@@ -113,7 +113,7 @@ declare const StartBuildBatchCommand_base: {
|
|
|
113
113
|
* reportBuildBatchStatusOverride: true || false,
|
|
114
114
|
* environmentTypeOverride: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
115
115
|
* imageOverride: "STRING_VALUE",
|
|
116
|
-
* computeTypeOverride: "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",
|
|
116
|
+
* computeTypeOverride: "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",
|
|
117
117
|
* certificateOverride: "STRING_VALUE",
|
|
118
118
|
* cacheOverride: { // ProjectCache
|
|
119
119
|
* type: "NO_CACHE" || "S3" || "LOCAL", // required
|
|
@@ -266,7 +266,13 @@ declare const StartBuildBatchCommand_base: {
|
|
|
266
266
|
* // environment: { // ProjectEnvironment
|
|
267
267
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
268
268
|
* // image: "STRING_VALUE", // required
|
|
269
|
-
* // computeType: "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", // required
|
|
269
|
+
* // computeType: "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", // required
|
|
270
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
271
|
+
* // vCpu: Number("long"),
|
|
272
|
+
* // memory: Number("long"),
|
|
273
|
+
* // disk: Number("long"),
|
|
274
|
+
* // machineType: "GENERAL" || "NVME",
|
|
275
|
+
* // },
|
|
270
276
|
* // fleet: { // ProjectFleet
|
|
271
277
|
* // fleetArn: "STRING_VALUE",
|
|
272
278
|
* // },
|
|
@@ -120,7 +120,7 @@ declare const StartBuildCommand_base: {
|
|
|
120
120
|
* },
|
|
121
121
|
* environmentTypeOverride: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
122
122
|
* imageOverride: "STRING_VALUE",
|
|
123
|
-
* computeTypeOverride: "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",
|
|
123
|
+
* computeTypeOverride: "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",
|
|
124
124
|
* certificateOverride: "STRING_VALUE",
|
|
125
125
|
* cacheOverride: { // ProjectCache
|
|
126
126
|
* type: "NO_CACHE" || "S3" || "LOCAL", // required
|
|
@@ -266,7 +266,13 @@ declare const StartBuildCommand_base: {
|
|
|
266
266
|
* // environment: { // ProjectEnvironment
|
|
267
267
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
268
268
|
* // image: "STRING_VALUE", // required
|
|
269
|
-
* // computeType: "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", // required
|
|
269
|
+
* // computeType: "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", // required
|
|
270
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
271
|
+
* // vCpu: Number("long"),
|
|
272
|
+
* // memory: Number("long"),
|
|
273
|
+
* // disk: Number("long"),
|
|
274
|
+
* // machineType: "GENERAL" || "NVME",
|
|
275
|
+
* // },
|
|
270
276
|
* // fleet: { // ProjectFleet
|
|
271
277
|
* // fleetArn: "STRING_VALUE",
|
|
272
278
|
* // },
|
|
@@ -143,7 +143,13 @@ declare const StopBuildBatchCommand_base: {
|
|
|
143
143
|
* // environment: { // ProjectEnvironment
|
|
144
144
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
145
145
|
* // image: "STRING_VALUE", // required
|
|
146
|
-
* // computeType: "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", // required
|
|
146
|
+
* // computeType: "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", // required
|
|
147
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
148
|
+
* // vCpu: Number("long"),
|
|
149
|
+
* // memory: Number("long"),
|
|
150
|
+
* // disk: Number("long"),
|
|
151
|
+
* // machineType: "GENERAL" || "NVME",
|
|
152
|
+
* // },
|
|
147
153
|
* // fleet: { // ProjectFleet
|
|
148
154
|
* // fleetArn: "STRING_VALUE",
|
|
149
155
|
* // },
|
|
@@ -144,7 +144,13 @@ declare const StopBuildCommand_base: {
|
|
|
144
144
|
* // environment: { // ProjectEnvironment
|
|
145
145
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
146
146
|
* // image: "STRING_VALUE", // required
|
|
147
|
-
* // computeType: "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", // required
|
|
147
|
+
* // computeType: "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", // required
|
|
148
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
149
|
+
* // vCpu: Number("long"),
|
|
150
|
+
* // memory: Number("long"),
|
|
151
|
+
* // disk: Number("long"),
|
|
152
|
+
* // machineType: "GENERAL" || "NVME",
|
|
153
|
+
* // },
|
|
148
154
|
* // fleet: { // ProjectFleet
|
|
149
155
|
* // fleetArn: "STRING_VALUE",
|
|
150
156
|
* // },
|
|
@@ -38,7 +38,13 @@ declare const UpdateFleetCommand_base: {
|
|
|
38
38
|
* arn: "STRING_VALUE", // required
|
|
39
39
|
* baseCapacity: Number("int"),
|
|
40
40
|
* environmentType: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
41
|
-
* computeType: "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",
|
|
41
|
+
* computeType: "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",
|
|
42
|
+
* computeConfiguration: { // ComputeConfiguration
|
|
43
|
+
* vCpu: Number("long"),
|
|
44
|
+
* memory: Number("long"),
|
|
45
|
+
* disk: Number("long"),
|
|
46
|
+
* machineType: "GENERAL" || "NVME",
|
|
47
|
+
* },
|
|
42
48
|
* scalingConfiguration: { // ScalingConfigurationInput
|
|
43
49
|
* scalingType: "TARGET_TRACKING_SCALING",
|
|
44
50
|
* targetTrackingScalingConfigs: [ // TargetTrackingScalingConfigurations
|
|
@@ -96,7 +102,13 @@ declare const UpdateFleetCommand_base: {
|
|
|
96
102
|
* // },
|
|
97
103
|
* // baseCapacity: Number("int"),
|
|
98
104
|
* // environmentType: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM",
|
|
99
|
-
* // computeType: "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",
|
|
105
|
+
* // computeType: "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",
|
|
106
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
107
|
+
* // vCpu: Number("long"),
|
|
108
|
+
* // memory: Number("long"),
|
|
109
|
+
* // disk: Number("long"),
|
|
110
|
+
* // machineType: "GENERAL" || "NVME",
|
|
111
|
+
* // },
|
|
100
112
|
* // scalingConfiguration: { // ScalingConfigurationOutput
|
|
101
113
|
* // scalingType: "TARGET_TRACKING_SCALING",
|
|
102
114
|
* // targetTrackingScalingConfigs: [ // TargetTrackingScalingConfigurations
|
|
@@ -122,7 +122,13 @@ declare const UpdateProjectCommand_base: {
|
|
|
122
122
|
* environment: { // ProjectEnvironment
|
|
123
123
|
* type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
124
124
|
* image: "STRING_VALUE", // required
|
|
125
|
-
* computeType: "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", // required
|
|
125
|
+
* computeType: "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", // required
|
|
126
|
+
* computeConfiguration: { // ComputeConfiguration
|
|
127
|
+
* vCpu: Number("long"),
|
|
128
|
+
* memory: Number("long"),
|
|
129
|
+
* disk: Number("long"),
|
|
130
|
+
* machineType: "GENERAL" || "NVME",
|
|
131
|
+
* },
|
|
126
132
|
* fleet: { // ProjectFleet
|
|
127
133
|
* fleetArn: "STRING_VALUE",
|
|
128
134
|
* },
|
|
@@ -290,7 +296,13 @@ declare const UpdateProjectCommand_base: {
|
|
|
290
296
|
* // environment: { // ProjectEnvironment
|
|
291
297
|
* // type: "WINDOWS_CONTAINER" || "LINUX_CONTAINER" || "LINUX_GPU_CONTAINER" || "ARM_CONTAINER" || "WINDOWS_SERVER_2019_CONTAINER" || "LINUX_LAMBDA_CONTAINER" || "ARM_LAMBDA_CONTAINER" || "MAC_ARM", // required
|
|
292
298
|
* // image: "STRING_VALUE", // required
|
|
293
|
-
* // computeType: "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", // required
|
|
299
|
+
* // computeType: "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", // required
|
|
300
|
+
* // computeConfiguration: { // ComputeConfiguration
|
|
301
|
+
* // vCpu: Number("long"),
|
|
302
|
+
* // memory: Number("long"),
|
|
303
|
+
* // disk: Number("long"),
|
|
304
|
+
* // machineType: "GENERAL" || "NVME",
|
|
305
|
+
* // },
|
|
294
306
|
* // fleet: { // ProjectFleet
|
|
295
307
|
* // fleetArn: "STRING_VALUE",
|
|
296
308
|
* // },
|
|
@@ -605,11 +605,50 @@ export interface ProjectCache {
|
|
|
605
605
|
*/
|
|
606
606
|
modes?: CacheMode[];
|
|
607
607
|
}
|
|
608
|
+
/**
|
|
609
|
+
* @public
|
|
610
|
+
* @enum
|
|
611
|
+
*/
|
|
612
|
+
export declare const MachineType: {
|
|
613
|
+
readonly GENERAL: "GENERAL";
|
|
614
|
+
readonly NVME: "NVME";
|
|
615
|
+
};
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
export type MachineType = (typeof MachineType)[keyof typeof MachineType];
|
|
620
|
+
/**
|
|
621
|
+
* <p>Contains compute attributes. These attributes only need be specified when your project's or fleet's <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
export interface ComputeConfiguration {
|
|
625
|
+
/**
|
|
626
|
+
* <p>The number of vCPUs of the instance type included in your fleet.</p>
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
vCpu?: number;
|
|
630
|
+
/**
|
|
631
|
+
* <p>The amount of memory of the instance type included in your fleet.</p>
|
|
632
|
+
* @public
|
|
633
|
+
*/
|
|
634
|
+
memory?: number;
|
|
635
|
+
/**
|
|
636
|
+
* <p>The amount of disk space of the instance type included in your fleet.</p>
|
|
637
|
+
* @public
|
|
638
|
+
*/
|
|
639
|
+
disk?: number;
|
|
640
|
+
/**
|
|
641
|
+
* <p>The machine type of the instance type included in your fleet.</p>
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
644
|
+
machineType?: MachineType;
|
|
645
|
+
}
|
|
608
646
|
/**
|
|
609
647
|
* @public
|
|
610
648
|
* @enum
|
|
611
649
|
*/
|
|
612
650
|
export declare const ComputeType: {
|
|
651
|
+
readonly ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE";
|
|
613
652
|
readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
|
|
614
653
|
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
615
654
|
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
@@ -861,95 +900,106 @@ export interface ProjectEnvironment {
|
|
|
861
900
|
* <ul>
|
|
862
901
|
* <li>
|
|
863
902
|
* <p>
|
|
864
|
-
* <code>
|
|
903
|
+
* <code>ATTRIBUTE_BASED_COMPUTE</code>: Specify the amount of vCPUs, memory, disk space, and the type of machine.</p>
|
|
904
|
+
* <note>
|
|
905
|
+
* <p> If you use <code>ATTRIBUTE_BASED_COMPUTE</code>, you must define your attributes by using <code>computeConfiguration</code>. CodeBuild
|
|
906
|
+
* will select the cheapest instance that satisfies your specified attributes. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment-reserved-capacity.types">Reserved capacity environment
|
|
907
|
+
* types</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
908
|
+
* </note>
|
|
909
|
+
* </li>
|
|
910
|
+
* <li>
|
|
911
|
+
* <p>
|
|
912
|
+
* <code>BUILD_GENERAL1_SMALL</code>: Use up to 4 GiB memory and 2 vCPUs for
|
|
865
913
|
* builds.</p>
|
|
866
914
|
* </li>
|
|
867
915
|
* <li>
|
|
868
916
|
* <p>
|
|
869
|
-
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to
|
|
917
|
+
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to 8 GiB memory and 4 vCPUs for
|
|
870
918
|
* builds.</p>
|
|
871
919
|
* </li>
|
|
872
920
|
* <li>
|
|
873
921
|
* <p>
|
|
874
|
-
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16
|
|
922
|
+
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16 GiB memory and 8 vCPUs for
|
|
875
923
|
* builds, depending on your environment type.</p>
|
|
876
924
|
* </li>
|
|
877
925
|
* <li>
|
|
878
926
|
* <p>
|
|
879
|
-
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to
|
|
927
|
+
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to 72 GiB memory and 36 vCPUs for
|
|
880
928
|
* builds, depending on your environment type.</p>
|
|
881
929
|
* </li>
|
|
882
930
|
* <li>
|
|
883
931
|
* <p>
|
|
884
|
-
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to
|
|
932
|
+
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to 144 GiB memory, 72 vCPUs, and
|
|
885
933
|
* 824 GB of SSD storage for builds. This compute type supports Docker images up to
|
|
886
934
|
* 100 GB uncompressed.</p>
|
|
887
935
|
* </li>
|
|
888
936
|
* <li>
|
|
889
937
|
* <p>
|
|
890
|
-
* <code>BUILD_LAMBDA_1GB</code>: Use up to 1
|
|
938
|
+
* <code>BUILD_LAMBDA_1GB</code>: Use up to 1 GiB memory for
|
|
891
939
|
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
892
940
|
* </li>
|
|
893
941
|
* <li>
|
|
894
942
|
* <p>
|
|
895
|
-
* <code>BUILD_LAMBDA_2GB</code>: Use up to 2
|
|
943
|
+
* <code>BUILD_LAMBDA_2GB</code>: Use up to 2 GiB memory for
|
|
896
944
|
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
897
945
|
* </li>
|
|
898
946
|
* <li>
|
|
899
947
|
* <p>
|
|
900
|
-
* <code>BUILD_LAMBDA_4GB</code>: Use up to 4
|
|
948
|
+
* <code>BUILD_LAMBDA_4GB</code>: Use up to 4 GiB memory for
|
|
901
949
|
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
902
950
|
* </li>
|
|
903
951
|
* <li>
|
|
904
952
|
* <p>
|
|
905
|
-
* <code>BUILD_LAMBDA_8GB</code>: Use up to 8
|
|
953
|
+
* <code>BUILD_LAMBDA_8GB</code>: Use up to 8 GiB memory for
|
|
906
954
|
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
907
955
|
* </li>
|
|
908
956
|
* <li>
|
|
909
957
|
* <p>
|
|
910
|
-
* <code>BUILD_LAMBDA_10GB</code>: Use up to 10
|
|
958
|
+
* <code>BUILD_LAMBDA_10GB</code>: Use up to 10 GiB memory for
|
|
911
959
|
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
912
960
|
* </li>
|
|
913
961
|
* </ul>
|
|
914
962
|
* <p> If you use <code>BUILD_GENERAL1_SMALL</code>: </p>
|
|
915
963
|
* <ul>
|
|
916
964
|
* <li>
|
|
917
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
965
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 4 GiB
|
|
918
966
|
* memory and 2 vCPUs for builds. </p>
|
|
919
967
|
* </li>
|
|
920
968
|
* <li>
|
|
921
969
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 16
|
|
922
|
-
*
|
|
970
|
+
* GiB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds.</p>
|
|
923
971
|
* </li>
|
|
924
972
|
* <li>
|
|
925
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4
|
|
973
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4 GiB
|
|
926
974
|
* memory and 2 vCPUs on ARM-based processors for builds.</p>
|
|
927
975
|
* </li>
|
|
928
976
|
* </ul>
|
|
929
977
|
* <p> If you use <code>BUILD_GENERAL1_LARGE</code>: </p>
|
|
930
978
|
* <ul>
|
|
931
979
|
* <li>
|
|
932
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
980
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 16 GiB
|
|
933
981
|
* memory and 8 vCPUs for builds. </p>
|
|
934
982
|
* </li>
|
|
935
983
|
* <li>
|
|
936
984
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 255
|
|
937
|
-
*
|
|
985
|
+
* GiB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.</p>
|
|
938
986
|
* </li>
|
|
939
987
|
* <li>
|
|
940
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16
|
|
988
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16 GiB
|
|
941
989
|
* memory and 8 vCPUs on ARM-based processors for builds.</p>
|
|
942
990
|
* </li>
|
|
943
991
|
* </ul>
|
|
944
|
-
* <
|
|
945
|
-
*
|
|
946
|
-
* </note>
|
|
947
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">Build Environment
|
|
948
|
-
* Compute Types</a> in the <i>CodeBuild User Guide.</i>
|
|
992
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types">On-demand environment types</a>
|
|
993
|
+
* in the <i>CodeBuild User Guide.</i>
|
|
949
994
|
* </p>
|
|
950
995
|
* @public
|
|
951
996
|
*/
|
|
952
997
|
computeType: ComputeType | undefined;
|
|
998
|
+
/**
|
|
999
|
+
* <p>The compute configuration of the build project. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
1000
|
+
* @public
|
|
1001
|
+
*/
|
|
1002
|
+
computeConfiguration?: ComputeConfiguration;
|
|
953
1003
|
/**
|
|
954
1004
|
* <p>A ProjectFleet object to use for this build project.</p>
|
|
955
1005
|
* @public
|
|
@@ -2869,67 +2919,106 @@ export interface Fleet {
|
|
|
2869
2919
|
* <ul>
|
|
2870
2920
|
* <li>
|
|
2871
2921
|
* <p>
|
|
2872
|
-
* <code>
|
|
2922
|
+
* <code>ATTRIBUTE_BASED_COMPUTE</code>: Specify the amount of vCPUs, memory, disk space, and the type of machine.</p>
|
|
2923
|
+
* <note>
|
|
2924
|
+
* <p> If you use <code>ATTRIBUTE_BASED_COMPUTE</code>, you must define your attributes by using <code>computeConfiguration</code>. CodeBuild
|
|
2925
|
+
* will select the cheapest instance that satisfies your specified attributes. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment-reserved-capacity.types">Reserved capacity environment
|
|
2926
|
+
* types</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
2927
|
+
* </note>
|
|
2928
|
+
* </li>
|
|
2929
|
+
* <li>
|
|
2930
|
+
* <p>
|
|
2931
|
+
* <code>BUILD_GENERAL1_SMALL</code>: Use up to 4 GiB memory and 2 vCPUs for
|
|
2873
2932
|
* builds.</p>
|
|
2874
2933
|
* </li>
|
|
2875
2934
|
* <li>
|
|
2876
2935
|
* <p>
|
|
2877
|
-
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to
|
|
2936
|
+
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to 8 GiB memory and 4 vCPUs for
|
|
2878
2937
|
* builds.</p>
|
|
2879
2938
|
* </li>
|
|
2880
2939
|
* <li>
|
|
2881
2940
|
* <p>
|
|
2882
|
-
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16
|
|
2941
|
+
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16 GiB memory and 8 vCPUs for
|
|
2883
2942
|
* builds, depending on your environment type.</p>
|
|
2884
2943
|
* </li>
|
|
2885
2944
|
* <li>
|
|
2886
2945
|
* <p>
|
|
2887
|
-
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to
|
|
2946
|
+
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to 72 GiB memory and 36 vCPUs for
|
|
2888
2947
|
* builds, depending on your environment type.</p>
|
|
2889
2948
|
* </li>
|
|
2890
2949
|
* <li>
|
|
2891
2950
|
* <p>
|
|
2892
|
-
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to
|
|
2951
|
+
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to 144 GiB memory, 72 vCPUs, and
|
|
2893
2952
|
* 824 GB of SSD storage for builds. This compute type supports Docker images up to
|
|
2894
2953
|
* 100 GB uncompressed.</p>
|
|
2895
2954
|
* </li>
|
|
2955
|
+
* <li>
|
|
2956
|
+
* <p>
|
|
2957
|
+
* <code>BUILD_LAMBDA_1GB</code>: Use up to 1 GiB memory for
|
|
2958
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
2959
|
+
* </li>
|
|
2960
|
+
* <li>
|
|
2961
|
+
* <p>
|
|
2962
|
+
* <code>BUILD_LAMBDA_2GB</code>: Use up to 2 GiB memory for
|
|
2963
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
2964
|
+
* </li>
|
|
2965
|
+
* <li>
|
|
2966
|
+
* <p>
|
|
2967
|
+
* <code>BUILD_LAMBDA_4GB</code>: Use up to 4 GiB memory for
|
|
2968
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
2969
|
+
* </li>
|
|
2970
|
+
* <li>
|
|
2971
|
+
* <p>
|
|
2972
|
+
* <code>BUILD_LAMBDA_8GB</code>: Use up to 8 GiB memory for
|
|
2973
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
2974
|
+
* </li>
|
|
2975
|
+
* <li>
|
|
2976
|
+
* <p>
|
|
2977
|
+
* <code>BUILD_LAMBDA_10GB</code>: Use up to 10 GiB memory for
|
|
2978
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
2979
|
+
* </li>
|
|
2896
2980
|
* </ul>
|
|
2897
2981
|
* <p> If you use <code>BUILD_GENERAL1_SMALL</code>: </p>
|
|
2898
2982
|
* <ul>
|
|
2899
2983
|
* <li>
|
|
2900
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
2984
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 4 GiB
|
|
2901
2985
|
* memory and 2 vCPUs for builds. </p>
|
|
2902
2986
|
* </li>
|
|
2903
2987
|
* <li>
|
|
2904
2988
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 16
|
|
2905
|
-
*
|
|
2989
|
+
* GiB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds.</p>
|
|
2906
2990
|
* </li>
|
|
2907
2991
|
* <li>
|
|
2908
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4
|
|
2992
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4 GiB
|
|
2909
2993
|
* memory and 2 vCPUs on ARM-based processors for builds.</p>
|
|
2910
2994
|
* </li>
|
|
2911
2995
|
* </ul>
|
|
2912
2996
|
* <p> If you use <code>BUILD_GENERAL1_LARGE</code>: </p>
|
|
2913
2997
|
* <ul>
|
|
2914
2998
|
* <li>
|
|
2915
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
2999
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 16 GiB
|
|
2916
3000
|
* memory and 8 vCPUs for builds. </p>
|
|
2917
3001
|
* </li>
|
|
2918
3002
|
* <li>
|
|
2919
3003
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 255
|
|
2920
|
-
*
|
|
3004
|
+
* GiB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.</p>
|
|
2921
3005
|
* </li>
|
|
2922
3006
|
* <li>
|
|
2923
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16
|
|
3007
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16 GiB
|
|
2924
3008
|
* memory and 8 vCPUs on ARM-based processors for builds.</p>
|
|
2925
3009
|
* </li>
|
|
2926
3010
|
* </ul>
|
|
2927
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">
|
|
2928
|
-
*
|
|
3011
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types">On-demand environment types</a>
|
|
3012
|
+
* in the <i>CodeBuild User Guide.</i>
|
|
2929
3013
|
* </p>
|
|
2930
3014
|
* @public
|
|
2931
3015
|
*/
|
|
2932
3016
|
computeType?: ComputeType;
|
|
3017
|
+
/**
|
|
3018
|
+
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
3019
|
+
* @public
|
|
3020
|
+
*/
|
|
3021
|
+
computeConfiguration?: ComputeConfiguration;
|
|
2933
3022
|
/**
|
|
2934
3023
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
2935
3024
|
* @public
|
|
@@ -4370,67 +4459,106 @@ export interface CreateFleetInput {
|
|
|
4370
4459
|
* <ul>
|
|
4371
4460
|
* <li>
|
|
4372
4461
|
* <p>
|
|
4373
|
-
* <code>
|
|
4462
|
+
* <code>ATTRIBUTE_BASED_COMPUTE</code>: Specify the amount of vCPUs, memory, disk space, and the type of machine.</p>
|
|
4463
|
+
* <note>
|
|
4464
|
+
* <p> If you use <code>ATTRIBUTE_BASED_COMPUTE</code>, you must define your attributes by using <code>computeConfiguration</code>. CodeBuild
|
|
4465
|
+
* will select the cheapest instance that satisfies your specified attributes. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment-reserved-capacity.types">Reserved capacity environment
|
|
4466
|
+
* types</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
4467
|
+
* </note>
|
|
4468
|
+
* </li>
|
|
4469
|
+
* <li>
|
|
4470
|
+
* <p>
|
|
4471
|
+
* <code>BUILD_GENERAL1_SMALL</code>: Use up to 4 GiB memory and 2 vCPUs for
|
|
4374
4472
|
* builds.</p>
|
|
4375
4473
|
* </li>
|
|
4376
4474
|
* <li>
|
|
4377
4475
|
* <p>
|
|
4378
|
-
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to
|
|
4476
|
+
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to 8 GiB memory and 4 vCPUs for
|
|
4379
4477
|
* builds.</p>
|
|
4380
4478
|
* </li>
|
|
4381
4479
|
* <li>
|
|
4382
4480
|
* <p>
|
|
4383
|
-
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16
|
|
4481
|
+
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16 GiB memory and 8 vCPUs for
|
|
4384
4482
|
* builds, depending on your environment type.</p>
|
|
4385
4483
|
* </li>
|
|
4386
4484
|
* <li>
|
|
4387
4485
|
* <p>
|
|
4388
|
-
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to
|
|
4486
|
+
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to 72 GiB memory and 36 vCPUs for
|
|
4389
4487
|
* builds, depending on your environment type.</p>
|
|
4390
4488
|
* </li>
|
|
4391
4489
|
* <li>
|
|
4392
4490
|
* <p>
|
|
4393
|
-
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to
|
|
4491
|
+
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to 144 GiB memory, 72 vCPUs, and
|
|
4394
4492
|
* 824 GB of SSD storage for builds. This compute type supports Docker images up to
|
|
4395
4493
|
* 100 GB uncompressed.</p>
|
|
4396
4494
|
* </li>
|
|
4495
|
+
* <li>
|
|
4496
|
+
* <p>
|
|
4497
|
+
* <code>BUILD_LAMBDA_1GB</code>: Use up to 1 GiB memory for
|
|
4498
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
4499
|
+
* </li>
|
|
4500
|
+
* <li>
|
|
4501
|
+
* <p>
|
|
4502
|
+
* <code>BUILD_LAMBDA_2GB</code>: Use up to 2 GiB memory for
|
|
4503
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
4504
|
+
* </li>
|
|
4505
|
+
* <li>
|
|
4506
|
+
* <p>
|
|
4507
|
+
* <code>BUILD_LAMBDA_4GB</code>: Use up to 4 GiB memory for
|
|
4508
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
4509
|
+
* </li>
|
|
4510
|
+
* <li>
|
|
4511
|
+
* <p>
|
|
4512
|
+
* <code>BUILD_LAMBDA_8GB</code>: Use up to 8 GiB memory for
|
|
4513
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
4514
|
+
* </li>
|
|
4515
|
+
* <li>
|
|
4516
|
+
* <p>
|
|
4517
|
+
* <code>BUILD_LAMBDA_10GB</code>: Use up to 10 GiB memory for
|
|
4518
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
4519
|
+
* </li>
|
|
4397
4520
|
* </ul>
|
|
4398
4521
|
* <p> If you use <code>BUILD_GENERAL1_SMALL</code>: </p>
|
|
4399
4522
|
* <ul>
|
|
4400
4523
|
* <li>
|
|
4401
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
4524
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 4 GiB
|
|
4402
4525
|
* memory and 2 vCPUs for builds. </p>
|
|
4403
4526
|
* </li>
|
|
4404
4527
|
* <li>
|
|
4405
4528
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 16
|
|
4406
|
-
*
|
|
4529
|
+
* GiB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds.</p>
|
|
4407
4530
|
* </li>
|
|
4408
4531
|
* <li>
|
|
4409
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4
|
|
4532
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4 GiB
|
|
4410
4533
|
* memory and 2 vCPUs on ARM-based processors for builds.</p>
|
|
4411
4534
|
* </li>
|
|
4412
4535
|
* </ul>
|
|
4413
4536
|
* <p> If you use <code>BUILD_GENERAL1_LARGE</code>: </p>
|
|
4414
4537
|
* <ul>
|
|
4415
4538
|
* <li>
|
|
4416
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
4539
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 16 GiB
|
|
4417
4540
|
* memory and 8 vCPUs for builds. </p>
|
|
4418
4541
|
* </li>
|
|
4419
4542
|
* <li>
|
|
4420
4543
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 255
|
|
4421
|
-
*
|
|
4544
|
+
* GiB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.</p>
|
|
4422
4545
|
* </li>
|
|
4423
4546
|
* <li>
|
|
4424
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16
|
|
4547
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16 GiB
|
|
4425
4548
|
* memory and 8 vCPUs on ARM-based processors for builds.</p>
|
|
4426
4549
|
* </li>
|
|
4427
4550
|
* </ul>
|
|
4428
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">
|
|
4429
|
-
*
|
|
4551
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types">On-demand environment types</a>
|
|
4552
|
+
* in the <i>CodeBuild User Guide.</i>
|
|
4430
4553
|
* </p>
|
|
4431
4554
|
* @public
|
|
4432
4555
|
*/
|
|
4433
4556
|
computeType: ComputeType | undefined;
|
|
4557
|
+
/**
|
|
4558
|
+
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
4559
|
+
* @public
|
|
4560
|
+
*/
|
|
4561
|
+
computeConfiguration?: ComputeConfiguration;
|
|
4434
4562
|
/**
|
|
4435
4563
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
4436
4564
|
* @public
|
|
@@ -7279,67 +7407,106 @@ export interface UpdateFleetInput {
|
|
|
7279
7407
|
* <ul>
|
|
7280
7408
|
* <li>
|
|
7281
7409
|
* <p>
|
|
7282
|
-
* <code>
|
|
7410
|
+
* <code>ATTRIBUTE_BASED_COMPUTE</code>: Specify the amount of vCPUs, memory, disk space, and the type of machine.</p>
|
|
7411
|
+
* <note>
|
|
7412
|
+
* <p> If you use <code>ATTRIBUTE_BASED_COMPUTE</code>, you must define your attributes by using <code>computeConfiguration</code>. CodeBuild
|
|
7413
|
+
* will select the cheapest instance that satisfies your specified attributes. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment-reserved-capacity.types">Reserved capacity environment
|
|
7414
|
+
* types</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
7415
|
+
* </note>
|
|
7416
|
+
* </li>
|
|
7417
|
+
* <li>
|
|
7418
|
+
* <p>
|
|
7419
|
+
* <code>BUILD_GENERAL1_SMALL</code>: Use up to 4 GiB memory and 2 vCPUs for
|
|
7283
7420
|
* builds.</p>
|
|
7284
7421
|
* </li>
|
|
7285
7422
|
* <li>
|
|
7286
7423
|
* <p>
|
|
7287
|
-
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to
|
|
7424
|
+
* <code>BUILD_GENERAL1_MEDIUM</code>: Use up to 8 GiB memory and 4 vCPUs for
|
|
7288
7425
|
* builds.</p>
|
|
7289
7426
|
* </li>
|
|
7290
7427
|
* <li>
|
|
7291
7428
|
* <p>
|
|
7292
|
-
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16
|
|
7429
|
+
* <code>BUILD_GENERAL1_LARGE</code>: Use up to 16 GiB memory and 8 vCPUs for
|
|
7293
7430
|
* builds, depending on your environment type.</p>
|
|
7294
7431
|
* </li>
|
|
7295
7432
|
* <li>
|
|
7296
7433
|
* <p>
|
|
7297
|
-
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to
|
|
7434
|
+
* <code>BUILD_GENERAL1_XLARGE</code>: Use up to 72 GiB memory and 36 vCPUs for
|
|
7298
7435
|
* builds, depending on your environment type.</p>
|
|
7299
7436
|
* </li>
|
|
7300
7437
|
* <li>
|
|
7301
7438
|
* <p>
|
|
7302
|
-
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to
|
|
7439
|
+
* <code>BUILD_GENERAL1_2XLARGE</code>: Use up to 144 GiB memory, 72 vCPUs, and
|
|
7303
7440
|
* 824 GB of SSD storage for builds. This compute type supports Docker images up to
|
|
7304
7441
|
* 100 GB uncompressed.</p>
|
|
7305
7442
|
* </li>
|
|
7443
|
+
* <li>
|
|
7444
|
+
* <p>
|
|
7445
|
+
* <code>BUILD_LAMBDA_1GB</code>: Use up to 1 GiB memory for
|
|
7446
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
7447
|
+
* </li>
|
|
7448
|
+
* <li>
|
|
7449
|
+
* <p>
|
|
7450
|
+
* <code>BUILD_LAMBDA_2GB</code>: Use up to 2 GiB memory for
|
|
7451
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
7452
|
+
* </li>
|
|
7453
|
+
* <li>
|
|
7454
|
+
* <p>
|
|
7455
|
+
* <code>BUILD_LAMBDA_4GB</code>: Use up to 4 GiB memory for
|
|
7456
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
7457
|
+
* </li>
|
|
7458
|
+
* <li>
|
|
7459
|
+
* <p>
|
|
7460
|
+
* <code>BUILD_LAMBDA_8GB</code>: Use up to 8 GiB memory for
|
|
7461
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
7462
|
+
* </li>
|
|
7463
|
+
* <li>
|
|
7464
|
+
* <p>
|
|
7465
|
+
* <code>BUILD_LAMBDA_10GB</code>: Use up to 10 GiB memory for
|
|
7466
|
+
* builds. Only available for environment type <code>LINUX_LAMBDA_CONTAINER</code> and <code>ARM_LAMBDA_CONTAINER</code>.</p>
|
|
7467
|
+
* </li>
|
|
7306
7468
|
* </ul>
|
|
7307
7469
|
* <p> If you use <code>BUILD_GENERAL1_SMALL</code>: </p>
|
|
7308
7470
|
* <ul>
|
|
7309
7471
|
* <li>
|
|
7310
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
7472
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 4 GiB
|
|
7311
7473
|
* memory and 2 vCPUs for builds. </p>
|
|
7312
7474
|
* </li>
|
|
7313
7475
|
* <li>
|
|
7314
7476
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 16
|
|
7315
|
-
*
|
|
7477
|
+
* GiB memory, 4 vCPUs, and 1 NVIDIA A10G Tensor Core GPU for builds.</p>
|
|
7316
7478
|
* </li>
|
|
7317
7479
|
* <li>
|
|
7318
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4
|
|
7480
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 4 GiB
|
|
7319
7481
|
* memory and 2 vCPUs on ARM-based processors for builds.</p>
|
|
7320
7482
|
* </li>
|
|
7321
7483
|
* </ul>
|
|
7322
7484
|
* <p> If you use <code>BUILD_GENERAL1_LARGE</code>: </p>
|
|
7323
7485
|
* <ul>
|
|
7324
7486
|
* <li>
|
|
7325
|
-
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to
|
|
7487
|
+
* <p> For environment type <code>LINUX_CONTAINER</code>, you can use up to 16 GiB
|
|
7326
7488
|
* memory and 8 vCPUs for builds. </p>
|
|
7327
7489
|
* </li>
|
|
7328
7490
|
* <li>
|
|
7329
7491
|
* <p> For environment type <code>LINUX_GPU_CONTAINER</code>, you can use up to 255
|
|
7330
|
-
*
|
|
7492
|
+
* GiB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds.</p>
|
|
7331
7493
|
* </li>
|
|
7332
7494
|
* <li>
|
|
7333
|
-
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16
|
|
7495
|
+
* <p> For environment type <code>ARM_CONTAINER</code>, you can use up to 16 GiB
|
|
7334
7496
|
* memory and 8 vCPUs on ARM-based processors for builds.</p>
|
|
7335
7497
|
* </li>
|
|
7336
7498
|
* </ul>
|
|
7337
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">
|
|
7338
|
-
*
|
|
7499
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment.types">On-demand environment types</a>
|
|
7500
|
+
* in the <i>CodeBuild User Guide.</i>
|
|
7339
7501
|
* </p>
|
|
7340
7502
|
* @public
|
|
7341
7503
|
*/
|
|
7342
7504
|
computeType?: ComputeType;
|
|
7505
|
+
/**
|
|
7506
|
+
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
7507
|
+
* @public
|
|
7508
|
+
*/
|
|
7509
|
+
computeConfiguration?: ComputeConfiguration;
|
|
7343
7510
|
/**
|
|
7344
7511
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
7345
7512
|
* @public
|
|
@@ -138,7 +138,19 @@ export interface ProjectCache {
|
|
|
138
138
|
location?: string;
|
|
139
139
|
modes?: CacheMode[];
|
|
140
140
|
}
|
|
141
|
+
export declare const MachineType: {
|
|
142
|
+
readonly GENERAL: "GENERAL";
|
|
143
|
+
readonly NVME: "NVME";
|
|
144
|
+
};
|
|
145
|
+
export type MachineType = (typeof MachineType)[keyof typeof MachineType];
|
|
146
|
+
export interface ComputeConfiguration {
|
|
147
|
+
vCpu?: number;
|
|
148
|
+
memory?: number;
|
|
149
|
+
disk?: number;
|
|
150
|
+
machineType?: MachineType;
|
|
151
|
+
}
|
|
141
152
|
export declare const ComputeType: {
|
|
153
|
+
readonly ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE";
|
|
142
154
|
readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
|
|
143
155
|
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
144
156
|
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
@@ -197,6 +209,7 @@ export interface ProjectEnvironment {
|
|
|
197
209
|
type: EnvironmentType | undefined;
|
|
198
210
|
image: string | undefined;
|
|
199
211
|
computeType: ComputeType | undefined;
|
|
212
|
+
computeConfiguration?: ComputeConfiguration;
|
|
200
213
|
fleet?: ProjectFleet;
|
|
201
214
|
environmentVariables?: EnvironmentVariable[];
|
|
202
215
|
privilegedMode?: boolean;
|
|
@@ -530,6 +543,7 @@ export interface Fleet {
|
|
|
530
543
|
baseCapacity?: number;
|
|
531
544
|
environmentType?: EnvironmentType;
|
|
532
545
|
computeType?: ComputeType;
|
|
546
|
+
computeConfiguration?: ComputeConfiguration;
|
|
533
547
|
scalingConfiguration?: ScalingConfigurationOutput;
|
|
534
548
|
overflowBehavior?: FleetOverflowBehavior;
|
|
535
549
|
vpcConfig?: VpcConfig;
|
|
@@ -758,6 +772,7 @@ export interface CreateFleetInput {
|
|
|
758
772
|
baseCapacity: number | undefined;
|
|
759
773
|
environmentType: EnvironmentType | undefined;
|
|
760
774
|
computeType: ComputeType | undefined;
|
|
775
|
+
computeConfiguration?: ComputeConfiguration;
|
|
761
776
|
scalingConfiguration?: ScalingConfigurationInput;
|
|
762
777
|
overflowBehavior?: FleetOverflowBehavior;
|
|
763
778
|
vpcConfig?: VpcConfig;
|
|
@@ -1299,6 +1314,7 @@ export interface UpdateFleetInput {
|
|
|
1299
1314
|
baseCapacity?: number;
|
|
1300
1315
|
environmentType?: EnvironmentType;
|
|
1301
1316
|
computeType?: ComputeType;
|
|
1317
|
+
computeConfiguration?: ComputeConfiguration;
|
|
1302
1318
|
scalingConfiguration?: ScalingConfigurationInput;
|
|
1303
1319
|
overflowBehavior?: FleetOverflowBehavior;
|
|
1304
1320
|
vpcConfig?: VpcConfig;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codebuild",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.686.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codebuild",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.686.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.686.0",
|
|
25
|
+
"@aws-sdk/core": "3.686.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.686.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.686.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
|
+
"@aws-sdk/types": "3.686.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.686.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.10",
|
|
37
|
+
"@smithy/core": "^2.5.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.0.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.8",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.8",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.10",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.25",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.8",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.8",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.9",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.5",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.5",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.2",
|
|
50
|
+
"@smithy/types": "^3.6.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.8",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.25",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.25",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.4",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.8",
|
|
59
|
+
"@smithy/util-retry": "^3.0.8",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|