aws-sdk-sagemaker 1.130.0 → 1.133.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 +442 -19
- data/lib/aws-sdk-sagemaker/client_api.rb +263 -1
- data/lib/aws-sdk-sagemaker/types.rb +802 -19
- 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')
|
@@ -866,6 +891,9 @@ module Aws::SageMaker
|
|
866
891
|
ListDevicesResponse = Shapes::StructureShape.new(name: 'ListDevicesResponse')
|
867
892
|
ListDomainsRequest = Shapes::StructureShape.new(name: 'ListDomainsRequest')
|
868
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')
|
869
897
|
ListEdgePackagingJobsRequest = Shapes::StructureShape.new(name: 'ListEdgePackagingJobsRequest')
|
870
898
|
ListEdgePackagingJobsResponse = Shapes::StructureShape.new(name: 'ListEdgePackagingJobsResponse')
|
871
899
|
ListEdgePackagingJobsSortBy = Shapes::StringShape.new(name: 'ListEdgePackagingJobsSortBy')
|
@@ -933,6 +961,8 @@ module Aws::SageMaker
|
|
933
961
|
ListProcessingJobsResponse = Shapes::StructureShape.new(name: 'ListProcessingJobsResponse')
|
934
962
|
ListProjectsInput = Shapes::StructureShape.new(name: 'ListProjectsInput')
|
935
963
|
ListProjectsOutput = Shapes::StructureShape.new(name: 'ListProjectsOutput')
|
964
|
+
ListStageDevicesRequest = Shapes::StructureShape.new(name: 'ListStageDevicesRequest')
|
965
|
+
ListStageDevicesResponse = Shapes::StructureShape.new(name: 'ListStageDevicesResponse')
|
936
966
|
ListStudioLifecycleConfigsRequest = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsRequest')
|
937
967
|
ListStudioLifecycleConfigsResponse = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsResponse')
|
938
968
|
ListSubscribedWorkteamsRequest = Shapes::StructureShape.new(name: 'ListSubscribedWorkteamsRequest')
|
@@ -1174,6 +1204,7 @@ module Aws::SageMaker
|
|
1174
1204
|
PendingDeploymentSummary = Shapes::StructureShape.new(name: 'PendingDeploymentSummary')
|
1175
1205
|
PendingProductionVariantSummary = Shapes::StructureShape.new(name: 'PendingProductionVariantSummary')
|
1176
1206
|
PendingProductionVariantSummaryList = Shapes::ListShape.new(name: 'PendingProductionVariantSummaryList')
|
1207
|
+
Percentage = Shapes::IntegerShape.new(name: 'Percentage')
|
1177
1208
|
Phase = Shapes::StructureShape.new(name: 'Phase')
|
1178
1209
|
Phases = Shapes::ListShape.new(name: 'Phases')
|
1179
1210
|
Pipeline = Shapes::StructureShape.new(name: 'Pipeline')
|
@@ -1405,6 +1436,8 @@ module Aws::SageMaker
|
|
1405
1436
|
SourceUri = Shapes::StringShape.new(name: 'SourceUri')
|
1406
1437
|
SpawnRate = Shapes::IntegerShape.new(name: 'SpawnRate')
|
1407
1438
|
SplitType = Shapes::StringShape.new(name: 'SplitType')
|
1439
|
+
StageStatus = Shapes::StringShape.new(name: 'StageStatus')
|
1440
|
+
StartEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StartEdgeDeploymentStageRequest')
|
1408
1441
|
StartMonitoringScheduleRequest = Shapes::StructureShape.new(name: 'StartMonitoringScheduleRequest')
|
1409
1442
|
StartNotebookInstanceInput = Shapes::StructureShape.new(name: 'StartNotebookInstanceInput')
|
1410
1443
|
StartPipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartPipelineExecutionRequest')
|
@@ -1417,6 +1450,7 @@ module Aws::SageMaker
|
|
1417
1450
|
StepStatus = Shapes::StringShape.new(name: 'StepStatus')
|
1418
1451
|
StopAutoMLJobRequest = Shapes::StructureShape.new(name: 'StopAutoMLJobRequest')
|
1419
1452
|
StopCompilationJobRequest = Shapes::StructureShape.new(name: 'StopCompilationJobRequest')
|
1453
|
+
StopEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StopEdgeDeploymentStageRequest')
|
1420
1454
|
StopEdgePackagingJobRequest = Shapes::StructureShape.new(name: 'StopEdgePackagingJobRequest')
|
1421
1455
|
StopHyperParameterTuningJobRequest = Shapes::StructureShape.new(name: 'StopHyperParameterTuningJobRequest')
|
1422
1456
|
StopInferenceRecommendationsJobRequest = Shapes::StructureShape.new(name: 'StopInferenceRecommendationsJobRequest')
|
@@ -2301,6 +2335,20 @@ module Aws::SageMaker
|
|
2301
2335
|
CreateDomainResponse.add_member(:url, Shapes::ShapeRef.new(shape: String1024, location_name: "Url"))
|
2302
2336
|
CreateDomainResponse.struct_class = Types::CreateDomainResponse
|
2303
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
|
+
|
2304
2352
|
CreateEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
2305
2353
|
CreateEdgePackagingJobRequest.add_member(:compilation_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CompilationJobName"))
|
2306
2354
|
CreateEdgePackagingJobRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelName"))
|
@@ -2869,6 +2917,13 @@ module Aws::SageMaker
|
|
2869
2917
|
DeleteDomainRequest.add_member(:retention_policy, Shapes::ShapeRef.new(shape: RetentionPolicy, location_name: "RetentionPolicy"))
|
2870
2918
|
DeleteDomainRequest.struct_class = Types::DeleteDomainRequest
|
2871
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
|
+
|
2872
2927
|
DeleteEndpointConfigInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
2873
2928
|
DeleteEndpointConfigInput.struct_class = Types::DeleteEndpointConfigInput
|
2874
2929
|
|
@@ -2992,6 +3047,21 @@ module Aws::SageMaker
|
|
2992
3047
|
DeploymentConfig.add_member(:auto_rollback_configuration, Shapes::ShapeRef.new(shape: AutoRollbackConfig, location_name: "AutoRollbackConfiguration"))
|
2993
3048
|
DeploymentConfig.struct_class = Types::DeploymentConfig
|
2994
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
|
+
|
2995
3065
|
DeregisterDevicesRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
2996
3066
|
DeregisterDevicesRequest.add_member(:device_names, Shapes::ShapeRef.new(shape: DeviceNames, required: true, location_name: "DeviceNames"))
|
2997
3067
|
DeregisterDevicesRequest.struct_class = Types::DeregisterDevicesRequest
|
@@ -3221,6 +3291,24 @@ module Aws::SageMaker
|
|
3221
3291
|
DescribeDomainResponse.add_member(:security_group_id_for_domain_boundary, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "SecurityGroupIdForDomainBoundary"))
|
3222
3292
|
DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
|
3223
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
|
+
|
3224
3312
|
DescribeEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
3225
3313
|
DescribeEdgePackagingJobRequest.struct_class = Types::DescribeEdgePackagingJobRequest
|
3226
3314
|
|
@@ -3854,6 +3942,21 @@ module Aws::SageMaker
|
|
3854
3942
|
Device.add_member(:iot_thing_name, Shapes::ShapeRef.new(shape: ThingName, location_name: "IotThingName"))
|
3855
3943
|
Device.struct_class = Types::Device
|
3856
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
|
+
|
3857
3960
|
DeviceFleetSummaries.member = Shapes::ShapeRef.new(shape: DeviceFleetSummary)
|
3858
3961
|
|
3859
3962
|
DeviceFleetSummary.add_member(:device_fleet_arn, Shapes::ShapeRef.new(shape: DeviceFleetArn, required: true, location_name: "DeviceFleetArn"))
|
@@ -3864,6 +3967,12 @@ module Aws::SageMaker
|
|
3864
3967
|
|
3865
3968
|
DeviceNames.member = Shapes::ShapeRef.new(shape: DeviceName)
|
3866
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
|
+
|
3867
3976
|
DeviceStats.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount"))
|
3868
3977
|
DeviceStats.add_member(:registered_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "RegisteredDeviceCount"))
|
3869
3978
|
DeviceStats.struct_class = Types::DeviceStats
|
@@ -3949,6 +4058,35 @@ module Aws::SageMaker
|
|
3949
4058
|
Edge.add_member(:association_type, Shapes::ShapeRef.new(shape: AssociationEdgeType, location_name: "AssociationType"))
|
3950
4059
|
Edge.struct_class = Types::Edge
|
3951
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
|
+
|
3952
4090
|
EdgeModel.add_member(:model_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelName"))
|
3953
4091
|
EdgeModel.add_member(:model_version, Shapes::ShapeRef.new(shape: EdgeVersion, required: true, location_name: "ModelVersion"))
|
3954
4092
|
EdgeModel.add_member(:latest_sample_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LatestSampleTime"))
|
@@ -4813,6 +4951,22 @@ module Aws::SageMaker
|
|
4813
4951
|
ListDomainsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4814
4952
|
ListDomainsResponse.struct_class = Types::ListDomainsResponse
|
4815
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
|
+
|
4816
4970
|
ListEdgePackagingJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4817
4971
|
ListEdgePackagingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
4818
4972
|
ListEdgePackagingJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
@@ -5255,6 +5409,17 @@ module Aws::SageMaker
|
|
5255
5409
|
ListProjectsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5256
5410
|
ListProjectsOutput.struct_class = Types::ListProjectsOutput
|
5257
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
|
+
|
5258
5423
|
ListStudioLifecycleConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
5259
5424
|
ListStudioLifecycleConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5260
5425
|
ListStudioLifecycleConfigsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, location_name: "NameContains"))
|
@@ -6272,7 +6437,7 @@ module Aws::SageMaker
|
|
6272
6437
|
QueryFilters.add_member(:properties, Shapes::ShapeRef.new(shape: QueryProperties, location_name: "Properties"))
|
6273
6438
|
QueryFilters.struct_class = Types::QueryFilters
|
6274
6439
|
|
6275
|
-
QueryLineageRequest.add_member(:start_arns, Shapes::ShapeRef.new(shape: QueryLineageStartArns,
|
6440
|
+
QueryLineageRequest.add_member(:start_arns, Shapes::ShapeRef.new(shape: QueryLineageStartArns, location_name: "StartArns"))
|
6276
6441
|
QueryLineageRequest.add_member(:direction, Shapes::ShapeRef.new(shape: Direction, location_name: "Direction"))
|
6277
6442
|
QueryLineageRequest.add_member(:include_edges, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeEdges"))
|
6278
6443
|
QueryLineageRequest.add_member(:filters, Shapes::ShapeRef.new(shape: QueryFilters, location_name: "Filters"))
|
@@ -6546,6 +6711,10 @@ module Aws::SageMaker
|
|
6546
6711
|
SourceIpConfig.add_member(:cidrs, Shapes::ShapeRef.new(shape: Cidrs, required: true, location_name: "Cidrs"))
|
6547
6712
|
SourceIpConfig.struct_class = Types::SourceIpConfig
|
6548
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
|
+
|
6549
6718
|
StartMonitoringScheduleRequest.add_member(:monitoring_schedule_name, Shapes::ShapeRef.new(shape: MonitoringScheduleName, required: true, location_name: "MonitoringScheduleName"))
|
6550
6719
|
StartMonitoringScheduleRequest.struct_class = Types::StartMonitoringScheduleRequest
|
6551
6720
|
|
@@ -6569,6 +6738,10 @@ module Aws::SageMaker
|
|
6569
6738
|
StopCompilationJobRequest.add_member(:compilation_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CompilationJobName"))
|
6570
6739
|
StopCompilationJobRequest.struct_class = Types::StopCompilationJobRequest
|
6571
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
|
+
|
6572
6745
|
StopEdgePackagingJobRequest.add_member(:edge_packaging_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgePackagingJobName"))
|
6573
6746
|
StopEdgePackagingJobRequest.struct_class = Types::StopEdgePackagingJobRequest
|
6574
6747
|
|
@@ -7451,6 +7624,24 @@ module Aws::SageMaker
|
|
7451
7624
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
7452
7625
|
end)
|
7453
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
|
+
|
7454
7645
|
api.add_operation(:create_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
7455
7646
|
o.name = "CreateEdgePackagingJob"
|
7456
7647
|
o.http_method = "POST"
|
@@ -7878,6 +8069,24 @@ module Aws::SageMaker
|
|
7878
8069
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
7879
8070
|
end)
|
7880
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
|
+
|
7881
8090
|
api.add_operation(:delete_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
7882
8091
|
o.name = "DeleteEndpoint"
|
7883
8092
|
o.http_method = "POST"
|
@@ -8241,6 +8450,15 @@ module Aws::SageMaker
|
|
8241
8450
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
8242
8451
|
end)
|
8243
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
|
+
|
8244
8462
|
api.add_operation(:describe_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
8245
8463
|
o.name = "DescribeEdgePackagingJob"
|
8246
8464
|
o.http_method = "POST"
|
@@ -8844,6 +9062,20 @@ module Aws::SageMaker
|
|
8844
9062
|
)
|
8845
9063
|
end)
|
8846
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
|
+
|
8847
9079
|
api.add_operation(:list_edge_packaging_jobs, Seahorse::Model::Operation.new.tap do |o|
|
8848
9080
|
o.name = "ListEdgePackagingJobs"
|
8849
9081
|
o.http_method = "POST"
|
@@ -9283,6 +9515,20 @@ module Aws::SageMaker
|
|
9283
9515
|
)
|
9284
9516
|
end)
|
9285
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
|
+
|
9286
9532
|
api.add_operation(:list_studio_lifecycle_configs, Seahorse::Model::Operation.new.tap do |o|
|
9287
9533
|
o.name = "ListStudioLifecycleConfigs"
|
9288
9534
|
o.http_method = "POST"
|
@@ -9527,6 +9773,14 @@ module Aws::SageMaker
|
|
9527
9773
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
9528
9774
|
end)
|
9529
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
|
+
|
9530
9784
|
api.add_operation(:start_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
9531
9785
|
o.name = "StartMonitoringSchedule"
|
9532
9786
|
o.http_method = "POST"
|
@@ -9573,6 +9827,14 @@ module Aws::SageMaker
|
|
9573
9827
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
9574
9828
|
end)
|
9575
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
|
+
|
9576
9838
|
api.add_operation(:stop_edge_packaging_job, Seahorse::Model::Operation.new.tap do |o|
|
9577
9839
|
o.name = "StopEdgePackagingJob"
|
9578
9840
|
o.http_method = "POST"
|