Skip to content

Commit

Permalink
Release v1.44.201 (2023-02-14) (#4725)
Browse files Browse the repository at this point in the history
Release v1.44.201 (2023-02-14)
===

### Service Client Updates
* `service/appconfig`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
  * With this release customers can turn host maintenance on or off when allocating or modifying a supported dedicated host. Host maintenance is turned on by default for supported hosts.
  • Loading branch information
aws-sdk-go-automation authored Feb 14, 2023
1 parent cc5f9c0 commit 0df2f81
Show file tree
Hide file tree
Showing 15 changed files with 1,167 additions and 3,057 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.44.201 (2023-02-14)
===

### Service Client Updates
* `service/appconfig`: Updates service API and documentation
* `service/datasync`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* With this release customers can turn host maintenance on or off when allocating or modifying a supported dedicated host. Host maintenance is turned on by default for supported hosts.

Release v1.44.200 (2023-02-13)
===

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.44.200"
const SDKVersion = "1.44.201"
24 changes: 23 additions & 1 deletion models/apis/appconfig/2019-10-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,11 @@
"box":true,
"location":"header",
"locationName":"Latest-Version-Number"
},
"VersionLabel":{
"shape":"VersionLabel",
"location":"header",
"locationName":"VersionLabel"
}
},
"payload":"Content"
Expand Down Expand Up @@ -1531,6 +1536,11 @@
"shape":"StringWithLengthBetween1And255",
"location":"header",
"locationName":"Content-Type"
},
"VersionLabel":{
"shape":"VersionLabel",
"location":"header",
"locationName":"VersionLabel"
}
},
"payload":"Content"
Expand All @@ -1542,7 +1552,8 @@
"ConfigurationProfileId":{"shape":"Id"},
"VersionNumber":{"shape":"Integer"},
"Description":{"shape":"Description"},
"ContentType":{"shape":"StringWithLengthBetween1And255"}
"ContentType":{"shape":"StringWithLengthBetween1And255"},
"VersionLabel":{"shape":"VersionLabel"}
}
},
"HostedConfigurationVersionSummaryList":{
Expand Down Expand Up @@ -1784,6 +1795,11 @@
"shape":"NextToken",
"location":"querystring",
"locationName":"next_token"
},
"VersionLabel":{
"shape":"QueryName",
"location":"querystring",
"locationName":"version_label"
}
}
},
Expand Down Expand Up @@ -2233,6 +2249,12 @@
"type":"string",
"max":1024,
"min":1
},
"VersionLabel":{
"type":"string",
"max":64,
"min":1,
"pattern":".*[^0-9].*"
}
}
}
13 changes: 11 additions & 2 deletions models/apis/appconfig/2019-10-09/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,8 @@
"QueryName": {
"base": null,
"refs": {
"ListExtensionsRequest$Name": "<p>The extension name.</p>"
"ListExtensionsRequest$Name": "<p>The extension name.</p>",
"ListHostedConfigurationVersionsRequest$VersionLabel": "<p>An optional filter that can be used to specify the version label of an AppConfig hosted configuration version. This parameter supports filtering by prefix using a wildcard, for example \"v2*\". If you don't specify an asterisk at the end of the value, only an exact match is returned.</p>"
}
},
"ReplicateTo": {
Expand Down Expand Up @@ -1078,9 +1079,17 @@
"Deployment$ConfigurationVersion": "<p>The configuration version that was deployed.</p>",
"DeploymentSummary$ConfigurationVersion": "<p>The version of the configuration.</p>",
"GetConfigurationRequest$ClientConfigurationVersion": "<p>The configuration version returned in the most recent <code>GetConfiguration</code> response.</p> <important> <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code> parameter to identify the configuration version on your clients. If you don’t send <code>ClientConfigurationVersion</code> with each call to <code>GetConfiguration</code>, your clients receive the current configuration. You are charged each time your clients receive a configuration.</p> <p>To avoid excess charges, we recommend you use the <a href=\"https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html\">StartConfigurationSession</a> and <a href=\"https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html\">GetLatestConfiguration</a> APIs, which track the client configuration version on your behalf. If you choose to continue using <code>GetConfiguration</code>, we recommend that you include the <code>ClientConfigurationVersion</code> value with every call to <code>GetConfiguration</code>. The value to use for <code>ClientConfigurationVersion</code> comes from the <code>ConfigurationVersion</code> attribute returned by <code>GetConfiguration</code> when there is new or updated data, and should be saved for subsequent calls to <code>GetConfiguration</code>.</p> </important> <p>For more information about working with configurations, see <a href=\"http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration.html\">Retrieving the Configuration</a> in the <i>AppConfig User Guide</i>.</p>",
"StartDeploymentRequest$ConfigurationVersion": "<p>The configuration version to deploy.</p>",
"StartDeploymentRequest$ConfigurationVersion": "<p>The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify either the version number or version label.</p>",
"ValidateConfigurationRequest$ConfigurationVersion": "<p>The version of the configuration to validate.</p>"
}
},
"VersionLabel": {
"base": null,
"refs": {
"CreateHostedConfigurationVersionRequest$VersionLabel": "<p>An optional, user-defined label for the AppConfig hosted configuration version. This value must contain at least one non-numeric character. For example, \"v2.2.0\".</p>",
"HostedConfigurationVersion$VersionLabel": "<p>A user-defined label for an AppConfig hosted configuration version.</p>",
"HostedConfigurationVersionSummary$VersionLabel": "<p>A user-defined label for an AppConfig hosted configuration version.</p>"
}
}
}
}
Loading

0 comments on commit 0df2f81

Please sign in to comment.