diff --git a/SDK.CHANGELOG.md b/SDK.CHANGELOG.md index c54979531a28..1bf1221c81e3 100644 --- a/SDK.CHANGELOG.md +++ b/SDK.CHANGELOG.md @@ -1,3 +1,13 @@ +### 3.3.132.0 (2017-07-31 23:25 UTC) +* Inspector (3.3.2.0) + * Inspector's StopAssessmentRun API has been updated with a new input option - stopAction. This request parameter can be set to either START_EVALUATION or SKIP_EVALUATION. START_EVALUATION (the default value, and the previous behavior) stops the AWS agent data collection and begins the results evaluation for findings generation based on the data collected so far. SKIP_EVALUATION cancels the assessment run immediately, after which no findings are generated. +* SimpleSystemsManagement (3.3.8.0) + * Adds a SendAutomationSignal API to SSM Service. This API is used to send a signal to an automation execution to change the current behavior or status of the execution. +* Core 3.3.17.5 + * AWS CodeStar is now available in the following regions: Asia Pacific (Singapore), Asia Pacific (Sydney), EU (Frankfurt) + + + ### 3.3.131.0 (2017-07-30 19:34 UTC) * S3 (3.3.9.0) * Fix TransferUtility reporting 0 files transferred when performing directory download diff --git a/generator/ServiceModels/_sdk-versions.json b/generator/ServiceModels/_sdk-versions.json index 4bdc2a1da637..2a1b2528e2d2 100644 --- a/generator/ServiceModels/_sdk-versions.json +++ b/generator/ServiceModels/_sdk-versions.json @@ -1,7 +1,7 @@ { - "ProductVersion" : "3.3.131.0", - "CoreVersion" : "3.3.17.4", + "ProductVersion" : "3.3.132.0", + "CoreVersion" : "3.3.17.5", "DefaultToPreview" : false, "ServiceVersions" : { "CloudHSM" : { @@ -369,7 +369,7 @@ "InPreview" : false }, "SimpleSystemsManagement" : { - "Version" : "3.3.7.0", + "Version" : "3.3.8.0", "AssemblyVersionOverride" : null, "Dependencies" : { "Core" : "3.3.17.0" @@ -457,7 +457,7 @@ "InPreview" : false }, "Inspector" : { - "Version" : "3.3.1.3", + "Version" : "3.3.2.0", "AssemblyVersionOverride" : null, "Dependencies" : { "Core" : "3.3.17.0" diff --git a/sdk/code-analysis/ServiceAnalysis/Inspector/Properties/AssemblyInfo.cs b/sdk/code-analysis/ServiceAnalysis/Inspector/Properties/AssemblyInfo.cs index 105fe719b72f..e7f733b34c06 100644 --- a/sdk/code-analysis/ServiceAnalysis/Inspector/Properties/AssemblyInfo.cs +++ b/sdk/code-analysis/ServiceAnalysis/Inspector/Properties/AssemblyInfo.cs @@ -29,4 +29,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] -[assembly: AssemblyFileVersion("3.3.1.3")] \ No newline at end of file +[assembly: AssemblyFileVersion("3.3.2.0")] \ No newline at end of file diff --git a/sdk/code-analysis/ServiceAnalysis/SimpleSystemsManagement/Properties/AssemblyInfo.cs b/sdk/code-analysis/ServiceAnalysis/SimpleSystemsManagement/Properties/AssemblyInfo.cs index e06bb1201ae2..9da98d361d57 100644 --- a/sdk/code-analysis/ServiceAnalysis/SimpleSystemsManagement/Properties/AssemblyInfo.cs +++ b/sdk/code-analysis/ServiceAnalysis/SimpleSystemsManagement/Properties/AssemblyInfo.cs @@ -29,4 +29,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] -[assembly: AssemblyFileVersion("3.3.7.0")] \ No newline at end of file +[assembly: AssemblyFileVersion("3.3.8.0")] \ No newline at end of file diff --git a/sdk/src/Core/Amazon.Util/Internal/InternalSDKUtils.generated.cs b/sdk/src/Core/Amazon.Util/Internal/InternalSDKUtils.generated.cs index c5eb88c7befe..7de7e016416e 100644 --- a/sdk/src/Core/Amazon.Util/Internal/InternalSDKUtils.generated.cs +++ b/sdk/src/Core/Amazon.Util/Internal/InternalSDKUtils.generated.cs @@ -29,6 +29,6 @@ namespace Amazon.Util.Internal { public static partial class InternalSDKUtils { - internal const string CoreVersionNumber = "3.3.17.4"; + internal const string CoreVersionNumber = "3.3.17.5"; } } \ No newline at end of file diff --git a/sdk/src/Core/Properties/AssemblyInfo.cs b/sdk/src/Core/Properties/AssemblyInfo.cs index 1659cbca08d8..53d833eb4cc8 100644 --- a/sdk/src/Core/Properties/AssemblyInfo.cs +++ b/sdk/src/Core/Properties/AssemblyInfo.cs @@ -44,7 +44,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] -[assembly: AssemblyFileVersion("3.3.17.4")] +[assembly: AssemblyFileVersion("3.3.17.5")] #if WINDOWS_PHONE || UNITY [assembly: System.CLSCompliant(false)] diff --git a/sdk/src/Services/Inspector/Generated/AmazonInspectorConfig.cs b/sdk/src/Services/Inspector/Generated/AmazonInspectorConfig.cs index 86a876b2de40..86f89be4d0f2 100644 --- a/sdk/src/Services/Inspector/Generated/AmazonInspectorConfig.cs +++ b/sdk/src/Services/Inspector/Generated/AmazonInspectorConfig.cs @@ -32,7 +32,7 @@ namespace Amazon.Inspector public partial class AmazonInspectorConfig : ClientConfig { private static readonly string UserAgentString = - InternalSDKUtils.BuildUserAgentString("3.3.1.3"); + InternalSDKUtils.BuildUserAgentString("3.3.2.0"); private string _userAgent = UserAgentString; diff --git a/sdk/src/Services/Inspector/Properties/AssemblyInfo.cs b/sdk/src/Services/Inspector/Properties/AssemblyInfo.cs index d44c5efeaf8c..dab4b11b9f01 100644 --- a/sdk/src/Services/Inspector/Properties/AssemblyInfo.cs +++ b/sdk/src/Services/Inspector/Properties/AssemblyInfo.cs @@ -44,7 +44,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] -[assembly: AssemblyFileVersion("3.3.1.3")] +[assembly: AssemblyFileVersion("3.3.2.0")] #if WINDOWS_PHONE || UNITY [assembly: System.CLSCompliant(false)] diff --git a/sdk/src/Services/SimpleSystemsManagement/Generated/AmazonSimpleSystemsManagementConfig.cs b/sdk/src/Services/SimpleSystemsManagement/Generated/AmazonSimpleSystemsManagementConfig.cs index 08c835a0421d..4b680cfc5b39 100644 --- a/sdk/src/Services/SimpleSystemsManagement/Generated/AmazonSimpleSystemsManagementConfig.cs +++ b/sdk/src/Services/SimpleSystemsManagement/Generated/AmazonSimpleSystemsManagementConfig.cs @@ -32,7 +32,7 @@ namespace Amazon.SimpleSystemsManagement public partial class AmazonSimpleSystemsManagementConfig : ClientConfig { private static readonly string UserAgentString = - InternalSDKUtils.BuildUserAgentString("3.3.7.0"); + InternalSDKUtils.BuildUserAgentString("3.3.8.0"); private string _userAgent = UserAgentString; diff --git a/sdk/src/Services/SimpleSystemsManagement/Properties/AssemblyInfo.cs b/sdk/src/Services/SimpleSystemsManagement/Properties/AssemblyInfo.cs index c3b86aaceff3..60bf43f3cd0c 100644 --- a/sdk/src/Services/SimpleSystemsManagement/Properties/AssemblyInfo.cs +++ b/sdk/src/Services/SimpleSystemsManagement/Properties/AssemblyInfo.cs @@ -44,7 +44,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] -[assembly: AssemblyFileVersion("3.3.7.0")] +[assembly: AssemblyFileVersion("3.3.8.0")] #if WINDOWS_PHONE || UNITY [assembly: System.CLSCompliant(false)]