diff --git a/sample/sagemaker/2017-07-24/service-2.json b/sample/sagemaker/2017-07-24/service-2.json index 10aa5ba0..c1217419 100644 --- a/sample/sagemaker/2017-07-24/service-2.json +++ b/sample/sagemaker/2017-07-24/service-2.json @@ -24901,10 +24901,7 @@ }, "ListClusterNodesResponse":{ "type":"structure", - "required":[ - "NextToken", - "ClusterNodeSummaries" - ], + "required":["ClusterNodeSummaries"], "members":{ "NextToken":{ "shape":"NextToken", @@ -25009,10 +25006,7 @@ }, "ListClustersResponse":{ "type":"structure", - "required":[ - "NextToken", - "ClusterSummaries" - ], + "required":["ClusterSummaries"], "members":{ "NextToken":{ "shape":"NextToken", @@ -32027,6 +32021,14 @@ "ml.g6.16xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", + "ml.g6e.xlarge", + "ml.g6e.2xlarge", + "ml.g6e.4xlarge", + "ml.g6e.8xlarge", + "ml.g6e.12xlarge", + "ml.g6e.16xlarge", + "ml.g6e.24xlarge", + "ml.g6e.48xlarge", "ml.inf2.xlarge", "ml.inf2.8xlarge", "ml.inf2.24xlarge", @@ -33324,7 +33326,40 @@ "ml.r5d.8xlarge", "ml.r5d.12xlarge", "ml.r5d.16xlarge", - "ml.r5d.24xlarge" + "ml.r5d.24xlarge", + "ml.g6.xlarge", + "ml.g6.2xlarge", + "ml.g6.4xlarge", + "ml.g6.8xlarge", + "ml.g6.12xlarge", + "ml.g6.16xlarge", + "ml.g6.24xlarge", + "ml.g6.48xlarge", + "ml.g6e.xlarge", + "ml.g6e.2xlarge", + "ml.g6e.4xlarge", + "ml.g6e.8xlarge", + "ml.g6e.12xlarge", + "ml.g6e.16xlarge", + "ml.g6e.24xlarge", + "ml.g6e.48xlarge", + "ml.m6i.large", + "ml.m6i.xlarge", + "ml.m6i.2xlarge", + "ml.m6i.4xlarge", + "ml.m6i.8xlarge", + "ml.m6i.12xlarge", + "ml.m6i.16xlarge", + "ml.m6i.24xlarge", + "ml.m6i.32xlarge", + "ml.c6i.xlarge", + "ml.c6i.2xlarge", + "ml.c6i.4xlarge", + "ml.c6i.8xlarge", + "ml.c6i.12xlarge", + "ml.c6i.16xlarge", + "ml.c6i.24xlarge", + "ml.c6i.32xlarge" ] }, "ProcessingJob":{ @@ -33525,7 +33560,7 @@ }, "KmsKeyId":{ "shape":"KmsKeyId", - "documentation":"
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.
Configuration for uploading output from the processing container.
" @@ -36427,6 +36462,7 @@ "required":[ "InstanceType", "InstanceCount", + "DurationHours", "TargetResources" ], "members":{ diff --git a/src/sagemaker_core/main/shapes.py b/src/sagemaker_core/main/shapes.py index d4992598..a1a96210 100644 --- a/src/sagemaker_core/main/shapes.py +++ b/src/sagemaker_core/main/shapes.py @@ -7118,7 +7118,7 @@ class ProcessingOutputConfig(Base): Attributes ---------------------- outputs: An array of outputs configuring the data to upload from the processing container. - kms_key_id: The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs. + kms_key_id: The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs. """ outputs: List[ProcessingOutput]