aws-sdk-sagemaker 1.314.0 → 1.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +347 -23
- data/lib/aws-sdk-sagemaker/client_api.rb +167 -4
- data/lib/aws-sdk-sagemaker/types.rb +777 -91
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +181 -13
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +142 -5
- metadata +3 -3
@@ -327,6 +327,10 @@ module Aws::SageMaker
|
|
327
327
|
ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
|
328
328
|
ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
|
329
329
|
ClusterPrivatePrimaryIpv6 = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIpv6')
|
330
|
+
ClusterRestrictedInstanceGroupDetails = Shapes::StructureShape.new(name: 'ClusterRestrictedInstanceGroupDetails')
|
331
|
+
ClusterRestrictedInstanceGroupDetailsList = Shapes::ListShape.new(name: 'ClusterRestrictedInstanceGroupDetailsList')
|
332
|
+
ClusterRestrictedInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterRestrictedInstanceGroupSpecification')
|
333
|
+
ClusterRestrictedInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterRestrictedInstanceGroupSpecifications')
|
330
334
|
ClusterSchedulerConfigArn = Shapes::StringShape.new(name: 'ClusterSchedulerConfigArn')
|
331
335
|
ClusterSchedulerConfigId = Shapes::StringShape.new(name: 'ClusterSchedulerConfigId')
|
332
336
|
ClusterSchedulerConfigSummary = Shapes::StructureShape.new(name: 'ClusterSchedulerConfigSummary')
|
@@ -937,6 +941,8 @@ module Aws::SageMaker
|
|
937
941
|
Endpoints = Shapes::ListShape.new(name: 'Endpoints')
|
938
942
|
EntityDescription = Shapes::StringShape.new(name: 'EntityDescription')
|
939
943
|
EntityName = Shapes::StringShape.new(name: 'EntityName')
|
944
|
+
EnvironmentConfig = Shapes::StructureShape.new(name: 'EnvironmentConfig')
|
945
|
+
EnvironmentConfigDetails = Shapes::StructureShape.new(name: 'EnvironmentConfigDetails')
|
940
946
|
EnvironmentKey = Shapes::StringShape.new(name: 'EnvironmentKey')
|
941
947
|
EnvironmentMap = Shapes::MapShape.new(name: 'EnvironmentMap')
|
942
948
|
EnvironmentParameter = Shapes::StructureShape.new(name: 'EnvironmentParameter')
|
@@ -963,8 +969,11 @@ module Aws::SageMaker
|
|
963
969
|
Explainability = Shapes::StructureShape.new(name: 'Explainability')
|
964
970
|
ExplainabilityLocation = Shapes::StringShape.new(name: 'ExplainabilityLocation')
|
965
971
|
ExplainerConfig = Shapes::StructureShape.new(name: 'ExplainerConfig')
|
972
|
+
FSxLustreConfig = Shapes::StructureShape.new(name: 'FSxLustreConfig')
|
966
973
|
FSxLustreFileSystem = Shapes::StructureShape.new(name: 'FSxLustreFileSystem')
|
967
974
|
FSxLustreFileSystemConfig = Shapes::StructureShape.new(name: 'FSxLustreFileSystemConfig')
|
975
|
+
FSxLustrePerUnitStorageThroughput = Shapes::IntegerShape.new(name: 'FSxLustrePerUnitStorageThroughput')
|
976
|
+
FSxLustreSizeInGiB = Shapes::IntegerShape.new(name: 'FSxLustreSizeInGiB')
|
968
977
|
FailStepMetadata = Shapes::StructureShape.new(name: 'FailStepMetadata')
|
969
978
|
FailureHandlingPolicy = Shapes::StringShape.new(name: 'FailureHandlingPolicy')
|
970
979
|
FailureReason = Shapes::StringShape.new(name: 'FailureReason')
|
@@ -1445,6 +1454,8 @@ module Aws::SageMaker
|
|
1445
1454
|
ListPipelineExecutionsResponse = Shapes::StructureShape.new(name: 'ListPipelineExecutionsResponse')
|
1446
1455
|
ListPipelineParametersForExecutionRequest = Shapes::StructureShape.new(name: 'ListPipelineParametersForExecutionRequest')
|
1447
1456
|
ListPipelineParametersForExecutionResponse = Shapes::StructureShape.new(name: 'ListPipelineParametersForExecutionResponse')
|
1457
|
+
ListPipelineVersionsRequest = Shapes::StructureShape.new(name: 'ListPipelineVersionsRequest')
|
1458
|
+
ListPipelineVersionsResponse = Shapes::StructureShape.new(name: 'ListPipelineVersionsResponse')
|
1448
1459
|
ListPipelinesRequest = Shapes::StructureShape.new(name: 'ListPipelinesRequest')
|
1449
1460
|
ListPipelinesResponse = Shapes::StructureShape.new(name: 'ListPipelinesResponse')
|
1450
1461
|
ListProcessingJobsRequest = Shapes::StructureShape.new(name: 'ListProcessingJobsRequest')
|
@@ -1851,6 +1862,12 @@ module Aws::SageMaker
|
|
1851
1862
|
PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
|
1852
1863
|
PipelineSummary = Shapes::StructureShape.new(name: 'PipelineSummary')
|
1853
1864
|
PipelineSummaryList = Shapes::ListShape.new(name: 'PipelineSummaryList')
|
1865
|
+
PipelineVersion = Shapes::StructureShape.new(name: 'PipelineVersion')
|
1866
|
+
PipelineVersionDescription = Shapes::StringShape.new(name: 'PipelineVersionDescription')
|
1867
|
+
PipelineVersionId = Shapes::IntegerShape.new(name: 'PipelineVersionId')
|
1868
|
+
PipelineVersionName = Shapes::StringShape.new(name: 'PipelineVersionName')
|
1869
|
+
PipelineVersionSummary = Shapes::StructureShape.new(name: 'PipelineVersionSummary')
|
1870
|
+
PipelineVersionSummaryList = Shapes::ListShape.new(name: 'PipelineVersionSummaryList')
|
1854
1871
|
PlatformIdentifier = Shapes::StringShape.new(name: 'PlatformIdentifier')
|
1855
1872
|
PolicyString = Shapes::StringShape.new(name: 'PolicyString')
|
1856
1873
|
PredefinedMetricSpecification = Shapes::StructureShape.new(name: 'PredefinedMetricSpecification')
|
@@ -2077,11 +2094,14 @@ module Aws::SageMaker
|
|
2077
2094
|
S3DataDistribution = Shapes::StringShape.new(name: 'S3DataDistribution')
|
2078
2095
|
S3DataSource = Shapes::StructureShape.new(name: 'S3DataSource')
|
2079
2096
|
S3DataType = Shapes::StringShape.new(name: 'S3DataType')
|
2097
|
+
S3FileSystem = Shapes::StructureShape.new(name: 'S3FileSystem')
|
2098
|
+
S3FileSystemConfig = Shapes::StructureShape.new(name: 'S3FileSystemConfig')
|
2080
2099
|
S3ModelDataSource = Shapes::StructureShape.new(name: 'S3ModelDataSource')
|
2081
2100
|
S3ModelDataType = Shapes::StringShape.new(name: 'S3ModelDataType')
|
2082
2101
|
S3ModelUri = Shapes::StringShape.new(name: 'S3ModelUri')
|
2083
2102
|
S3OutputPath = Shapes::StringShape.new(name: 'S3OutputPath')
|
2084
2103
|
S3Presign = Shapes::StructureShape.new(name: 'S3Presign')
|
2104
|
+
S3SchemaUri = Shapes::StringShape.new(name: 'S3SchemaUri')
|
2085
2105
|
S3StorageConfig = Shapes::StructureShape.new(name: 'S3StorageConfig')
|
2086
2106
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
2087
2107
|
SageMakerImageName = Shapes::StringShape.new(name: 'SageMakerImageName')
|
@@ -2506,6 +2526,8 @@ module Aws::SageMaker
|
|
2506
2526
|
UpdatePipelineExecutionResponse = Shapes::StructureShape.new(name: 'UpdatePipelineExecutionResponse')
|
2507
2527
|
UpdatePipelineRequest = Shapes::StructureShape.new(name: 'UpdatePipelineRequest')
|
2508
2528
|
UpdatePipelineResponse = Shapes::StructureShape.new(name: 'UpdatePipelineResponse')
|
2529
|
+
UpdatePipelineVersionRequest = Shapes::StructureShape.new(name: 'UpdatePipelineVersionRequest')
|
2530
|
+
UpdatePipelineVersionResponse = Shapes::StructureShape.new(name: 'UpdatePipelineVersionResponse')
|
2509
2531
|
UpdateProjectInput = Shapes::StructureShape.new(name: 'UpdateProjectInput')
|
2510
2532
|
UpdateProjectOutput = Shapes::StructureShape.new(name: 'UpdateProjectOutput')
|
2511
2533
|
UpdateSpaceRequest = Shapes::StructureShape.new(name: 'UpdateSpaceRequest')
|
@@ -2570,6 +2592,7 @@ module Aws::SageMaker
|
|
2570
2592
|
Workforce = Shapes::StructureShape.new(name: 'Workforce')
|
2571
2593
|
WorkforceArn = Shapes::StringShape.new(name: 'WorkforceArn')
|
2572
2594
|
WorkforceFailureReason = Shapes::StringShape.new(name: 'WorkforceFailureReason')
|
2595
|
+
WorkforceIpAddressType = Shapes::StringShape.new(name: 'WorkforceIpAddressType')
|
2573
2596
|
WorkforceName = Shapes::StringShape.new(name: 'WorkforceName')
|
2574
2597
|
WorkforceSecurityGroupId = Shapes::StringShape.new(name: 'WorkforceSecurityGroupId')
|
2575
2598
|
WorkforceSecurityGroupIds = Shapes::ListShape.new(name: 'WorkforceSecurityGroupIds')
|
@@ -3003,7 +3026,7 @@ module Aws::SageMaker
|
|
3003
3026
|
BatchDeleteClusterNodesErrorList.member = Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesError)
|
3004
3027
|
|
3005
3028
|
BatchDeleteClusterNodesRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
3006
|
-
BatchDeleteClusterNodesRequest.add_member(:node_ids, Shapes::ShapeRef.new(shape: ClusterNodeIds,
|
3029
|
+
BatchDeleteClusterNodesRequest.add_member(:node_ids, Shapes::ShapeRef.new(shape: ClusterNodeIds, location_name: "NodeIds"))
|
3007
3030
|
BatchDeleteClusterNodesRequest.struct_class = Types::BatchDeleteClusterNodesRequest
|
3008
3031
|
|
3009
3032
|
BatchDeleteClusterNodesResponse.add_member(:failed, Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesErrorList, location_name: "Failed"))
|
@@ -3243,7 +3266,7 @@ module Aws::SageMaker
|
|
3243
3266
|
ClarifyTextConfig.add_member(:granularity, Shapes::ShapeRef.new(shape: ClarifyTextGranularity, required: true, location_name: "Granularity"))
|
3244
3267
|
ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
|
3245
3268
|
|
3246
|
-
ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB,
|
3269
|
+
ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
3247
3270
|
ClusterEbsVolumeConfig.struct_class = Types::ClusterEbsVolumeConfig
|
3248
3271
|
|
3249
3272
|
ClusterInstanceGroupDetails.add_member(:current_count, Shapes::ShapeRef.new(shape: ClusterNonNegativeInstanceCount, location_name: "CurrentCount"))
|
@@ -3335,6 +3358,39 @@ module Aws::SageMaker
|
|
3335
3358
|
ClusterOrchestratorEksConfig.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: EksClusterArn, required: true, location_name: "ClusterArn"))
|
3336
3359
|
ClusterOrchestratorEksConfig.struct_class = Types::ClusterOrchestratorEksConfig
|
3337
3360
|
|
3361
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:current_count, Shapes::ShapeRef.new(shape: ClusterNonNegativeInstanceCount, location_name: "CurrentCount"))
|
3362
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:target_count, Shapes::ShapeRef.new(shape: ClusterInstanceCount, location_name: "TargetCount"))
|
3363
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, location_name: "InstanceGroupName"))
|
3364
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, location_name: "InstanceType"))
|
3365
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRole"))
|
3366
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
|
3367
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:instance_storage_configs, Shapes::ShapeRef.new(shape: ClusterInstanceStorageConfigs, location_name: "InstanceStorageConfigs"))
|
3368
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:on_start_deep_health_checks, Shapes::ShapeRef.new(shape: OnStartDeepHealthChecks, location_name: "OnStartDeepHealthChecks"))
|
3369
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:status, Shapes::ShapeRef.new(shape: InstanceGroupStatus, location_name: "Status"))
|
3370
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:training_plan_arn, Shapes::ShapeRef.new(shape: TrainingPlanArn, location_name: "TrainingPlanArn"))
|
3371
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:training_plan_status, Shapes::ShapeRef.new(shape: InstanceGroupTrainingPlanStatus, location_name: "TrainingPlanStatus"))
|
3372
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:override_vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "OverrideVpcConfig"))
|
3373
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:scheduled_update_config, Shapes::ShapeRef.new(shape: ScheduledUpdateConfig, location_name: "ScheduledUpdateConfig"))
|
3374
|
+
ClusterRestrictedInstanceGroupDetails.add_member(:environment_config, Shapes::ShapeRef.new(shape: EnvironmentConfigDetails, location_name: "EnvironmentConfig"))
|
3375
|
+
ClusterRestrictedInstanceGroupDetails.struct_class = Types::ClusterRestrictedInstanceGroupDetails
|
3376
|
+
|
3377
|
+
ClusterRestrictedInstanceGroupDetailsList.member = Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupDetails)
|
3378
|
+
|
3379
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:instance_count, Shapes::ShapeRef.new(shape: ClusterInstanceCount, required: true, location_name: "InstanceCount"))
|
3380
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
3381
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, required: true, location_name: "InstanceType"))
|
3382
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "ExecutionRole"))
|
3383
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
|
3384
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:instance_storage_configs, Shapes::ShapeRef.new(shape: ClusterInstanceStorageConfigs, location_name: "InstanceStorageConfigs"))
|
3385
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:on_start_deep_health_checks, Shapes::ShapeRef.new(shape: OnStartDeepHealthChecks, location_name: "OnStartDeepHealthChecks"))
|
3386
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:training_plan_arn, Shapes::ShapeRef.new(shape: TrainingPlanArn, location_name: "TrainingPlanArn"))
|
3387
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:override_vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "OverrideVpcConfig"))
|
3388
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:scheduled_update_config, Shapes::ShapeRef.new(shape: ScheduledUpdateConfig, location_name: "ScheduledUpdateConfig"))
|
3389
|
+
ClusterRestrictedInstanceGroupSpecification.add_member(:environment_config, Shapes::ShapeRef.new(shape: EnvironmentConfig, required: true, location_name: "EnvironmentConfig"))
|
3390
|
+
ClusterRestrictedInstanceGroupSpecification.struct_class = Types::ClusterRestrictedInstanceGroupSpecification
|
3391
|
+
|
3392
|
+
ClusterRestrictedInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecification)
|
3393
|
+
|
3338
3394
|
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_arn, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigArn, required: true, location_name: "ClusterSchedulerConfigArn"))
|
3339
3395
|
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
3340
3396
|
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ClusterSchedulerConfigVersion", metadata: {"box" => true}))
|
@@ -3428,7 +3484,7 @@ module Aws::SageMaker
|
|
3428
3484
|
ComputeQuotaConfig.struct_class = Types::ComputeQuotaConfig
|
3429
3485
|
|
3430
3486
|
ComputeQuotaResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, required: true, location_name: "InstanceType"))
|
3431
|
-
ComputeQuotaResourceConfig.add_member(:count, Shapes::ShapeRef.new(shape: InstanceCount,
|
3487
|
+
ComputeQuotaResourceConfig.add_member(:count, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "Count"))
|
3432
3488
|
ComputeQuotaResourceConfig.struct_class = Types::ComputeQuotaResourceConfig
|
3433
3489
|
|
3434
3490
|
ComputeQuotaResourceConfigList.member = Shapes::ShapeRef.new(shape: ComputeQuotaResourceConfig)
|
@@ -3608,6 +3664,7 @@ module Aws::SageMaker
|
|
3608
3664
|
|
3609
3665
|
CreateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location_name: "ClusterName"))
|
3610
3666
|
CreateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
3667
|
+
CreateClusterRequest.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecifications, location_name: "RestrictedInstanceGroups"))
|
3611
3668
|
CreateClusterRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3612
3669
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3613
3670
|
CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
@@ -4332,6 +4389,7 @@ module Aws::SageMaker
|
|
4332
4389
|
CreateWorkforceRequest.add_member(:workforce_name, Shapes::ShapeRef.new(shape: WorkforceName, required: true, location_name: "WorkforceName"))
|
4333
4390
|
CreateWorkforceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4334
4391
|
CreateWorkforceRequest.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigRequest, location_name: "WorkforceVpcConfig"))
|
4392
|
+
CreateWorkforceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
|
4335
4393
|
CreateWorkforceRequest.struct_class = Types::CreateWorkforceRequest
|
4336
4394
|
|
4337
4395
|
CreateWorkforceResponse.add_member(:workforce_arn, Shapes::ShapeRef.new(shape: WorkforceArn, required: true, location_name: "WorkforceArn"))
|
@@ -4353,17 +4411,21 @@ module Aws::SageMaker
|
|
4353
4411
|
|
4354
4412
|
CustomFileSystem.add_member(:efs_file_system, Shapes::ShapeRef.new(shape: EFSFileSystem, location_name: "EFSFileSystem"))
|
4355
4413
|
CustomFileSystem.add_member(:f_sx_lustre_file_system, Shapes::ShapeRef.new(shape: FSxLustreFileSystem, location_name: "FSxLustreFileSystem"))
|
4414
|
+
CustomFileSystem.add_member(:s3_file_system, Shapes::ShapeRef.new(shape: S3FileSystem, location_name: "S3FileSystem"))
|
4356
4415
|
CustomFileSystem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
4357
4416
|
CustomFileSystem.add_member_subclass(:efs_file_system, Types::CustomFileSystem::EfsFileSystem)
|
4358
4417
|
CustomFileSystem.add_member_subclass(:f_sx_lustre_file_system, Types::CustomFileSystem::FSxLustreFileSystem)
|
4418
|
+
CustomFileSystem.add_member_subclass(:s3_file_system, Types::CustomFileSystem::S3FileSystem)
|
4359
4419
|
CustomFileSystem.add_member_subclass(:unknown, Types::CustomFileSystem::Unknown)
|
4360
4420
|
CustomFileSystem.struct_class = Types::CustomFileSystem
|
4361
4421
|
|
4362
4422
|
CustomFileSystemConfig.add_member(:efs_file_system_config, Shapes::ShapeRef.new(shape: EFSFileSystemConfig, location_name: "EFSFileSystemConfig"))
|
4363
4423
|
CustomFileSystemConfig.add_member(:f_sx_lustre_file_system_config, Shapes::ShapeRef.new(shape: FSxLustreFileSystemConfig, location_name: "FSxLustreFileSystemConfig"))
|
4424
|
+
CustomFileSystemConfig.add_member(:s3_file_system_config, Shapes::ShapeRef.new(shape: S3FileSystemConfig, location_name: "S3FileSystemConfig"))
|
4364
4425
|
CustomFileSystemConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
4365
4426
|
CustomFileSystemConfig.add_member_subclass(:efs_file_system_config, Types::CustomFileSystemConfig::EfsFileSystemConfig)
|
4366
4427
|
CustomFileSystemConfig.add_member_subclass(:f_sx_lustre_file_system_config, Types::CustomFileSystemConfig::FSxLustreFileSystemConfig)
|
4428
|
+
CustomFileSystemConfig.add_member_subclass(:s3_file_system_config, Types::CustomFileSystemConfig::S3FileSystemConfig)
|
4367
4429
|
CustomFileSystemConfig.add_member_subclass(:unknown, Types::CustomFileSystemConfig::Unknown)
|
4368
4430
|
CustomFileSystemConfig.struct_class = Types::CustomFileSystemConfig
|
4369
4431
|
|
@@ -4915,7 +4977,7 @@ module Aws::SageMaker
|
|
4915
4977
|
DescribeAutoMLJobV2Response.struct_class = Types::DescribeAutoMLJobV2Response
|
4916
4978
|
|
4917
4979
|
DescribeClusterNodeRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
4918
|
-
DescribeClusterNodeRequest.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId,
|
4980
|
+
DescribeClusterNodeRequest.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId, location_name: "NodeId"))
|
4919
4981
|
DescribeClusterNodeRequest.struct_class = Types::DescribeClusterNodeRequest
|
4920
4982
|
|
4921
4983
|
DescribeClusterNodeResponse.add_member(:node_details, Shapes::ShapeRef.new(shape: ClusterNodeDetails, required: true, location_name: "NodeDetails"))
|
@@ -4930,6 +4992,7 @@ module Aws::SageMaker
|
|
4930
4992
|
DescribeClusterResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
4931
4993
|
DescribeClusterResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
|
4932
4994
|
DescribeClusterResponse.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupDetailsList, required: true, location_name: "InstanceGroups"))
|
4995
|
+
DescribeClusterResponse.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupDetailsList, location_name: "RestrictedInstanceGroups"))
|
4933
4996
|
DescribeClusterResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
4934
4997
|
DescribeClusterResponse.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
4935
4998
|
DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
@@ -5727,9 +5790,11 @@ module Aws::SageMaker
|
|
5727
5790
|
DescribePipelineExecutionResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
5728
5791
|
DescribePipelineExecutionResponse.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
|
5729
5792
|
DescribePipelineExecutionResponse.add_member(:selective_execution_config, Shapes::ShapeRef.new(shape: SelectiveExecutionConfig, location_name: "SelectiveExecutionConfig"))
|
5793
|
+
DescribePipelineExecutionResponse.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
5730
5794
|
DescribePipelineExecutionResponse.struct_class = Types::DescribePipelineExecutionResponse
|
5731
5795
|
|
5732
5796
|
DescribePipelineRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineNameOrArn, required: true, location_name: "PipelineName"))
|
5797
|
+
DescribePipelineRequest.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
5733
5798
|
DescribePipelineRequest.struct_class = Types::DescribePipelineRequest
|
5734
5799
|
|
5735
5800
|
DescribePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
@@ -5745,6 +5810,8 @@ module Aws::SageMaker
|
|
5745
5810
|
DescribePipelineResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
5746
5811
|
DescribePipelineResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
5747
5812
|
DescribePipelineResponse.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
|
5813
|
+
DescribePipelineResponse.add_member(:pipeline_version_display_name, Shapes::ShapeRef.new(shape: PipelineVersionName, location_name: "PipelineVersionDisplayName"))
|
5814
|
+
DescribePipelineResponse.add_member(:pipeline_version_description, Shapes::ShapeRef.new(shape: PipelineVersionDescription, location_name: "PipelineVersionDescription"))
|
5748
5815
|
DescribePipelineResponse.struct_class = Types::DescribePipelineResponse
|
5749
5816
|
|
5750
5817
|
DescribeProcessingJobRequest.add_member(:processing_job_name, Shapes::ShapeRef.new(shape: ProcessingJobName, required: true, location_name: "ProcessingJobName"))
|
@@ -6332,6 +6399,13 @@ module Aws::SageMaker
|
|
6332
6399
|
|
6333
6400
|
Endpoints.member = Shapes::ShapeRef.new(shape: EndpointInfo)
|
6334
6401
|
|
6402
|
+
EnvironmentConfig.add_member(:f_sx_lustre_config, Shapes::ShapeRef.new(shape: FSxLustreConfig, location_name: "FSxLustreConfig"))
|
6403
|
+
EnvironmentConfig.struct_class = Types::EnvironmentConfig
|
6404
|
+
|
6405
|
+
EnvironmentConfigDetails.add_member(:f_sx_lustre_config, Shapes::ShapeRef.new(shape: FSxLustreConfig, location_name: "FSxLustreConfig"))
|
6406
|
+
EnvironmentConfigDetails.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputPath"))
|
6407
|
+
EnvironmentConfigDetails.struct_class = Types::EnvironmentConfigDetails
|
6408
|
+
|
6335
6409
|
EnvironmentMap.key = Shapes::ShapeRef.new(shape: EnvironmentKey)
|
6336
6410
|
EnvironmentMap.value = Shapes::ShapeRef.new(shape: EnvironmentValue)
|
6337
6411
|
|
@@ -6389,6 +6463,10 @@ module Aws::SageMaker
|
|
6389
6463
|
ExplainerConfig.add_member(:clarify_explainer_config, Shapes::ShapeRef.new(shape: ClarifyExplainerConfig, location_name: "ClarifyExplainerConfig"))
|
6390
6464
|
ExplainerConfig.struct_class = Types::ExplainerConfig
|
6391
6465
|
|
6466
|
+
FSxLustreConfig.add_member(:size_in_gi_b, Shapes::ShapeRef.new(shape: FSxLustreSizeInGiB, required: true, location_name: "SizeInGiB"))
|
6467
|
+
FSxLustreConfig.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: FSxLustrePerUnitStorageThroughput, required: true, location_name: "PerUnitStorageThroughput"))
|
6468
|
+
FSxLustreConfig.struct_class = Types::FSxLustreConfig
|
6469
|
+
|
6392
6470
|
FSxLustreFileSystem.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
6393
6471
|
FSxLustreFileSystem.struct_class = Types::FSxLustreFileSystem
|
6394
6472
|
|
@@ -8119,6 +8197,18 @@ module Aws::SageMaker
|
|
8119
8197
|
ListPipelineParametersForExecutionResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8120
8198
|
ListPipelineParametersForExecutionResponse.struct_class = Types::ListPipelineParametersForExecutionResponse
|
8121
8199
|
|
8200
|
+
ListPipelineVersionsRequest.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineNameOrArn, required: true, location_name: "PipelineName"))
|
8201
|
+
ListPipelineVersionsRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAfter"))
|
8202
|
+
ListPipelineVersionsRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedBefore"))
|
8203
|
+
ListPipelineVersionsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
8204
|
+
ListPipelineVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8205
|
+
ListPipelineVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8206
|
+
ListPipelineVersionsRequest.struct_class = Types::ListPipelineVersionsRequest
|
8207
|
+
|
8208
|
+
ListPipelineVersionsResponse.add_member(:pipeline_version_summaries, Shapes::ShapeRef.new(shape: PipelineVersionSummaryList, location_name: "PipelineVersionSummaries"))
|
8209
|
+
ListPipelineVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8210
|
+
ListPipelineVersionsResponse.struct_class = Types::ListPipelineVersionsResponse
|
8211
|
+
|
8122
8212
|
ListPipelinesRequest.add_member(:pipeline_name_prefix, Shapes::ShapeRef.new(shape: PipelineName, location_name: "PipelineNamePrefix"))
|
8123
8213
|
ListPipelinesRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAfter"))
|
8124
8214
|
ListPipelinesRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedBefore"))
|
@@ -9267,6 +9357,8 @@ module Aws::SageMaker
|
|
9267
9357
|
PipelineExecution.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
|
9268
9358
|
PipelineExecution.add_member(:selective_execution_config, Shapes::ShapeRef.new(shape: SelectiveExecutionConfig, location_name: "SelectiveExecutionConfig"))
|
9269
9359
|
PipelineExecution.add_member(:pipeline_parameters, Shapes::ShapeRef.new(shape: ParameterList, location_name: "PipelineParameters"))
|
9360
|
+
PipelineExecution.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
9361
|
+
PipelineExecution.add_member(:pipeline_version_display_name, Shapes::ShapeRef.new(shape: PipelineVersionName, location_name: "PipelineVersionDisplayName"))
|
9270
9362
|
PipelineExecution.struct_class = Types::PipelineExecution
|
9271
9363
|
|
9272
9364
|
PipelineExecutionStep.add_member(:step_name, Shapes::ShapeRef.new(shape: StepName, location_name: "StepName"))
|
@@ -9328,6 +9420,29 @@ module Aws::SageMaker
|
|
9328
9420
|
|
9329
9421
|
PipelineSummaryList.member = Shapes::ShapeRef.new(shape: PipelineSummary)
|
9330
9422
|
|
9423
|
+
PipelineVersion.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
9424
|
+
PipelineVersion.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
9425
|
+
PipelineVersion.add_member(:pipeline_version_display_name, Shapes::ShapeRef.new(shape: PipelineVersionName, location_name: "PipelineVersionDisplayName"))
|
9426
|
+
PipelineVersion.add_member(:pipeline_version_description, Shapes::ShapeRef.new(shape: PipelineVersionDescription, location_name: "PipelineVersionDescription"))
|
9427
|
+
PipelineVersion.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
9428
|
+
PipelineVersion.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
9429
|
+
PipelineVersion.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
9430
|
+
PipelineVersion.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
9431
|
+
PipelineVersion.add_member(:last_executed_pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "LastExecutedPipelineExecutionArn"))
|
9432
|
+
PipelineVersion.add_member(:last_executed_pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "LastExecutedPipelineExecutionDisplayName"))
|
9433
|
+
PipelineVersion.add_member(:last_executed_pipeline_execution_status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "LastExecutedPipelineExecutionStatus"))
|
9434
|
+
PipelineVersion.struct_class = Types::PipelineVersion
|
9435
|
+
|
9436
|
+
PipelineVersionSummary.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
9437
|
+
PipelineVersionSummary.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
9438
|
+
PipelineVersionSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
9439
|
+
PipelineVersionSummary.add_member(:pipeline_version_description, Shapes::ShapeRef.new(shape: PipelineVersionDescription, location_name: "PipelineVersionDescription"))
|
9440
|
+
PipelineVersionSummary.add_member(:pipeline_version_display_name, Shapes::ShapeRef.new(shape: PipelineVersionName, location_name: "PipelineVersionDisplayName"))
|
9441
|
+
PipelineVersionSummary.add_member(:last_execution_pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "LastExecutionPipelineExecutionArn"))
|
9442
|
+
PipelineVersionSummary.struct_class = Types::PipelineVersionSummary
|
9443
|
+
|
9444
|
+
PipelineVersionSummaryList.member = Shapes::ShapeRef.new(shape: PipelineVersionSummary)
|
9445
|
+
|
9331
9446
|
PredefinedMetricSpecification.add_member(:predefined_metric_type, Shapes::ShapeRef.new(shape: String, location_name: "PredefinedMetricType"))
|
9332
9447
|
PredefinedMetricSpecification.struct_class = Types::PredefinedMetricSpecification
|
9333
9448
|
|
@@ -9905,6 +10020,13 @@ module Aws::SageMaker
|
|
9905
10020
|
S3DataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: HubAccessConfig, location_name: "HubAccessConfig"))
|
9906
10021
|
S3DataSource.struct_class = Types::S3DataSource
|
9907
10022
|
|
10023
|
+
S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
10024
|
+
S3FileSystem.struct_class = Types::S3FileSystem
|
10025
|
+
|
10026
|
+
S3FileSystemConfig.add_member(:mount_path, Shapes::ShapeRef.new(shape: String1024, location_name: "MountPath"))
|
10027
|
+
S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
10028
|
+
S3FileSystemConfig.struct_class = Types::S3FileSystemConfig
|
10029
|
+
|
9908
10030
|
S3ModelDataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, required: true, location_name: "S3Uri"))
|
9909
10031
|
S3ModelDataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: S3ModelDataType, required: true, location_name: "S3DataType"))
|
9910
10032
|
S3ModelDataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ModelCompressionType, required: true, location_name: "CompressionType"))
|
@@ -9973,6 +10095,7 @@ module Aws::SageMaker
|
|
9973
10095
|
SearchRecord.add_member(:model_package_group, Shapes::ShapeRef.new(shape: ModelPackageGroup, location_name: "ModelPackageGroup"))
|
9974
10096
|
SearchRecord.add_member(:pipeline, Shapes::ShapeRef.new(shape: Pipeline, location_name: "Pipeline"))
|
9975
10097
|
SearchRecord.add_member(:pipeline_execution, Shapes::ShapeRef.new(shape: PipelineExecution, location_name: "PipelineExecution"))
|
10098
|
+
SearchRecord.add_member(:pipeline_version, Shapes::ShapeRef.new(shape: PipelineVersion, location_name: "PipelineVersion"))
|
9976
10099
|
SearchRecord.add_member(:feature_group, Shapes::ShapeRef.new(shape: FeatureGroup, location_name: "FeatureGroup"))
|
9977
10100
|
SearchRecord.add_member(:feature_metadata, Shapes::ShapeRef.new(shape: FeatureMetadata, location_name: "FeatureMetadata"))
|
9978
10101
|
SearchRecord.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "Project"))
|
@@ -10183,6 +10306,7 @@ module Aws::SageMaker
|
|
10183
10306
|
StartPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken" => true}))
|
10184
10307
|
StartPipelineExecutionRequest.add_member(:parallelism_configuration, Shapes::ShapeRef.new(shape: ParallelismConfiguration, location_name: "ParallelismConfiguration"))
|
10185
10308
|
StartPipelineExecutionRequest.add_member(:selective_execution_config, Shapes::ShapeRef.new(shape: SelectiveExecutionConfig, location_name: "SelectiveExecutionConfig"))
|
10309
|
+
StartPipelineExecutionRequest.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
10186
10310
|
StartPipelineExecutionRequest.struct_class = Types::StartPipelineExecutionRequest
|
10187
10311
|
|
10188
10312
|
StartPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
@@ -10821,6 +10945,7 @@ module Aws::SageMaker
|
|
10821
10945
|
|
10822
10946
|
UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
10823
10947
|
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
10948
|
+
UpdateClusterRequest.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecifications, location_name: "RestrictedInstanceGroups"))
|
10824
10949
|
UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
10825
10950
|
UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
|
10826
10951
|
UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
|
@@ -11140,8 +11265,19 @@ module Aws::SageMaker
|
|
11140
11265
|
UpdatePipelineRequest.struct_class = Types::UpdatePipelineRequest
|
11141
11266
|
|
11142
11267
|
UpdatePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
11268
|
+
UpdatePipelineResponse.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
11143
11269
|
UpdatePipelineResponse.struct_class = Types::UpdatePipelineResponse
|
11144
11270
|
|
11271
|
+
UpdatePipelineVersionRequest.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, required: true, location_name: "PipelineArn"))
|
11272
|
+
UpdatePipelineVersionRequest.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, required: true, location_name: "PipelineVersionId"))
|
11273
|
+
UpdatePipelineVersionRequest.add_member(:pipeline_version_display_name, Shapes::ShapeRef.new(shape: PipelineVersionName, location_name: "PipelineVersionDisplayName"))
|
11274
|
+
UpdatePipelineVersionRequest.add_member(:pipeline_version_description, Shapes::ShapeRef.new(shape: PipelineVersionDescription, location_name: "PipelineVersionDescription"))
|
11275
|
+
UpdatePipelineVersionRequest.struct_class = Types::UpdatePipelineVersionRequest
|
11276
|
+
|
11277
|
+
UpdatePipelineVersionResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
11278
|
+
UpdatePipelineVersionResponse.add_member(:pipeline_version_id, Shapes::ShapeRef.new(shape: PipelineVersionId, location_name: "PipelineVersionId"))
|
11279
|
+
UpdatePipelineVersionResponse.struct_class = Types::UpdatePipelineVersionResponse
|
11280
|
+
|
11145
11281
|
UpdateProjectInput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
|
11146
11282
|
UpdateProjectInput.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
11147
11283
|
UpdateProjectInput.add_member(:service_catalog_provisioning_update_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningUpdateDetails, location_name: "ServiceCatalogProvisioningUpdateDetails"))
|
@@ -11211,6 +11347,7 @@ module Aws::SageMaker
|
|
11211
11347
|
UpdateWorkforceRequest.add_member(:source_ip_config, Shapes::ShapeRef.new(shape: SourceIpConfig, location_name: "SourceIpConfig"))
|
11212
11348
|
UpdateWorkforceRequest.add_member(:oidc_config, Shapes::ShapeRef.new(shape: OidcConfig, location_name: "OidcConfig"))
|
11213
11349
|
UpdateWorkforceRequest.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigRequest, location_name: "WorkforceVpcConfig"))
|
11350
|
+
UpdateWorkforceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
|
11214
11351
|
UpdateWorkforceRequest.struct_class = Types::UpdateWorkforceRequest
|
11215
11352
|
|
11216
11353
|
UpdateWorkforceResponse.add_member(:workforce, Shapes::ShapeRef.new(shape: Workforce, required: true, location_name: "Workforce"))
|
@@ -11311,6 +11448,7 @@ module Aws::SageMaker
|
|
11311
11448
|
Workforce.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigResponse, location_name: "WorkforceVpcConfig"))
|
11312
11449
|
Workforce.add_member(:status, Shapes::ShapeRef.new(shape: WorkforceStatus, location_name: "Status"))
|
11313
11450
|
Workforce.add_member(:failure_reason, Shapes::ShapeRef.new(shape: WorkforceFailureReason, location_name: "FailureReason"))
|
11451
|
+
Workforce.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
|
11314
11452
|
Workforce.struct_class = Types::Workforce
|
11315
11453
|
|
11316
11454
|
WorkforceSecurityGroupIds.member = Shapes::ShapeRef.new(shape: WorkforceSecurityGroupId)
|
@@ -14123,6 +14261,21 @@ module Aws::SageMaker
|
|
14123
14261
|
)
|
14124
14262
|
end)
|
14125
14263
|
|
14264
|
+
api.add_operation(:list_pipeline_versions, Seahorse::Model::Operation.new.tap do |o|
|
14265
|
+
o.name = "ListPipelineVersions"
|
14266
|
+
o.http_method = "POST"
|
14267
|
+
o.http_request_uri = "/"
|
14268
|
+
o.input = Shapes::ShapeRef.new(shape: ListPipelineVersionsRequest)
|
14269
|
+
o.output = Shapes::ShapeRef.new(shape: ListPipelineVersionsResponse)
|
14270
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14271
|
+
o[:pager] = Aws::Pager.new(
|
14272
|
+
limit_key: "max_results",
|
14273
|
+
tokens: {
|
14274
|
+
"next_token" => "next_token"
|
14275
|
+
}
|
14276
|
+
)
|
14277
|
+
end)
|
14278
|
+
|
14126
14279
|
api.add_operation(:list_pipelines, Seahorse::Model::Operation.new.tap do |o|
|
14127
14280
|
o.name = "ListPipelines"
|
14128
14281
|
o.http_method = "POST"
|
@@ -15030,6 +15183,16 @@ module Aws::SageMaker
|
|
15030
15183
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
15031
15184
|
end)
|
15032
15185
|
|
15186
|
+
api.add_operation(:update_pipeline_version, Seahorse::Model::Operation.new.tap do |o|
|
15187
|
+
o.name = "UpdatePipelineVersion"
|
15188
|
+
o.http_method = "POST"
|
15189
|
+
o.http_request_uri = "/"
|
15190
|
+
o.input = Shapes::ShapeRef.new(shape: UpdatePipelineVersionRequest)
|
15191
|
+
o.output = Shapes::ShapeRef.new(shape: UpdatePipelineVersionResponse)
|
15192
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
15193
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
15194
|
+
end)
|
15195
|
+
|
15033
15196
|
api.add_operation(:update_project, Seahorse::Model::Operation.new.tap do |o|
|
15034
15197
|
o.name = "UpdateProject"
|
15035
15198
|
o.http_method = "POST"
|