Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.57 #4483

Merged
merged 1 commit into from Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,21 @@
Release v1.44.57 (2022-07-18)
===

### Service Client Updates
* `service/discovery`: Updates service API and documentation
* Add AWS Agentless Collector details to the GetDiscoverySummary API response
* `service/ec2`: Updates service documentation
* Documentation updates for Amazon EC2.
* `service/elasticache`: Updates service API and documentation
* Adding AutoMinorVersionUpgrade in the DescribeReplicationGroups API
* `service/kms`: Updates service API, documentation, and paginators
* Added support for the SM2 KeySpec in China Partition Regions
* `service/mediapackage`: Updates service API and documentation
* This release adds "IncludeIframeOnlyStream" for Dash endpoints and increases the number of supported video and audio encryption presets for Speke v2
* `service/sagemaker`: Updates service API, documentation, and paginators
* Amazon SageMaker Edge Manager provides lightweight model deployment feature to deploy machine learning models on requested devices.
* `service/sso-admin`: Updates service API, documentation, and paginators

Release v1.44.56 (2022-07-15)
===

Expand Down
58 changes: 53 additions & 5 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.56"
const SDKVersion = "1.44.57"
26 changes: 24 additions & 2 deletions models/apis/discovery/2015-11-01/api-2.json
Expand Up @@ -723,6 +723,27 @@
"unknownAgents":{"shape":"Integer"}
}
},
"CustomerAgentlessCollectorInfo":{
"type":"structure",
"required":[
"activeAgentlessCollectors",
"healthyAgentlessCollectors",
"denyListedAgentlessCollectors",
"shutdownAgentlessCollectors",
"unhealthyAgentlessCollectors",
"totalAgentlessCollectors",
"unknownAgentlessCollectors"
],
"members":{
"activeAgentlessCollectors":{"shape":"Integer"},
"healthyAgentlessCollectors":{"shape":"Integer"},
"denyListedAgentlessCollectors":{"shape":"Integer"},
"shutdownAgentlessCollectors":{"shape":"Integer"},
"unhealthyAgentlessCollectors":{"shape":"Integer"},
"totalAgentlessCollectors":{"shape":"Integer"},
"unknownAgentlessCollectors":{"shape":"Integer"}
}
},
"CustomerConnectorInfo":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1061,7 +1082,8 @@
"serversMappedtoTags":{"shape":"Long"},
"agentSummary":{"shape":"CustomerAgentInfo"},
"connectorSummary":{"shape":"CustomerConnectorInfo"},
"meCollectorSummary":{"shape":"CustomerMeCollectorInfo"}
"meCollectorSummary":{"shape":"CustomerMeCollectorInfo"},
"agentlessCollectorSummary":{"shape":"CustomerAgentlessCollectorInfo"}
}
},
"HomeRegionNotSetException":{
Expand Down Expand Up @@ -1150,7 +1172,7 @@
"type":"string",
"max":4000,
"min":1,
"pattern":"\\S+:\\/\\/\\S+\\/[\\s\\S]*\\S[\\s\\S]*"
"pattern":"\\S+://\\S+/[\\s\\S]*\\S[\\s\\S]*"
},
"Integer":{"type":"integer"},
"InvalidParameterException":{
Expand Down
13 changes: 13 additions & 0 deletions models/apis/discovery/2015-11-01/docs-2.json
Expand Up @@ -319,6 +319,12 @@
"GetDiscoverySummaryResponse$agentSummary": "<p>Details about discovered agents, including agent status and health.</p>"
}
},
"CustomerAgentlessCollectorInfo": {
"base": null,
"refs": {
"GetDiscoverySummaryResponse$agentlessCollectorSummary": null
}
},
"CustomerConnectorInfo": {
"base": "<p>Inventory data for installed discovery connectors.</p>",
"refs": {
Expand Down Expand Up @@ -666,6 +672,13 @@
"CustomerAgentInfo$unhealthyAgents": "<p>Number of unhealthy discovery agents.</p>",
"CustomerAgentInfo$totalAgents": "<p>Total number of discovery agents.</p>",
"CustomerAgentInfo$unknownAgents": "<p>Number of unknown discovery agents.</p>",
"CustomerAgentlessCollectorInfo$activeAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$healthyAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$denyListedAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$shutdownAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$unhealthyAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$totalAgentlessCollectors": null,
"CustomerAgentlessCollectorInfo$unknownAgentlessCollectors": null,
"CustomerConnectorInfo$activeConnectors": "<p>Number of active discovery connectors.</p>",
"CustomerConnectorInfo$healthyConnectors": "<p>Number of healthy discovery connectors.</p>",
"CustomerConnectorInfo$blackListedConnectors": "<p>Number of blacklisted discovery connectors.</p>",
Expand Down