diff --git a/VERSION b/VERSION index d08a73e054c..a8dbb84f8f5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.242 \ No newline at end of file +1.11.243 \ No newline at end of file diff --git a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AdditionalS3DataSourceDataType.h b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AdditionalS3DataSourceDataType.h index aec5cf8ac00..52d8f60ffb4 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AdditionalS3DataSourceDataType.h +++ b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AdditionalS3DataSourceDataType.h @@ -16,7 +16,8 @@ namespace Model enum class AdditionalS3DataSourceDataType { NOT_SET, - S3Object + S3Object, + S3Prefix }; namespace AdditionalS3DataSourceDataTypeMapper diff --git a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AppType.h b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AppType.h index dfd889e7b73..b94d8bd1ac6 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AppType.h +++ b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/AppType.h @@ -20,17 +20,11 @@ namespace Model KernelGateway, DetailedProfiler, TensorBoard, - VSCode, - Savitur, CodeEditor, JupyterLab, RStudioServerPro, - RSession, RSessionGateway, - Canvas, - DatasetManager, - SageMakerLite, - Local + Canvas }; namespace AppTypeMapper diff --git a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/StudioLifecycleConfigAppType.h b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/StudioLifecycleConfigAppType.h index 775f95835ba..7640bd2a48a 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/StudioLifecycleConfigAppType.h +++ b/generated/src/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/StudioLifecycleConfigAppType.h @@ -18,8 +18,6 @@ namespace Model NOT_SET, JupyterServer, KernelGateway, - VSCode, - Savitur, CodeEditor, JupyterLab }; diff --git a/generated/src/aws-cpp-sdk-sagemaker/source/model/AdditionalS3DataSourceDataType.cpp b/generated/src/aws-cpp-sdk-sagemaker/source/model/AdditionalS3DataSourceDataType.cpp index 2eb53cb6152..45a617012f2 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/source/model/AdditionalS3DataSourceDataType.cpp +++ b/generated/src/aws-cpp-sdk-sagemaker/source/model/AdditionalS3DataSourceDataType.cpp @@ -21,6 +21,7 @@ namespace Aws { static const int S3Object_HASH = HashingUtils::HashString("S3Object"); + static const int S3Prefix_HASH = HashingUtils::HashString("S3Prefix"); AdditionalS3DataSourceDataType GetAdditionalS3DataSourceDataTypeForName(const Aws::String& name) @@ -30,6 +31,10 @@ namespace Aws { return AdditionalS3DataSourceDataType::S3Object; } + else if (hashCode == S3Prefix_HASH) + { + return AdditionalS3DataSourceDataType::S3Prefix; + } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { @@ -48,6 +53,8 @@ namespace Aws return {}; case AdditionalS3DataSourceDataType::S3Object: return "S3Object"; + case AdditionalS3DataSourceDataType::S3Prefix: + return "S3Prefix"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) diff --git a/generated/src/aws-cpp-sdk-sagemaker/source/model/AppType.cpp b/generated/src/aws-cpp-sdk-sagemaker/source/model/AppType.cpp index e8944064aac..dd526334ba1 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/source/model/AppType.cpp +++ b/generated/src/aws-cpp-sdk-sagemaker/source/model/AppType.cpp @@ -24,17 +24,11 @@ namespace Aws static const int KernelGateway_HASH = HashingUtils::HashString("KernelGateway"); static const int DetailedProfiler_HASH = HashingUtils::HashString("DetailedProfiler"); static const int TensorBoard_HASH = HashingUtils::HashString("TensorBoard"); - static const int VSCode_HASH = HashingUtils::HashString("VSCode"); - static const int Savitur_HASH = HashingUtils::HashString("Savitur"); static const int CodeEditor_HASH = HashingUtils::HashString("CodeEditor"); static const int JupyterLab_HASH = HashingUtils::HashString("JupyterLab"); static const int RStudioServerPro_HASH = HashingUtils::HashString("RStudioServerPro"); - static const int RSession_HASH = HashingUtils::HashString("RSession"); static const int RSessionGateway_HASH = HashingUtils::HashString("RSessionGateway"); static const int Canvas_HASH = HashingUtils::HashString("Canvas"); - static const int DatasetManager_HASH = HashingUtils::HashString("DatasetManager"); - static const int SageMakerLite_HASH = HashingUtils::HashString("SageMakerLite"); - static const int Local_HASH = HashingUtils::HashString("Local"); AppType GetAppTypeForName(const Aws::String& name) @@ -56,14 +50,6 @@ namespace Aws { return AppType::TensorBoard; } - else if (hashCode == VSCode_HASH) - { - return AppType::VSCode; - } - else if (hashCode == Savitur_HASH) - { - return AppType::Savitur; - } else if (hashCode == CodeEditor_HASH) { return AppType::CodeEditor; @@ -76,10 +62,6 @@ namespace Aws { return AppType::RStudioServerPro; } - else if (hashCode == RSession_HASH) - { - return AppType::RSession; - } else if (hashCode == RSessionGateway_HASH) { return AppType::RSessionGateway; @@ -88,18 +70,6 @@ namespace Aws { return AppType::Canvas; } - else if (hashCode == DatasetManager_HASH) - { - return AppType::DatasetManager; - } - else if (hashCode == SageMakerLite_HASH) - { - return AppType::SageMakerLite; - } - else if (hashCode == Local_HASH) - { - return AppType::Local; - } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { @@ -124,28 +94,16 @@ namespace Aws return "DetailedProfiler"; case AppType::TensorBoard: return "TensorBoard"; - case AppType::VSCode: - return "VSCode"; - case AppType::Savitur: - return "Savitur"; case AppType::CodeEditor: return "CodeEditor"; case AppType::JupyterLab: return "JupyterLab"; case AppType::RStudioServerPro: return "RStudioServerPro"; - case AppType::RSession: - return "RSession"; case AppType::RSessionGateway: return "RSessionGateway"; case AppType::Canvas: return "Canvas"; - case AppType::DatasetManager: - return "DatasetManager"; - case AppType::SageMakerLite: - return "SageMakerLite"; - case AppType::Local: - return "Local"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) diff --git a/generated/src/aws-cpp-sdk-sagemaker/source/model/StudioLifecycleConfigAppType.cpp b/generated/src/aws-cpp-sdk-sagemaker/source/model/StudioLifecycleConfigAppType.cpp index c0996866bfb..318eb6bb276 100644 --- a/generated/src/aws-cpp-sdk-sagemaker/source/model/StudioLifecycleConfigAppType.cpp +++ b/generated/src/aws-cpp-sdk-sagemaker/source/model/StudioLifecycleConfigAppType.cpp @@ -22,8 +22,6 @@ namespace Aws static const int JupyterServer_HASH = HashingUtils::HashString("JupyterServer"); static const int KernelGateway_HASH = HashingUtils::HashString("KernelGateway"); - static const int VSCode_HASH = HashingUtils::HashString("VSCode"); - static const int Savitur_HASH = HashingUtils::HashString("Savitur"); static const int CodeEditor_HASH = HashingUtils::HashString("CodeEditor"); static const int JupyterLab_HASH = HashingUtils::HashString("JupyterLab"); @@ -39,14 +37,6 @@ namespace Aws { return StudioLifecycleConfigAppType::KernelGateway; } - else if (hashCode == VSCode_HASH) - { - return StudioLifecycleConfigAppType::VSCode; - } - else if (hashCode == Savitur_HASH) - { - return StudioLifecycleConfigAppType::Savitur; - } else if (hashCode == CodeEditor_HASH) { return StudioLifecycleConfigAppType::CodeEditor; @@ -75,10 +65,6 @@ namespace Aws return "JupyterServer"; case StudioLifecycleConfigAppType::KernelGateway: return "KernelGateway"; - case StudioLifecycleConfigAppType::VSCode: - return "VSCode"; - case StudioLifecycleConfigAppType::Savitur: - return "Savitur"; case StudioLifecycleConfigAppType::CodeEditor: return "CodeEditor"; case StudioLifecycleConfigAppType::JupyterLab: diff --git a/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h b/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h index 2fce96f6c24..6b94d252d00 100644 --- a/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h +++ b/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h @@ -4,7 +4,7 @@ */ #pragma once -#define AWS_SDK_VERSION_STRING "1.11.242" +#define AWS_SDK_VERSION_STRING "1.11.243" #define AWS_SDK_VERSION_MAJOR 1 #define AWS_SDK_VERSION_MINOR 11 -#define AWS_SDK_VERSION_PATCH 242 +#define AWS_SDK_VERSION_PATCH 243 diff --git a/tools/code-generation/api-descriptions/sagemaker-2017-07-24.normal.json b/tools/code-generation/api-descriptions/sagemaker-2017-07-24.normal.json index aa5d04338fb..114f2a6baaf 100644 --- a/tools/code-generation/api-descriptions/sagemaker-2017-07-24.normal.json +++ b/tools/code-generation/api-descriptions/sagemaker-2017-07-24.normal.json @@ -4120,7 +4120,10 @@ }, "AdditionalS3DataSourceDataType":{ "type":"string", - "enum":["S3Object"] + "enum":[ + "S3Object", + "S3Prefix" + ] }, "AgentVersion":{ "type":"structure", @@ -4604,17 +4607,11 @@ "KernelGateway", "DetailedProfiler", "TensorBoard", - "VSCode", - "Savitur", "CodeEditor", "JupyterLab", "RStudioServerPro", - "RSession", "RSessionGateway", - "Canvas", - "DatasetManager", - "SageMakerLite", - "Local" + "Canvas" ] }, "ApprovalDescription":{ @@ -33475,8 +33472,6 @@ "enum":[ "JupyterServer", "KernelGateway", - "VSCode", - "Savitur", "CodeEditor", "JupyterLab" ] @@ -37194,7 +37189,8 @@ }, "VpcOnlyTrustedAccounts":{ "type":"list", - "member":{"shape":"AccountId"} + "member":{"shape":"AccountId"}, + "max":10 }, "VpcSecurityGroupIds":{ "type":"list",