Skip to content

Commit

Permalink
Release v1.44.57 (2022-07-18) (#4483)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aws-sdk-go-automation committed Jul 18, 2022
1 parent d84ce26 commit 049042f
Show file tree
Hide file tree
Showing 31 changed files with 6,712 additions and 637 deletions.
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

0 comments on commit 049042f

Please sign in to comment.