Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 1c5e23b

Browse files
Release v1.40.55 (2021-10-04) (#4122)
Release v1.40.55 (2021-10-04) === ### Service Client Updates * `service/codebuild`: Updates service API and documentation * CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project. * `service/elasticfilesystem`: Updates service API * EFS adds a new exception for short identifiers to be thrown after its migration to long resource identifiers. * `service/kms`: Updates service documentation and examples * Added SDK examples for ConnectCustomKeyStore, CreateCustomKeyStore, CreateKey, DeleteCustomKeyStore, DescribeCustomKeyStores, DisconnectCustomKeyStore, GenerateDataKeyPair, GenerateDataKeyPairWithoutPlaintext, GetPublicKey, ReplicateKey, Sign, UpdateCustomKeyStore and Verify APIs
1 parent a14a1ce commit 1c5e23b

File tree

11 files changed

+1604
-38
lines changed

11 files changed

+1604
-38
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.40.55 (2021-10-04)
2+
===
3+
4+
### Service Client Updates
5+
* `service/codebuild`: Updates service API and documentation
6+
* CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
7+
* `service/elasticfilesystem`: Updates service API
8+
* EFS adds a new exception for short identifiers to be thrown after its migration to long resource identifiers.
9+
* `service/kms`: Updates service documentation and examples
10+
* Added SDK examples for ConnectCustomKeyStore, CreateCustomKeyStore, CreateKey, DeleteCustomKeyStore, DescribeCustomKeyStores, DisconnectCustomKeyStore, GenerateDataKeyPair, GenerateDataKeyPairWithoutPlaintext, GetPublicKey, ReplicateKey, Sign, UpdateCustomKeyStore and Verify APIs
11+
112
Release v1.40.54 (2021-10-01)
213
===
314

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.40.54"
8+
const SDKVersion = "1.40.55"

models/apis/codebuild/2016-10-06/api-2.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,13 @@
704704
"reportsNotFound":{"shape":"ReportArns"}
705705
}
706706
},
707+
"BatchReportModeType":{
708+
"type":"string",
709+
"enum":[
710+
"REPORT_INDIVIDUAL_BUILDS",
711+
"REPORT_AGGREGATED_BATCH"
712+
]
713+
},
707714
"BatchRestrictions":{
708715
"type":"structure",
709716
"members":{
@@ -1769,7 +1776,8 @@
17691776
"serviceRole":{"shape":"NonEmptyString"},
17701777
"combineArtifacts":{"shape":"WrapperBoolean"},
17711778
"restrictions":{"shape":"BatchRestrictions"},
1772-
"timeoutInMins":{"shape":"WrapperInt"}
1779+
"timeoutInMins":{"shape":"WrapperInt"},
1780+
"batchReportMode":{"shape":"BatchReportModeType"}
17731781
}
17741782
},
17751783
"ProjectCache":{

models/apis/codebuild/2016-10-06/docs-2.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@
140140
"refs": {
141141
}
142142
},
143+
"BatchReportModeType": {
144+
"base": null,
145+
"refs": {
146+
"ProjectBuildBatchConfig$batchReportMode": "<p>Specifies how build status reports are sent to the source provider for the batch build. This property is only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is configured to report build statuses to the source provider.</p> <dl> <dt>REPORT_AGGREGATED_BATCH</dt> <dd> <p>(Default) Aggregate all of the build statuses into a single status report.</p> </dd> <dt>REPORT_INDIVIDUAL_BUILDS</dt> <dd> <p>Send a separate status report for each individual build.</p> </dd> </dl>"
147+
}
148+
},
143149
"BatchRestrictions": {
144150
"base": "<p>Specifies restrictions for the batch build.</p>",
145151
"refs": {
@@ -258,7 +264,7 @@
258264
"BatchGetBuildsInput$ids": "<p>The IDs of the builds.</p>",
259265
"BatchGetBuildsOutput$buildsNotFound": "<p>The IDs of builds for which information could not be found.</p>",
260266
"DeleteBuildBatchOutput$buildsDeleted": "<p>An array of strings that contain the identifiers of the builds that were deleted.</p>",
261-
"ListBuildsForProjectOutput$ids": "<p>A list of build IDs for the specified build project, with each build ID representing a single build.</p>",
267+
"ListBuildsForProjectOutput$ids": "<p>A list of build identifiers for the specified build project, with each build ID representing a single build.</p>",
262268
"ListBuildsOutput$ids": "<p>A list of build IDs, with each build ID representing a single build.</p>"
263269
}
264270
},
@@ -1042,7 +1048,7 @@
10421048
"Project$secondaryArtifacts": "<p>An array of <code>ProjectArtifacts</code> objects. </p>",
10431049
"StartBuildBatchInput$secondaryArtifactsOverride": "<p>An array of <code>ProjectArtifacts</code> objects that override the secondary artifacts defined in the batch build project.</p>",
10441050
"StartBuildInput$secondaryArtifactsOverride": "<p> An array of <code>ProjectArtifacts</code> objects. </p>",
1045-
"UpdateProjectInput$secondaryArtifacts": "<p> An array of <code>ProjectSource</code> objects. </p>"
1051+
"UpdateProjectInput$secondaryArtifacts": "<p> An array of <code>ProjectArtifact</code> objects. </p>"
10461052
}
10471053
},
10481054
"ProjectBadge": {
@@ -1446,7 +1452,7 @@
14461452
"DescribeCodeCoveragesInput$sortOrder": "<p>Specifies if the results are sorted in ascending or descending order.</p>",
14471453
"ListBuildBatchesForProjectInput$sortOrder": "<p>Specifies the sort order of the returned items. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the batch build identifiers in ascending order by identifier.</p> </li> <li> <p> <code>DESCENDING</code>: List the batch build identifiers in descending order by identifier.</p> </li> </ul>",
14481454
"ListBuildBatchesInput$sortOrder": "<p>Specifies the sort order of the returned items. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the batch build identifiers in ascending order by identifier.</p> </li> <li> <p> <code>DESCENDING</code>: List the batch build identifiers in descending order by identifier.</p> </li> </ul>",
1449-
"ListBuildsForProjectInput$sortOrder": "<p>The order to list results in. The results are sorted by build number, not the build identifier.</p> <p>Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul> <p>If the project has more than 100 builds, setting the sort order will result in an error. </p>",
1455+
"ListBuildsForProjectInput$sortOrder": "<p>The order to sort the results in. The results are sorted by build number, not the build identifier. If this is not specified, the results are sorted in descending order.</p> <p>Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build identifiers in ascending order, by build number.</p> </li> <li> <p> <code>DESCENDING</code>: List the build identifiers in descending order, by build number.</p> </li> </ul> <p>If the project has more than 100 builds, setting the sort order will result in an error. </p>",
14501456
"ListBuildsInput$sortOrder": "<p>The order to list build IDs. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul>",
14511457
"ListProjectsInput$sortOrder": "<p>The order in which to list build projects. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List in ascending order.</p> </li> <li> <p> <code>DESCENDING</code>: List in descending order.</p> </li> </ul> <p>Use <code>sortBy</code> to specify the criterion to be used to list build project names.</p>",
14521458
"ListReportGroupsInput$sortOrder": "<p> Used to specify the order to sort the list of returned report groups. Valid values are <code>ASCENDING</code> and <code>DESCENDING</code>. </p>",

models/apis/elasticfilesystem/2015-02-01/api-2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@
347347
"input":{"shape":"PutAccountPreferencesRequest"},
348348
"output":{"shape":"PutAccountPreferencesResponse"},
349349
"errors":[
350+
{"shape":"BadRequest"},
350351
{"shape":"InternalServerError"}
351352
]
352353
},

0 commit comments

Comments
 (0)