aws-sdk-sagemaker 1.129.0 → 1.132.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +516 -25
- data/lib/aws-sdk-sagemaker/client_api.rb +279 -2
- data/lib/aws-sdk-sagemaker/types.rb +944 -37
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -259,6 +259,9 @@ module Aws::SageMaker
|
|
259
259
|
CreateDeviceFleetRequest = Shapes::StructureShape.new(name: 'CreateDeviceFleetRequest')
|
260
260
|
CreateDomainRequest = Shapes::StructureShape.new(name: 'CreateDomainRequest')
|
261
261
|
CreateDomainResponse = Shapes::StructureShape.new(name: 'CreateDomainResponse')
|
262
|
+
CreateEdgeDeploymentPlanRequest = Shapes::StructureShape.new(name: 'CreateEdgeDeploymentPlanRequest')
|
263
|
+
CreateEdgeDeploymentPlanResponse = Shapes::StructureShape.new(name: 'CreateEdgeDeploymentPlanResponse')
|
264
|
+
CreateEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'CreateEdgeDeploymentStageRequest')
|
262
265
|
CreateEdgePackagingJobRequest = Shapes::StructureShape.new(name: 'CreateEdgePackagingJobRequest')
|
263
266
|
CreateEndpointConfigInput = Shapes::StructureShape.new(name: 'CreateEndpointConfigInput')
|
264
267
|
CreateEndpointConfigOutput = Shapes::StructureShape.new(name: 'CreateEndpointConfigOutput')
|
@@ -370,6 +373,8 @@ module Aws::SageMaker
|
|
370
373
|
DeleteDataQualityJobDefinitionRequest = Shapes::StructureShape.new(name: 'DeleteDataQualityJobDefinitionRequest')
|
371
374
|
DeleteDeviceFleetRequest = Shapes::StructureShape.new(name: 'DeleteDeviceFleetRequest')
|
372
375
|
DeleteDomainRequest = Shapes::StructureShape.new(name: 'DeleteDomainRequest')
|
376
|
+
DeleteEdgeDeploymentPlanRequest = Shapes::StructureShape.new(name: 'DeleteEdgeDeploymentPlanRequest')
|
377
|
+
DeleteEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'DeleteEdgeDeploymentStageRequest')
|
373
378
|
DeleteEndpointConfigInput = Shapes::StructureShape.new(name: 'DeleteEndpointConfigInput')
|
374
379
|
DeleteEndpointInput = Shapes::StructureShape.new(name: 'DeleteEndpointInput')
|
375
380
|
DeleteExperimentRequest = Shapes::StructureShape.new(name: 'DeleteExperimentRequest')
|
@@ -411,6 +416,11 @@ module Aws::SageMaker
|
|
411
416
|
DeployedImage = Shapes::StructureShape.new(name: 'DeployedImage')
|
412
417
|
DeployedImages = Shapes::ListShape.new(name: 'DeployedImages')
|
413
418
|
DeploymentConfig = Shapes::StructureShape.new(name: 'DeploymentConfig')
|
419
|
+
DeploymentStage = Shapes::StructureShape.new(name: 'DeploymentStage')
|
420
|
+
DeploymentStageMaxResults = Shapes::IntegerShape.new(name: 'DeploymentStageMaxResults')
|
421
|
+
DeploymentStageStatusSummaries = Shapes::ListShape.new(name: 'DeploymentStageStatusSummaries')
|
422
|
+
DeploymentStageStatusSummary = Shapes::StructureShape.new(name: 'DeploymentStageStatusSummary')
|
423
|
+
DeploymentStages = Shapes::ListShape.new(name: 'DeploymentStages')
|
414
424
|
DeregisterDevicesRequest = Shapes::StructureShape.new(name: 'DeregisterDevicesRequest')
|
415
425
|
DescribeActionRequest = Shapes::StructureShape.new(name: 'DescribeActionRequest')
|
416
426
|
DescribeActionResponse = Shapes::StructureShape.new(name: 'DescribeActionResponse')
|
@@ -438,6 +448,8 @@ module Aws::SageMaker
|
|
438
448
|
DescribeDeviceResponse = Shapes::StructureShape.new(name: 'DescribeDeviceResponse')
|
439
449
|
DescribeDomainRequest = Shapes::StructureShape.new(name: 'DescribeDomainRequest')
|
440
450
|
DescribeDomainResponse = Shapes::StructureShape.new(name: 'DescribeDomainResponse')
|
451
|
+
DescribeEdgeDeploymentPlanRequest = Shapes::StructureShape.new(name: 'DescribeEdgeDeploymentPlanRequest')
|
452
|
+
DescribeEdgeDeploymentPlanResponse = Shapes::StructureShape.new(name: 'DescribeEdgeDeploymentPlanResponse')
|
441
453
|
DescribeEdgePackagingJobRequest = Shapes::StructureShape.new(name: 'DescribeEdgePackagingJobRequest')
|
442
454
|
DescribeEdgePackagingJobResponse = Shapes::StructureShape.new(name: 'DescribeEdgePackagingJobResponse')
|
443
455
|
DescribeEndpointConfigInput = Shapes::StructureShape.new(name: 'DescribeEndpointConfigInput')
|
@@ -520,6 +532,9 @@ module Aws::SageMaker
|
|
520
532
|
DetailedModelPackageStatus = Shapes::StringShape.new(name: 'DetailedModelPackageStatus')
|
521
533
|
Device = Shapes::StructureShape.new(name: 'Device')
|
522
534
|
DeviceArn = Shapes::StringShape.new(name: 'DeviceArn')
|
535
|
+
DeviceDeploymentStatus = Shapes::StringShape.new(name: 'DeviceDeploymentStatus')
|
536
|
+
DeviceDeploymentSummaries = Shapes::ListShape.new(name: 'DeviceDeploymentSummaries')
|
537
|
+
DeviceDeploymentSummary = Shapes::StructureShape.new(name: 'DeviceDeploymentSummary')
|
523
538
|
DeviceDescription = Shapes::StringShape.new(name: 'DeviceDescription')
|
524
539
|
DeviceFleetArn = Shapes::StringShape.new(name: 'DeviceFleetArn')
|
525
540
|
DeviceFleetDescription = Shapes::StringShape.new(name: 'DeviceFleetDescription')
|
@@ -527,7 +542,9 @@ module Aws::SageMaker
|
|
527
542
|
DeviceFleetSummary = Shapes::StructureShape.new(name: 'DeviceFleetSummary')
|
528
543
|
DeviceName = Shapes::StringShape.new(name: 'DeviceName')
|
529
544
|
DeviceNames = Shapes::ListShape.new(name: 'DeviceNames')
|
545
|
+
DeviceSelectionConfig = Shapes::StructureShape.new(name: 'DeviceSelectionConfig')
|
530
546
|
DeviceStats = Shapes::StructureShape.new(name: 'DeviceStats')
|
547
|
+
DeviceSubsetType = Shapes::StringShape.new(name: 'DeviceSubsetType')
|
531
548
|
DeviceSummaries = Shapes::ListShape.new(name: 'DeviceSummaries')
|
532
549
|
DeviceSummary = Shapes::StructureShape.new(name: 'DeviceSummary')
|
533
550
|
Devices = Shapes::ListShape.new(name: 'Devices')
|
@@ -561,6 +578,13 @@ module Aws::SageMaker
|
|
561
578
|
DriftCheckModelQuality = Shapes::StructureShape.new(name: 'DriftCheckModelQuality')
|
562
579
|
EMRStepMetadata = Shapes::StructureShape.new(name: 'EMRStepMetadata')
|
563
580
|
Edge = Shapes::StructureShape.new(name: 'Edge')
|
581
|
+
EdgeDeploymentConfig = Shapes::StructureShape.new(name: 'EdgeDeploymentConfig')
|
582
|
+
EdgeDeploymentModelConfig = Shapes::StructureShape.new(name: 'EdgeDeploymentModelConfig')
|
583
|
+
EdgeDeploymentModelConfigs = Shapes::ListShape.new(name: 'EdgeDeploymentModelConfigs')
|
584
|
+
EdgeDeploymentPlanArn = Shapes::StringShape.new(name: 'EdgeDeploymentPlanArn')
|
585
|
+
EdgeDeploymentPlanSummaries = Shapes::ListShape.new(name: 'EdgeDeploymentPlanSummaries')
|
586
|
+
EdgeDeploymentPlanSummary = Shapes::StructureShape.new(name: 'EdgeDeploymentPlanSummary')
|
587
|
+
EdgeDeploymentStatus = Shapes::StructureShape.new(name: 'EdgeDeploymentStatus')
|
564
588
|
EdgeModel = Shapes::StructureShape.new(name: 'EdgeModel')
|
565
589
|
EdgeModelStat = Shapes::StructureShape.new(name: 'EdgeModelStat')
|
566
590
|
EdgeModelStats = Shapes::ListShape.new(name: 'EdgeModelStats')
|
@@ -625,6 +649,7 @@ module Aws::SageMaker
|
|
625
649
|
Explainability = Shapes::StructureShape.new(name: 'Explainability')
|
626
650
|
ExplainabilityLocation = Shapes::StringShape.new(name: 'ExplainabilityLocation')
|
627
651
|
FailStepMetadata = Shapes::StructureShape.new(name: 'FailStepMetadata')
|
652
|
+
FailureHandlingPolicy = Shapes::StringShape.new(name: 'FailureHandlingPolicy')
|
628
653
|
FailureReason = Shapes::StringShape.new(name: 'FailureReason')
|
629
654
|
FeatureAdditions = Shapes::ListShape.new(name: 'FeatureAdditions')
|
630
655
|
FeatureDefinition = Shapes::StructureShape.new(name: 'FeatureDefinition')
|
@@ -770,6 +795,10 @@ module Aws::SageMaker
|
|
770
795
|
InputDataConfig = Shapes::ListShape.new(name: 'InputDataConfig')
|
771
796
|
InputMode = Shapes::StringShape.new(name: 'InputMode')
|
772
797
|
InputModes = Shapes::ListShape.new(name: 'InputModes')
|
798
|
+
InstanceGroup = Shapes::StructureShape.new(name: 'InstanceGroup')
|
799
|
+
InstanceGroupName = Shapes::StringShape.new(name: 'InstanceGroupName')
|
800
|
+
InstanceGroupNames = Shapes::ListShape.new(name: 'InstanceGroupNames')
|
801
|
+
InstanceGroups = Shapes::ListShape.new(name: 'InstanceGroups')
|
773
802
|
InstanceMetadataServiceConfiguration = Shapes::StructureShape.new(name: 'InstanceMetadataServiceConfiguration')
|
774
803
|
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
775
804
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
@@ -862,6 +891,9 @@ module Aws::SageMaker
|
|
862
891
|
ListDevicesResponse = Shapes::StructureShape.new(name: 'ListDevicesResponse')
|
863
892
|
ListDomainsRequest = Shapes::StructureShape.new(name: 'ListDomainsRequest')
|
864
893
|
ListDomainsResponse = Shapes::StructureShape.new(name: 'ListDomainsResponse')
|
894
|
+
ListEdgeDeploymentPlansRequest = Shapes::StructureShape.new(name: 'ListEdgeDeploymentPlansRequest')
|
895
|
+
ListEdgeDeploymentPlansResponse = Shapes::StructureShape.new(name: 'ListEdgeDeploymentPlansResponse')
|
896
|
+
ListEdgeDeploymentPlansSortBy = Shapes::StringShape.new(name: 'ListEdgeDeploymentPlansSortBy')
|
865
897
|
ListEdgePackagingJobsRequest = Shapes::StructureShape.new(name: 'ListEdgePackagingJobsRequest')
|
866
898
|
ListEdgePackagingJobsResponse = Shapes::StructureShape.new(name: 'ListEdgePackagingJobsResponse')
|
867
899
|
ListEdgePackagingJobsSortBy = Shapes::StringShape.new(name: 'ListEdgePackagingJobsSortBy')
|
@@ -929,6 +961,8 @@ module Aws::SageMaker
|
|
929
961
|
ListProcessingJobsResponse = Shapes::StructureShape.new(name: 'ListProcessingJobsResponse')
|
930
962
|
ListProjectsInput = Shapes::StructureShape.new(name: 'ListProjectsInput')
|
931
963
|
ListProjectsOutput = Shapes::StructureShape.new(name: 'ListProjectsOutput')
|
964
|
+
ListStageDevicesRequest = Shapes::StructureShape.new(name: 'ListStageDevicesRequest')
|
965
|
+
ListStageDevicesResponse = Shapes::StructureShape.new(name: 'ListStageDevicesResponse')
|
932
966
|
ListStudioLifecycleConfigsRequest = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsRequest')
|
933
967
|
ListStudioLifecycleConfigsResponse = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsResponse')
|
934
968
|
ListSubscribedWorkteamsRequest = Shapes::StructureShape.new(name: 'ListSubscribedWorkteamsRequest')
|
@@ -1170,6 +1204,7 @@ module Aws::SageMaker
|
|
1170
1204
|
PendingDeploymentSummary = Shapes::StructureShape.new(name: 'PendingDeploymentSummary')
|
1171
1205
|
PendingProductionVariantSummary = Shapes::StructureShape.new(name: 'PendingProductionVariantSummary')
|
1172
1206
|
PendingProductionVariantSummaryList = Shapes::ListShape.new(name: 'PendingProductionVariantSummaryList')
|
1207
|
+
Percentage = Shapes::IntegerShape.new(name: 'Percentage')
|
1173
1208
|
Phase = Shapes::StructureShape.new(name: 'Phase')
|
1174
1209
|
Phases = Shapes::ListShape.new(name: 'Phases')
|
1175
1210
|
Pipeline = Shapes::StructureShape.new(name: 'Pipeline')
|
@@ -1401,6 +1436,8 @@ module Aws::SageMaker
|
|
1401
1436
|
SourceUri = Shapes::StringShape.new(name: 'SourceUri')
|
1402
1437
|
SpawnRate = Shapes::IntegerShape.new(name: 'SpawnRate')
|
1403
1438
|
SplitType = Shapes::StringShape.new(name: 'SplitType')
|
1439
|
+
StageStatus = Shapes::StringShape.new(name: 'StageStatus')
|
1440
|
+
StartEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StartEdgeDeploymentStageRequest')
|
1404
1441
|
StartMonitoringScheduleRequest = Shapes::StructureShape.new(name: 'StartMonitoringScheduleRequest')
|
1405
1442
|
StartNotebookInstanceInput = Shapes::StructureShape.new(name: 'StartNotebookInstanceInput')
|
1406
1443
|
StartPipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartPipelineExecutionRequest')
|
@@ -1413,6 +1450,7 @@ module Aws::SageMaker
|
|
1413
1450
|
StepStatus = Shapes::StringShape.new(name: 'StepStatus')
|
1414
1451
|
StopAutoMLJobRequest = Shapes::StructureShape.new(name: 'StopAutoMLJobRequest')
|
1415
1452
|
StopCompilationJobRequest = Shapes::StructureShape.new(name: 'StopCompilationJobRequest')
|
1453
|
+
StopEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StopEdgeDeploymentStageRequest')
|
1416
1454
|
StopEdgePackagingJobRequest = Shapes::StructureShape.new(name: 'StopEdgePackagingJobRequest')
|
1417
1455
|
StopHyperParameterTuningJobRequest = Shapes::StructureShape.new(name: 'StopHyperParameterTuningJobRequest')
|
1418
1456
|
StopInferenceRecommendationsJobRequest = Shapes::StructureShape.new(name: 'StopInferenceRecommendationsJobRequest')
|
@@ -2297,6 +2335,20 @@ module Aws::SageMaker
|
|
2297
2335
|
CreateDomainResponse.add_member(:url, Shapes::ShapeRef.new(shape: String1024, location_name: "Url"))
|
2298
2336
|
CreateDomainResponse.struct_class = Types::CreateDomainResponse
|
2299
2337
|
|
2338
|
+
CreateEdgeDeploymentPlanRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
2339
|
+
CreateEdgeDeploymentPlanRequest.add_member(:model_configs, Shapes::ShapeRef.new(shape: EdgeDeploymentModelConfigs, required: true, location_name: "ModelConfigs"))
|
2340
|
+
CreateEdgeDeploymentPlanRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
2341
|
+
CreateEdgeDeploymentPlanRequest.add_member(:stages, Shapes::ShapeRef.new(shape: DeploymentStages, location_name: "Stages"))
|
2342
|
+
CreateEdgeDeploymentPlanRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
2343
|
+
CreateEdgeDeploymentPlanRequest.struct_class = Types::CreateEdgeDeploymentPlanRequest
|
2344
|
+
|
2345
|
+
CreateEdgeDeploymentPlanResponse.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
2346
|
+
CreateEdgeDeploymentPlanResponse.struct_class = Types::CreateEdgeDeploymentPlanResponse
|
2347
|
+
|
2348
|
+
CreateEdgeDeploymentStageRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
2349
|
+
CreateEdgeDeploymentStageRequest.add_member(:stages, Shapes::ShapeRef.new(shape: DeploymentStages, required: true, location_name: "Stages"))
|
2350
|
+
CreateEdgeDeploymentStageRequest.struct_class = Types::CreateEdgeDeploymentStageRequest
|
2351
|
+
|
2300
2352
|
CreateEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
2301
2353
|
CreateEdgePackagingJobRequest.add_member(:compilation_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CompilationJobName"))
|
2302
2354
|
CreateEdgePackagingJobRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelName"))
|
@@ -2865,6 +2917,13 @@ module Aws::SageMaker
|
|
2865
2917
|
DeleteDomainRequest.add_member(:retention_policy, Shapes::ShapeRef.new(shape: RetentionPolicy, location_name: "RetentionPolicy"))
|
2866
2918
|
DeleteDomainRequest.struct_class = Types::DeleteDomainRequest
|
2867
2919
|
|
2920
|
+
DeleteEdgeDeploymentPlanRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
2921
|
+
DeleteEdgeDeploymentPlanRequest.struct_class = Types::DeleteEdgeDeploymentPlanRequest
|
2922
|
+
|
2923
|
+
DeleteEdgeDeploymentStageRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
2924
|
+
DeleteEdgeDeploymentStageRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
2925
|
+
DeleteEdgeDeploymentStageRequest.struct_class = Types::DeleteEdgeDeploymentStageRequest
|
2926
|
+
|
2868
2927
|
DeleteEndpointConfigInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
2869
2928
|
DeleteEndpointConfigInput.struct_class = Types::DeleteEndpointConfigInput
|
2870
2929
|
|
@@ -2988,6 +3047,21 @@ module Aws::SageMaker
|
|
2988
3047
|
DeploymentConfig.add_member(:auto_rollback_configuration, Shapes::ShapeRef.new(shape: AutoRollbackConfig, location_name: "AutoRollbackConfiguration"))
|
2989
3048
|
DeploymentConfig.struct_class = Types::DeploymentConfig
|
2990
3049
|
|
3050
|
+
DeploymentStage.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
3051
|
+
DeploymentStage.add_member(:device_selection_config, Shapes::ShapeRef.new(shape: DeviceSelectionConfig, required: true, location_name: "DeviceSelectionConfig"))
|
3052
|
+
DeploymentStage.add_member(:deployment_config, Shapes::ShapeRef.new(shape: EdgeDeploymentConfig, location_name: "DeploymentConfig"))
|
3053
|
+
DeploymentStage.struct_class = Types::DeploymentStage
|
3054
|
+
|
3055
|
+
DeploymentStageStatusSummaries.member = Shapes::ShapeRef.new(shape: DeploymentStageStatusSummary)
|
3056
|
+
|
3057
|
+
DeploymentStageStatusSummary.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
3058
|
+
DeploymentStageStatusSummary.add_member(:device_selection_config, Shapes::ShapeRef.new(shape: DeviceSelectionConfig, required: true, location_name: "DeviceSelectionConfig"))
|
3059
|
+
DeploymentStageStatusSummary.add_member(:deployment_config, Shapes::ShapeRef.new(shape: EdgeDeploymentConfig, required: true, location_name: "DeploymentConfig"))
|
3060
|
+
DeploymentStageStatusSummary.add_member(:deployment_status, Shapes::ShapeRef.new(shape: EdgeDeploymentStatus, required: true, location_name: "DeploymentStatus"))
|
3061
|
+
DeploymentStageStatusSummary.struct_class = Types::DeploymentStageStatusSummary
|
3062
|
+
|
3063
|
+
DeploymentStages.member = Shapes::ShapeRef.new(shape: DeploymentStage)
|
3064
|
+
|
2991
3065
|
DeregisterDevicesRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
2992
3066
|
DeregisterDevicesRequest.add_member(:device_names, Shapes::ShapeRef.new(shape: DeviceNames, required: true, location_name: "DeviceNames"))
|
2993
3067
|
DeregisterDevicesRequest.struct_class = Types::DeregisterDevicesRequest
|
@@ -3217,6 +3291,24 @@ module Aws::SageMaker
|
|
3217
3291
|
DescribeDomainResponse.add_member(:security_group_id_for_domain_boundary, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "SecurityGroupIdForDomainBoundary"))
|
3218
3292
|
DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
|
3219
3293
|
|
3294
|
+
DescribeEdgeDeploymentPlanRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
3295
|
+
DescribeEdgeDeploymentPlanRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3296
|
+
DescribeEdgeDeploymentPlanRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DeploymentStageMaxResults, location_name: "MaxResults"))
|
3297
|
+
DescribeEdgeDeploymentPlanRequest.struct_class = Types::DescribeEdgeDeploymentPlanRequest
|
3298
|
+
|
3299
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
3300
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
3301
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:model_configs, Shapes::ShapeRef.new(shape: EdgeDeploymentModelConfigs, required: true, location_name: "ModelConfigs"))
|
3302
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
3303
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentSuccess"))
|
3304
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentPending"))
|
3305
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentFailed"))
|
3306
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:stages, Shapes::ShapeRef.new(shape: DeploymentStageStatusSummaries, required: true, location_name: "Stages"))
|
3307
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3308
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
3309
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
3310
|
+
DescribeEdgeDeploymentPlanResponse.struct_class = Types::DescribeEdgeDeploymentPlanResponse
|
3311
|
+
|
3220
3312
|
DescribeEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
3221
3313
|
DescribeEdgePackagingJobRequest.struct_class = Types::DescribeEdgePackagingJobRequest
|
3222
3314
|
|
@@ -3850,6 +3942,21 @@ module Aws::SageMaker
|
|
3850
3942
|
Device.add_member(:iot_thing_name, Shapes::ShapeRef.new(shape: ThingName, location_name: "IotThingName"))
|
3851
3943
|
Device.struct_class = Types::Device
|
3852
3944
|
|
3945
|
+
DeviceDeploymentSummaries.member = Shapes::ShapeRef.new(shape: DeviceDeploymentSummary)
|
3946
|
+
|
3947
|
+
DeviceDeploymentSummary.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
3948
|
+
DeviceDeploymentSummary.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
3949
|
+
DeviceDeploymentSummary.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
3950
|
+
DeviceDeploymentSummary.add_member(:deployed_stage_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "DeployedStageName"))
|
3951
|
+
DeviceDeploymentSummary.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "DeviceFleetName"))
|
3952
|
+
DeviceDeploymentSummary.add_member(:device_name, Shapes::ShapeRef.new(shape: DeviceName, required: true, location_name: "DeviceName"))
|
3953
|
+
DeviceDeploymentSummary.add_member(:device_arn, Shapes::ShapeRef.new(shape: DeviceArn, required: true, location_name: "DeviceArn"))
|
3954
|
+
DeviceDeploymentSummary.add_member(:device_deployment_status, Shapes::ShapeRef.new(shape: DeviceDeploymentStatus, location_name: "DeviceDeploymentStatus"))
|
3955
|
+
DeviceDeploymentSummary.add_member(:device_deployment_status_message, Shapes::ShapeRef.new(shape: String, location_name: "DeviceDeploymentStatusMessage"))
|
3956
|
+
DeviceDeploymentSummary.add_member(:description, Shapes::ShapeRef.new(shape: DeviceDescription, location_name: "Description"))
|
3957
|
+
DeviceDeploymentSummary.add_member(:deployment_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DeploymentStartTime"))
|
3958
|
+
DeviceDeploymentSummary.struct_class = Types::DeviceDeploymentSummary
|
3959
|
+
|
3853
3960
|
DeviceFleetSummaries.member = Shapes::ShapeRef.new(shape: DeviceFleetSummary)
|
3854
3961
|
|
3855
3962
|
DeviceFleetSummary.add_member(:device_fleet_arn, Shapes::ShapeRef.new(shape: DeviceFleetArn, required: true, location_name: "DeviceFleetArn"))
|
@@ -3860,6 +3967,12 @@ module Aws::SageMaker
|
|
3860
3967
|
|
3861
3968
|
DeviceNames.member = Shapes::ShapeRef.new(shape: DeviceName)
|
3862
3969
|
|
3970
|
+
DeviceSelectionConfig.add_member(:device_subset_type, Shapes::ShapeRef.new(shape: DeviceSubsetType, required: true, location_name: "DeviceSubsetType"))
|
3971
|
+
DeviceSelectionConfig.add_member(:percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "Percentage"))
|
3972
|
+
DeviceSelectionConfig.add_member(:device_names, Shapes::ShapeRef.new(shape: DeviceNames, location_name: "DeviceNames"))
|
3973
|
+
DeviceSelectionConfig.add_member(:device_name_contains, Shapes::ShapeRef.new(shape: DeviceName, location_name: "DeviceNameContains"))
|
3974
|
+
DeviceSelectionConfig.struct_class = Types::DeviceSelectionConfig
|
3975
|
+
|
3863
3976
|
DeviceStats.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount"))
|
3864
3977
|
DeviceStats.add_member(:registered_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "RegisteredDeviceCount"))
|
3865
3978
|
DeviceStats.struct_class = Types::DeviceStats
|
@@ -3945,6 +4058,35 @@ module Aws::SageMaker
|
|
3945
4058
|
Edge.add_member(:association_type, Shapes::ShapeRef.new(shape: AssociationEdgeType, location_name: "AssociationType"))
|
3946
4059
|
Edge.struct_class = Types::Edge
|
3947
4060
|
|
4061
|
+
EdgeDeploymentConfig.add_member(:failure_handling_policy, Shapes::ShapeRef.new(shape: FailureHandlingPolicy, required: true, location_name: "FailureHandlingPolicy"))
|
4062
|
+
EdgeDeploymentConfig.struct_class = Types::EdgeDeploymentConfig
|
4063
|
+
|
4064
|
+
EdgeDeploymentModelConfig.add_member(:model_handle, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelHandle"))
|
4065
|
+
EdgeDeploymentModelConfig.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
4066
|
+
EdgeDeploymentModelConfig.struct_class = Types::EdgeDeploymentModelConfig
|
4067
|
+
|
4068
|
+
EdgeDeploymentModelConfigs.member = Shapes::ShapeRef.new(shape: EdgeDeploymentModelConfig)
|
4069
|
+
|
4070
|
+
EdgeDeploymentPlanSummaries.member = Shapes::ShapeRef.new(shape: EdgeDeploymentPlanSummary)
|
4071
|
+
|
4072
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
4073
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
4074
|
+
EdgeDeploymentPlanSummary.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
4075
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccess"))
|
4076
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPending"))
|
4077
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailed"))
|
4078
|
+
EdgeDeploymentPlanSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
4079
|
+
EdgeDeploymentPlanSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
4080
|
+
EdgeDeploymentPlanSummary.struct_class = Types::EdgeDeploymentPlanSummary
|
4081
|
+
|
4082
|
+
EdgeDeploymentStatus.add_member(:stage_status, Shapes::ShapeRef.new(shape: StageStatus, required: true, location_name: "StageStatus"))
|
4083
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_success_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccessInStage"))
|
4084
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_pending_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPendingInStage"))
|
4085
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_failed_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailedInStage"))
|
4086
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_status_message, Shapes::ShapeRef.new(shape: String, location_name: "EdgeDeploymentStatusMessage"))
|
4087
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_stage_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EdgeDeploymentStageStartTime"))
|
4088
|
+
EdgeDeploymentStatus.struct_class = Types::EdgeDeploymentStatus
|
4089
|
+
|
3948
4090
|
EdgeModel.add_member(:model_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelName"))
|
3949
4091
|
EdgeModel.add_member(:model_version, Shapes::ShapeRef.new(shape: EdgeVersion, required: true, location_name: "ModelVersion"))
|
3950
4092
|
EdgeModel.add_member(:latest_sample_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LatestSampleTime"))
|
@@ -4458,6 +4600,15 @@ module Aws::SageMaker
|
|
4458
4600
|
|
4459
4601
|
InputModes.member = Shapes::ShapeRef.new(shape: TrainingInputMode)
|
4460
4602
|
|
4603
|
+
InstanceGroup.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, required: true, location_name: "InstanceType"))
|
4604
|
+
InstanceGroup.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, required: true, location_name: "InstanceCount"))
|
4605
|
+
InstanceGroup.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: InstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
4606
|
+
InstanceGroup.struct_class = Types::InstanceGroup
|
4607
|
+
|
4608
|
+
InstanceGroupNames.member = Shapes::ShapeRef.new(shape: InstanceGroupName)
|
4609
|
+
|
4610
|
+
InstanceGroups.member = Shapes::ShapeRef.new(shape: InstanceGroup)
|
4611
|
+
|
4461
4612
|
InstanceMetadataServiceConfiguration.add_member(:minimum_instance_metadata_service_version, Shapes::ShapeRef.new(shape: MinimumInstanceMetadataServiceVersion, required: true, location_name: "MinimumInstanceMetadataServiceVersion"))
|
4462
4613
|
InstanceMetadataServiceConfiguration.struct_class = Types::InstanceMetadataServiceConfiguration
|
4463
4614
|
|
@@ -4800,6 +4951,22 @@ module Aws::SageMaker
|
|
4800
4951
|
ListDomainsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4801
4952
|
ListDomainsResponse.struct_class = Types::ListDomainsResponse
|
4802
4953
|
|
4954
|
+
ListEdgeDeploymentPlansRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4955
|
+
ListEdgeDeploymentPlansRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
4956
|
+
ListEdgeDeploymentPlansRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
4957
|
+
ListEdgeDeploymentPlansRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
4958
|
+
ListEdgeDeploymentPlansRequest.add_member(:last_modified_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTimeAfter"))
|
4959
|
+
ListEdgeDeploymentPlansRequest.add_member(:last_modified_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTimeBefore"))
|
4960
|
+
ListEdgeDeploymentPlansRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: NameContains, location_name: "NameContains"))
|
4961
|
+
ListEdgeDeploymentPlansRequest.add_member(:device_fleet_name_contains, Shapes::ShapeRef.new(shape: NameContains, location_name: "DeviceFleetNameContains"))
|
4962
|
+
ListEdgeDeploymentPlansRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ListEdgeDeploymentPlansSortBy, location_name: "SortBy"))
|
4963
|
+
ListEdgeDeploymentPlansRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
4964
|
+
ListEdgeDeploymentPlansRequest.struct_class = Types::ListEdgeDeploymentPlansRequest
|
4965
|
+
|
4966
|
+
ListEdgeDeploymentPlansResponse.add_member(:edge_deployment_plan_summaries, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanSummaries, required: true, location_name: "EdgeDeploymentPlanSummaries"))
|
4967
|
+
ListEdgeDeploymentPlansResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4968
|
+
ListEdgeDeploymentPlansResponse.struct_class = Types::ListEdgeDeploymentPlansResponse
|
4969
|
+
|
4803
4970
|
ListEdgePackagingJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4804
4971
|
ListEdgePackagingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
4805
4972
|
ListEdgePackagingJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
@@ -5242,6 +5409,17 @@ module Aws::SageMaker
|
|
5242
5409
|
ListProjectsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5243
5410
|
ListProjectsOutput.struct_class = Types::ListProjectsOutput
|
5244
5411
|
|
5412
|
+
ListStageDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5413
|
+
ListStageDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
5414
|
+
ListStageDevicesRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
5415
|
+
ListStageDevicesRequest.add_member(:exclude_devices_deployed_in_other_stage, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeDevicesDeployedInOtherStage"))
|
5416
|
+
ListStageDevicesRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
5417
|
+
ListStageDevicesRequest.struct_class = Types::ListStageDevicesRequest
|
5418
|
+
|
5419
|
+
ListStageDevicesResponse.add_member(:device_deployment_summaries, Shapes::ShapeRef.new(shape: DeviceDeploymentSummaries, required: true, location_name: "DeviceDeploymentSummaries"))
|
5420
|
+
ListStageDevicesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5421
|
+
ListStageDevicesResponse.struct_class = Types::ListStageDevicesResponse
|
5422
|
+
|
5245
5423
|
ListStudioLifecycleConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
5246
5424
|
ListStudioLifecycleConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5247
5425
|
ListStudioLifecycleConfigsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, location_name: "NameContains"))
|
@@ -6377,10 +6555,11 @@ module Aws::SageMaker
|
|
6377
6555
|
ResolvedAttributes.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
6378
6556
|
ResolvedAttributes.struct_class = Types::ResolvedAttributes
|
6379
6557
|
|
6380
|
-
ResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType,
|
6381
|
-
ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount,
|
6558
|
+
ResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, location_name: "InstanceType"))
|
6559
|
+
ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount"))
|
6382
6560
|
ResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
|
6383
6561
|
ResourceConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
6562
|
+
ResourceConfig.add_member(:instance_groups, Shapes::ShapeRef.new(shape: InstanceGroups, location_name: "InstanceGroups"))
|
6384
6563
|
ResourceConfig.struct_class = Types::ResourceConfig
|
6385
6564
|
|
6386
6565
|
ResourceInUse.add_member(:message, Shapes::ShapeRef.new(shape: FailureReason, location_name: "Message"))
|
@@ -6425,6 +6604,7 @@ module Aws::SageMaker
|
|
6425
6604
|
S3DataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
|
6426
6605
|
S3DataSource.add_member(:s3_data_distribution_type, Shapes::ShapeRef.new(shape: S3DataDistribution, location_name: "S3DataDistributionType"))
|
6427
6606
|
S3DataSource.add_member(:attribute_names, Shapes::ShapeRef.new(shape: AttributeNames, location_name: "AttributeNames"))
|
6607
|
+
S3DataSource.add_member(:instance_group_names, Shapes::ShapeRef.new(shape: InstanceGroupNames, location_name: "InstanceGroupNames"))
|
6428
6608
|
S3DataSource.struct_class = Types::S3DataSource
|
6429
6609
|
|
6430
6610
|
S3StorageConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
|
@@ -6531,6 +6711,10 @@ module Aws::SageMaker
|
|
6531
6711
|
SourceIpConfig.add_member(:cidrs, Shapes::ShapeRef.new(shape: Cidrs, required: true, location_name: "Cidrs"))
|
6532
6712
|
SourceIpConfig.struct_class = Types::SourceIpConfig
|
6533
6713
|
|
6714
|
+
StartEdgeDeploymentStageRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
6715
|
+
StartEdgeDeploymentStageRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
6716
|
+
StartEdgeDeploymentStageRequest.struct_class = Types::StartEdgeDeploymentStageRequest
|
6717
|
+
|
6534
6718
|
StartMonitoringScheduleRequest.add_member(:monitoring_schedule_name, Shapes::ShapeRef.new(shape: MonitoringScheduleName, required: true, location_name: "MonitoringScheduleName"))
|
6535
6719
|
StartMonitoringScheduleRequest.struct_class = Types::StartMonitoringScheduleRequest
|
6536
6720
|
|
@@ -6554,6 +6738,10 @@ module Aws::SageMaker
|
|
6554
6738
|
StopCompilationJobRequest.add_member(:compilation_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CompilationJobName"))
|
6555
6739
|
StopCompilationJobRequest.struct_class = Types::StopCompilationJobRequest
|
6556
6740
|
|
6741
|
+
StopEdgeDeploymentStageRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
6742
|
+
StopEdgeDeploymentStageRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
6743
|
+
StopEdgeDeploymentStageRequest.struct_class = Types::StopEdgeDeploymentStageRequest
|
6744
|
+
|
6557
6745
|
StopEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
6558
6746
|
StopEdgePackagingJobRequest.struct_class = Types::StopEdgePackagingJobRequest
|
6559
6747
|
|
@@ -7436,6 +7624,24 @@ module Aws::SageMaker
|
|
7436
7624
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
7437
7625
|
end)
|
7438
7626
|
|
7627
|
+
api.add_operation(:create_edge_deployment_plan, Seahorse::Model::Operation.new.tap do |o|
|
7628
|
+
o.name = "CreateEdgeDeploymentPlan"
|
7629
|
+
o.http_method = "POST"
|
7630
|
+
o.http_request_uri = "/"
|
7631
|
+
o.input = Shapes::ShapeRef.new(shape: CreateEdgeDeploymentPlanRequest)
|
7632
|
+
o.output = Shapes::ShapeRef.new(shape: CreateEdgeDeploymentPlanResponse)
|
7633
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
7634
|
+
end)
|
7635
|
+
|
7636
|
+
api.add_operation(:create_edge_deployment_stage, Seahorse::Model::Operation.new.tap do |o|
|
7637
|
+
o.name = "CreateEdgeDeploymentStage"
|
7638
|
+
o.http_method = "POST"
|
7639
|
+
o.http_request_uri = "/"
|
7640
|
+
o.input = Shapes::ShapeRef.new(shape: CreateEdgeDeploymentStageRequest)
|
7641
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
7642
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
7643
|
+
end)
|
7644
|
+
|
7439
7645
|
api.add_operation(:create_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
7440
7646
|
o.name = "CreateEdgePackagingJob"
|
7441
7647
|
o.http_method = "POST"
|
@@ -7863,6 +8069,24 @@ module Aws::SageMaker
|
|
7863
8069
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
7864
8070
|
end)
|
7865
8071
|
|
8072
|
+
api.add_operation(:delete_edge_deployment_plan, Seahorse::Model::Operation.new.tap do |o|
|
8073
|
+
o.name = "DeleteEdgeDeploymentPlan"
|
8074
|
+
o.http_method = "POST"
|
8075
|
+
o.http_request_uri = "/"
|
8076
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteEdgeDeploymentPlanRequest)
|
8077
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
8078
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
8079
|
+
end)
|
8080
|
+
|
8081
|
+
api.add_operation(:delete_edge_deployment_stage, Seahorse::Model::Operation.new.tap do |o|
|
8082
|
+
o.name = "DeleteEdgeDeploymentStage"
|
8083
|
+
o.http_method = "POST"
|
8084
|
+
o.http_request_uri = "/"
|
8085
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteEdgeDeploymentStageRequest)
|
8086
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
8087
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
8088
|
+
end)
|
8089
|
+
|
7866
8090
|
api.add_operation(:delete_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
7867
8091
|
o.name = "DeleteEndpoint"
|
7868
8092
|
o.http_method = "POST"
|
@@ -8226,6 +8450,15 @@ module Aws::SageMaker
|
|
8226
8450
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8227
8451
|
end)
|
8228
8452
|
|
8453
|
+
api.add_operation(:describe_edge_deployment_plan, Seahorse::Model::Operation.new.tap do |o|
|
8454
|
+
o.name = "DescribeEdgeDeploymentPlan"
|
8455
|
+
o.http_method = "POST"
|
8456
|
+
o.http_request_uri = "/"
|
8457
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeEdgeDeploymentPlanRequest)
|
8458
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeEdgeDeploymentPlanResponse)
|
8459
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8460
|
+
end)
|
8461
|
+
|
8229
8462
|
api.add_operation(:describe_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
8230
8463
|
o.name = "DescribeEdgePackagingJob"
|
8231
8464
|
o.http_method = "POST"
|
@@ -8829,6 +9062,20 @@ module Aws::SageMaker
|
|
8829
9062
|
)
|
8830
9063
|
end)
|
8831
9064
|
|
9065
|
+
api.add_operation(:list_edge_deployment_plans, Seahorse::Model::Operation.new.tap do |o|
|
9066
|
+
o.name = "ListEdgeDeploymentPlans"
|
9067
|
+
o.http_method = "POST"
|
9068
|
+
o.http_request_uri = "/"
|
9069
|
+
o.input = Shapes::ShapeRef.new(shape: ListEdgeDeploymentPlansRequest)
|
9070
|
+
o.output = Shapes::ShapeRef.new(shape: ListEdgeDeploymentPlansResponse)
|
9071
|
+
o[:pager] = Aws::Pager.new(
|
9072
|
+
limit_key: "max_results",
|
9073
|
+
tokens: {
|
9074
|
+
"next_token" => "next_token"
|
9075
|
+
}
|
9076
|
+
)
|
9077
|
+
end)
|
9078
|
+
|
8832
9079
|
api.add_operation(:list_edge_packaging_jobs, Seahorse::Model::Operation.new.tap do |o|
|
8833
9080
|
o.name = "ListEdgePackagingJobs"
|
8834
9081
|
o.http_method = "POST"
|
@@ -9268,6 +9515,20 @@ module Aws::SageMaker
|
|
9268
9515
|
)
|
9269
9516
|
end)
|
9270
9517
|
|
9518
|
+
api.add_operation(:list_stage_devices, Seahorse::Model::Operation.new.tap do |o|
|
9519
|
+
o.name = "ListStageDevices"
|
9520
|
+
o.http_method = "POST"
|
9521
|
+
o.http_request_uri = "/"
|
9522
|
+
o.input = Shapes::ShapeRef.new(shape: ListStageDevicesRequest)
|
9523
|
+
o.output = Shapes::ShapeRef.new(shape: ListStageDevicesResponse)
|
9524
|
+
o[:pager] = Aws::Pager.new(
|
9525
|
+
limit_key: "max_results",
|
9526
|
+
tokens: {
|
9527
|
+
"next_token" => "next_token"
|
9528
|
+
}
|
9529
|
+
)
|
9530
|
+
end)
|
9531
|
+
|
9271
9532
|
api.add_operation(:list_studio_lifecycle_configs, Seahorse::Model::Operation.new.tap do |o|
|
9272
9533
|
o.name = "ListStudioLifecycleConfigs"
|
9273
9534
|
o.http_method = "POST"
|
@@ -9512,6 +9773,14 @@ module Aws::SageMaker
|
|
9512
9773
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
9513
9774
|
end)
|
9514
9775
|
|
9776
|
+
api.add_operation(:start_edge_deployment_stage, Seahorse::Model::Operation.new.tap do |o|
|
9777
|
+
o.name = "StartEdgeDeploymentStage"
|
9778
|
+
o.http_method = "POST"
|
9779
|
+
o.http_request_uri = "/"
|
9780
|
+
o.input = Shapes::ShapeRef.new(shape: StartEdgeDeploymentStageRequest)
|
9781
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
9782
|
+
end)
|
9783
|
+
|
9515
9784
|
api.add_operation(:start_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
9516
9785
|
o.name = "StartMonitoringSchedule"
|
9517
9786
|
o.http_method = "POST"
|
@@ -9558,6 +9827,14 @@ module Aws::SageMaker
|
|
9558
9827
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
9559
9828
|
end)
|
9560
9829
|
|
9830
|
+
api.add_operation(:stop_edge_deployment_stage, Seahorse::Model::Operation.new.tap do |o|
|
9831
|
+
o.name = "StopEdgeDeploymentStage"
|
9832
|
+
o.http_method = "POST"
|
9833
|
+
o.http_request_uri = "/"
|
9834
|
+
o.input = Shapes::ShapeRef.new(shape: StopEdgeDeploymentStageRequest)
|
9835
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
9836
|
+
end)
|
9837
|
+
|
9561
9838
|
api.add_operation(:stop_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
9562
9839
|
o.name = "StopEdgePackagingJob"
|
9563
9840
|
o.http_method = "POST"
|