diff --git a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.api.json b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.api.json index 7f0d1e9ba3e3..dcb488af6947 100644 --- a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.api.json +++ b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.api.json @@ -17386,7 +17386,8 @@ "ml.inf2.xlarge", "ml.inf2.8xlarge", "ml.inf2.24xlarge", - "ml.inf2.48xlarge" + "ml.inf2.48xlarge", + "ml.p5.48xlarge" ] }, "ProductionVariantList":{ @@ -18778,10 +18779,7 @@ }, "SelectiveExecutionConfig":{ "type":"structure", - "required":[ - "SourcePipelineExecutionArn", - "SelectedSteps" - ], + "required":["SelectedSteps"], "members":{ "SourcePipelineExecutionArn":{"shape":"PipelineExecutionArn"}, "SelectedSteps":{"shape":"SelectedStepList"} diff --git a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.docs.json b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.docs.json index 8e99ebb278d3..7f2939fe687f 100644 --- a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.docs.json +++ b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.docs.json @@ -10691,7 +10691,7 @@ "PipelineExecutionSummary$PipelineExecutionArn": "

The Amazon Resource Name (ARN) of the pipeline execution.

", "RetryPipelineExecutionRequest$PipelineExecutionArn": "

The Amazon Resource Name (ARN) of the pipeline execution.

", "RetryPipelineExecutionResponse$PipelineExecutionArn": "

The Amazon Resource Name (ARN) of the pipeline execution.

", - "SelectiveExecutionConfig$SourcePipelineExecutionArn": "

The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.

", + "SelectiveExecutionConfig$SourcePipelineExecutionArn": "

The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.

This field is required if the steps you specify for SelectedSteps depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.

", "SelectiveExecutionResult$SourcePipelineExecutionArn": "

The ARN from an execution of the current pipeline.

", "SendPipelineExecutionStepFailureResponse$PipelineExecutionArn": "

The Amazon Resource Name (ARN) of the pipeline execution.

", "SendPipelineExecutionStepSuccessResponse$PipelineExecutionArn": "

The Amazon Resource Name (ARN) of the pipeline execution.

", diff --git a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.normal.json b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.normal.json index ef8bad9ae722..21af2b1ea5dd 100644 --- a/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.normal.json +++ b/generator/ServiceModels/sagemaker/sagemaker-2017-07-24.normal.json @@ -28439,7 +28439,8 @@ "ml.inf2.xlarge", "ml.inf2.8xlarge", "ml.inf2.24xlarge", - "ml.inf2.48xlarge" + "ml.inf2.48xlarge", + "ml.p5.48xlarge" ] }, "ProductionVariantList":{ @@ -30595,14 +30596,11 @@ }, "SelectiveExecutionConfig":{ "type":"structure", - "required":[ - "SourcePipelineExecutionArn", - "SelectedSteps" - ], + "required":["SelectedSteps"], "members":{ "SourcePipelineExecutionArn":{ "shape":"PipelineExecutionArn", - "documentation":"

The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.

" + "documentation":"

The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.

This field is required if the steps you specify for SelectedSteps depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.

" }, "SelectedSteps":{ "shape":"SelectedStepList", diff --git a/sdk/src/Services/SageMaker/Generated/Model/SelectiveExecutionConfig.cs b/sdk/src/Services/SageMaker/Generated/Model/SelectiveExecutionConfig.cs index e5fc1e286ccd..a61a26f2f6f6 100644 --- a/sdk/src/Services/SageMaker/Generated/Model/SelectiveExecutionConfig.cs +++ b/sdk/src/Services/SageMaker/Generated/Model/SelectiveExecutionConfig.cs @@ -63,8 +63,15 @@ internal bool IsSetSelectedSteps() /// needed for the selected steps to run. The execution status of the pipeline can be /// either Failed or Success. /// + /// + /// + /// This field is required if the steps you specify for SelectedSteps depend + /// on output collaterals from any non-specified pipeline steps. For more information, + /// see Selective + /// Execution for Pipeline Steps. + /// /// - [AWSProperty(Required=true, Max=256)] + [AWSProperty(Max=256)] public string SourcePipelineExecutionArn { get { return this._sourcePipelineExecutionArn; } diff --git a/sdk/src/Services/SageMaker/Generated/ServiceEnumerations.cs b/sdk/src/Services/SageMaker/Generated/ServiceEnumerations.cs index 1b2b855ca8a6..d7b401d4ec3c 100644 --- a/sdk/src/Services/SageMaker/Generated/ServiceEnumerations.cs +++ b/sdk/src/Services/SageMaker/Generated/ServiceEnumerations.cs @@ -11205,6 +11205,10 @@ public class ProductionVariantInstanceType : ConstantClass /// public static readonly ProductionVariantInstanceType MlP4de24xlarge = new ProductionVariantInstanceType("ml.p4de.24xlarge"); /// + /// Constant MlP548xlarge for ProductionVariantInstanceType + /// + public static readonly ProductionVariantInstanceType MlP548xlarge = new ProductionVariantInstanceType("ml.p5.48xlarge"); + /// /// Constant MlR512xlarge for ProductionVariantInstanceType /// public static readonly ProductionVariantInstanceType MlR512xlarge = new ProductionVariantInstanceType("ml.r5.12xlarge");