Skip to content

Commit

Permalink
Release v1.34.15 (2020-09-01)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/codeguru-reviewer`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation
  • Loading branch information
awssdkgo committed Sep 1, 2020
1 parent 53b8efe commit d74b040
Show file tree
Hide file tree
Showing 9 changed files with 769 additions and 75 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.34.15 (2020-09-01)
===

### Service Client Updates
* `service/codeguru-reviewer`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation

Release v1.34.14 (2020-08-31)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.34.14"
const SDKVersion = "1.34.15"
80 changes: 78 additions & 2 deletions models/apis/codeguru-reviewer/2019-09-19/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,23 @@
{"shape":"ThrottlingException"}
]
},
"CreateCodeReview":{
"name":"CreateCodeReview",
"http":{
"method":"POST",
"requestUri":"/codereviews"
},
"input":{"shape":"CreateCodeReviewRequest"},
"output":{"shape":"CreateCodeReviewResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServerException"},
{"shape":"ValidationException"},
{"shape":"ConflictException"},
{"shape":"AccessDeniedException"},
{"shape":"ThrottlingException"}
]
},
"DescribeCodeReview":{
"name":"DescribeCodeReview",
"http":{
Expand Down Expand Up @@ -209,6 +226,11 @@
"max":64,
"min":1
},
"BranchName":{
"type":"string",
"max":256,
"min":1
},
"ClientRequestToken":{
"type":"string",
"max":64,
Expand Down Expand Up @@ -240,6 +262,12 @@
"Metrics":{"shape":"Metrics"}
}
},
"CodeReviewName":{
"type":"string",
"max":100,
"min":1,
"pattern":"[a-zA-Z0-9-_]*"
},
"CodeReviewSummaries":{
"type":"list",
"member":{"shape":"CodeReviewSummary"}
Expand All @@ -260,6 +288,13 @@
"MetricsSummary":{"shape":"MetricsSummary"}
}
},
"CodeReviewType":{
"type":"structure",
"required":["RepositoryAnalysis"],
"members":{
"RepositoryAnalysis":{"shape":"RepositoryAnalysis"}
}
},
"CommitDiffSourceCodeType":{
"type":"structure",
"members":{
Expand All @@ -286,6 +321,29 @@
"min":0,
"pattern":"arn:aws(-[\\w]+)*:.+:.+:[0-9]{12}:.+"
},
"CreateCodeReviewRequest":{
"type":"structure",
"required":[
"Name",
"RepositoryAssociationArn",
"Type"
],
"members":{
"Name":{"shape":"CodeReviewName"},
"RepositoryAssociationArn":{"shape":"Arn"},
"Type":{"shape":"CodeReviewType"},
"ClientRequestToken":{
"shape":"ClientRequestToken",
"idempotencyToken":true
}
}
},
"CreateCodeReviewResponse":{
"type":"structure",
"members":{
"CodeReview":{"shape":"CodeReview"}
}
},
"DescribeCodeReviewRequest":{
"type":"structure",
"required":["CodeReviewArn"],
Expand Down Expand Up @@ -719,6 +777,13 @@
"GitHubEnterpriseServer":{"shape":"ThirdPartySourceRepository"}
}
},
"RepositoryAnalysis":{
"type":"structure",
"required":["RepositoryHead"],
"members":{
"RepositoryHead":{"shape":"RepositoryHeadSourceCodeType"}
}
},
"RepositoryAssociation":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -766,6 +831,13 @@
"State":{"shape":"RepositoryAssociationState"}
}
},
"RepositoryHeadSourceCodeType":{
"type":"structure",
"required":["BranchName"],
"members":{
"BranchName":{"shape":"BranchName"}
}
},
"RepositoryNames":{
"type":"list",
"member":{"shape":"Name"},
Expand All @@ -783,7 +855,8 @@
"SourceCodeType":{
"type":"structure",
"members":{
"CommitDiff":{"shape":"CommitDiffSourceCodeType"}
"CommitDiff":{"shape":"CommitDiffSourceCodeType"},
"RepositoryHead":{"shape":"RepositoryHeadSourceCodeType"}
}
},
"StateReason":{
Expand Down Expand Up @@ -820,7 +893,10 @@
"TimeStamp":{"type":"timestamp"},
"Type":{
"type":"string",
"enum":["PullRequest"]
"enum":[
"PullRequest",
"RepositoryAnalysis"
]
},
"UserId":{
"type":"string",
Expand Down
87 changes: 66 additions & 21 deletions models/apis/codeguru-reviewer/2019-09-19/docs-2.json

Large diffs are not rendered by default.

20 changes: 19 additions & 1 deletion models/apis/securityhub/2018-10-26/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1883,7 +1883,8 @@
"RecordState":{"shape":"RecordState"},
"RelatedFindings":{"shape":"RelatedFindingList"},
"Note":{"shape":"Note"},
"Vulnerabilities":{"shape":"VulnerabilityList"}
"Vulnerabilities":{"shape":"VulnerabilityList"},
"PatchSummary":{"shape":"PatchSummary"}
}
},
"AwsSecurityFindingFilters":{
Expand Down Expand Up @@ -3084,6 +3085,23 @@
"aws-us-gov"
]
},
"PatchSummary":{
"type":"structure",
"required":["Id"],
"members":{
"Id":{"shape":"NonEmptyString"},
"InstalledCount":{"shape":"Integer"},
"MissingCount":{"shape":"Integer"},
"FailedCount":{"shape":"Integer"},
"InstalledOtherCount":{"shape":"Integer"},
"InstalledRejectedCount":{"shape":"Integer"},
"InstalledPendingReboot":{"shape":"Integer"},
"OperationStartTime":{"shape":"NonEmptyString"},
"OperationEndTime":{"shape":"NonEmptyString"},
"RebootOption":{"shape":"NonEmptyString"},
"Operation":{"shape":"NonEmptyString"}
}
},
"PortRange":{
"type":"structure",
"members":{
Expand Down
17 changes: 17 additions & 0 deletions models/apis/securityhub/2018-10-26/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1521,6 +1521,12 @@
"InsightResultValue$Count": "<p>The number of findings returned for each <code>GroupByAttributeValue</code>.</p>",
"Network$SourcePort": "<p>The source port of network-related information about a finding.</p>",
"Network$DestinationPort": "<p>The destination port of network-related information about a finding.</p>",
"PatchSummary$InstalledCount": "<p>The number of patches from the compliance standard that were installed successfully.</p>",
"PatchSummary$MissingCount": "<p>The number of patches that are part of the compliance standard but are not installed. The count includes patches that failed to install.</p>",
"PatchSummary$FailedCount": "<p>The number of patches from the compliance standard that failed to install.</p>",
"PatchSummary$InstalledOtherCount": "<p>The number of installed patches that are not part of the compliance standard.</p>",
"PatchSummary$InstalledRejectedCount": "<p>The number of patches that are installed but are also on a list of patches that the customer rejected.</p>",
"PatchSummary$InstalledPendingReboot": "<p>The number of patches that were installed since the last time the instance was rebooted.</p>",
"PortRange$Begin": "<p>The first port in the port range.</p>",
"PortRange$End": "<p>The last port in the port range.</p>",
"ProcessDetails$Pid": "<p>The process ID.</p>",
Expand Down Expand Up @@ -2241,6 +2247,11 @@
"Note$UpdatedAt": "<p>The timestamp of when the note was updated.</p> <p>Uses the <code>date-time</code> format specified in <a href=\"https://tools.ietf.org/html/rfc3339#section-5.6\">RFC 3339 section 5.6, Internet Date/Time Format</a>. The value cannot contain spaces. For example, <code>2020-03-22T13:22:13.933Z</code>.</p>",
"NoteUpdate$Text": "<p>The updated note text.</p>",
"NoteUpdate$UpdatedBy": "<p>The principal that updated the note.</p>",
"PatchSummary$Id": "<p>The identifier of the compliance standard that was used to determine the patch compliance status.</p>",
"PatchSummary$OperationStartTime": "<p>Indicates when the operation started.</p> <p>Uses the <code>date-time</code> format specified in <a href=\"https://tools.ietf.org/html/rfc3339#section-5.6\">RFC 3339 section 5.6, Internet Date/Time Format</a>. The value cannot contain spaces. For example, <code>2020-03-22T13:22:13.933Z</code>.</p>",
"PatchSummary$OperationEndTime": "<p>Indicates when the operation completed.</p> <p>Uses the <code>date-time</code> format specified in <a href=\"https://tools.ietf.org/html/rfc3339#section-5.6\">RFC 3339 section 5.6, Internet Date/Time Format</a>. The value cannot contain spaces. For example, <code>2020-03-22T13:22:13.933Z</code>.</p>",
"PatchSummary$RebootOption": "<p>The reboot option specified for the instance.</p>",
"PatchSummary$Operation": "<p>The type of patch operation performed. For Patch Manager, the values are <code>SCAN</code> and <code>INSTALL</code>. </p>",
"ProcessDetails$Name": "<p>The name of the process.</p>",
"ProcessDetails$Path": "<p>The path to the process executable.</p>",
"ProcessDetails$LaunchedAt": "<p>Indicates when the process was launched.</p> <p>Uses the <code>date-time</code> format specified in <a href=\"https://tools.ietf.org/html/rfc3339#section-5.6\">RFC 3339 section 5.6, Internet Date/Time Format</a>. The value cannot contain spaces. For example, <code>2020-03-22T13:22:13.933Z</code>.</p>",
Expand Down Expand Up @@ -2368,6 +2379,12 @@
"Resource$Partition": "<p>The canonical AWS partition name that the Region is assigned to.</p>"
}
},
"PatchSummary": {
"base": "<p>Provides an overview of the patch compliance status for an instance against a selected compliance standard.</p>",
"refs": {
"AwsSecurityFinding$PatchSummary": "<p>Provides an overview of the patch compliance status for an instance against a selected compliance standard.</p>"
}
},
"PortRange": {
"base": "<p>A range of ports.</p>",
"refs": {
Expand Down
Loading

0 comments on commit d74b040

Please sign in to comment.