aws-sdk-sagemaker 1.131.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +424 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +262 -0
- data/lib/aws-sdk-sagemaker/types.rb +779 -0
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -5398,6 +5398,123 @@ module Aws::SageMaker
|
|
5398
5398
|
include Aws::Structure
|
5399
5399
|
end
|
5400
5400
|
|
5401
|
+
# @note When making an API call, you may pass CreateEdgeDeploymentPlanRequest
|
5402
|
+
# data as a hash:
|
5403
|
+
#
|
5404
|
+
# {
|
5405
|
+
# edge_deployment_plan_name: "EntityName", # required
|
5406
|
+
# model_configs: [ # required
|
5407
|
+
# {
|
5408
|
+
# model_handle: "EntityName", # required
|
5409
|
+
# edge_packaging_job_name: "EntityName", # required
|
5410
|
+
# },
|
5411
|
+
# ],
|
5412
|
+
# device_fleet_name: "EntityName", # required
|
5413
|
+
# stages: [
|
5414
|
+
# {
|
5415
|
+
# stage_name: "EntityName", # required
|
5416
|
+
# device_selection_config: { # required
|
5417
|
+
# device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
|
5418
|
+
# percentage: 1,
|
5419
|
+
# device_names: ["DeviceName"],
|
5420
|
+
# device_name_contains: "DeviceName",
|
5421
|
+
# },
|
5422
|
+
# deployment_config: {
|
5423
|
+
# failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
|
5424
|
+
# },
|
5425
|
+
# },
|
5426
|
+
# ],
|
5427
|
+
# tags: [
|
5428
|
+
# {
|
5429
|
+
# key: "TagKey", # required
|
5430
|
+
# value: "TagValue", # required
|
5431
|
+
# },
|
5432
|
+
# ],
|
5433
|
+
# }
|
5434
|
+
#
|
5435
|
+
# @!attribute [rw] edge_deployment_plan_name
|
5436
|
+
# The name of the edge deployment plan.
|
5437
|
+
# @return [String]
|
5438
|
+
#
|
5439
|
+
# @!attribute [rw] model_configs
|
5440
|
+
# List of models associated with the edge deployment plan.
|
5441
|
+
# @return [Array<Types::EdgeDeploymentModelConfig>]
|
5442
|
+
#
|
5443
|
+
# @!attribute [rw] device_fleet_name
|
5444
|
+
# The device fleet used for this edge deployment plan.
|
5445
|
+
# @return [String]
|
5446
|
+
#
|
5447
|
+
# @!attribute [rw] stages
|
5448
|
+
# List of stages of the edge deployment plan. The number of stages is
|
5449
|
+
# limited to 10 per deployment.
|
5450
|
+
# @return [Array<Types::DeploymentStage>]
|
5451
|
+
#
|
5452
|
+
# @!attribute [rw] tags
|
5453
|
+
# List of tags with which to tag the edge deployment plan.
|
5454
|
+
# @return [Array<Types::Tag>]
|
5455
|
+
#
|
5456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlanRequest AWS API Documentation
|
5457
|
+
#
|
5458
|
+
class CreateEdgeDeploymentPlanRequest < Struct.new(
|
5459
|
+
:edge_deployment_plan_name,
|
5460
|
+
:model_configs,
|
5461
|
+
:device_fleet_name,
|
5462
|
+
:stages,
|
5463
|
+
:tags)
|
5464
|
+
SENSITIVE = []
|
5465
|
+
include Aws::Structure
|
5466
|
+
end
|
5467
|
+
|
5468
|
+
# @!attribute [rw] edge_deployment_plan_arn
|
5469
|
+
# The ARN of the edge deployment plan.
|
5470
|
+
# @return [String]
|
5471
|
+
#
|
5472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlanResponse AWS API Documentation
|
5473
|
+
#
|
5474
|
+
class CreateEdgeDeploymentPlanResponse < Struct.new(
|
5475
|
+
:edge_deployment_plan_arn)
|
5476
|
+
SENSITIVE = []
|
5477
|
+
include Aws::Structure
|
5478
|
+
end
|
5479
|
+
|
5480
|
+
# @note When making an API call, you may pass CreateEdgeDeploymentStageRequest
|
5481
|
+
# data as a hash:
|
5482
|
+
#
|
5483
|
+
# {
|
5484
|
+
# edge_deployment_plan_name: "EntityName", # required
|
5485
|
+
# stages: [ # required
|
5486
|
+
# {
|
5487
|
+
# stage_name: "EntityName", # required
|
5488
|
+
# device_selection_config: { # required
|
5489
|
+
# device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
|
5490
|
+
# percentage: 1,
|
5491
|
+
# device_names: ["DeviceName"],
|
5492
|
+
# device_name_contains: "DeviceName",
|
5493
|
+
# },
|
5494
|
+
# deployment_config: {
|
5495
|
+
# failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
|
5496
|
+
# },
|
5497
|
+
# },
|
5498
|
+
# ],
|
5499
|
+
# }
|
5500
|
+
#
|
5501
|
+
# @!attribute [rw] edge_deployment_plan_name
|
5502
|
+
# The name of the edge deployment plan.
|
5503
|
+
# @return [String]
|
5504
|
+
#
|
5505
|
+
# @!attribute [rw] stages
|
5506
|
+
# List of stages to be added to the edge deployment plan.
|
5507
|
+
# @return [Array<Types::DeploymentStage>]
|
5508
|
+
#
|
5509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentStageRequest AWS API Documentation
|
5510
|
+
#
|
5511
|
+
class CreateEdgeDeploymentStageRequest < Struct.new(
|
5512
|
+
:edge_deployment_plan_name,
|
5513
|
+
:stages)
|
5514
|
+
SENSITIVE = []
|
5515
|
+
include Aws::Structure
|
5516
|
+
end
|
5517
|
+
|
5401
5518
|
# @note When making an API call, you may pass CreateEdgePackagingJobRequest
|
5402
5519
|
# data as a hash:
|
5403
5520
|
#
|
@@ -11233,6 +11350,51 @@ module Aws::SageMaker
|
|
11233
11350
|
include Aws::Structure
|
11234
11351
|
end
|
11235
11352
|
|
11353
|
+
# @note When making an API call, you may pass DeleteEdgeDeploymentPlanRequest
|
11354
|
+
# data as a hash:
|
11355
|
+
#
|
11356
|
+
# {
|
11357
|
+
# edge_deployment_plan_name: "EntityName", # required
|
11358
|
+
# }
|
11359
|
+
#
|
11360
|
+
# @!attribute [rw] edge_deployment_plan_name
|
11361
|
+
# The name of the edge deployment plan to delete.
|
11362
|
+
# @return [String]
|
11363
|
+
#
|
11364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentPlanRequest AWS API Documentation
|
11365
|
+
#
|
11366
|
+
class DeleteEdgeDeploymentPlanRequest < Struct.new(
|
11367
|
+
:edge_deployment_plan_name)
|
11368
|
+
SENSITIVE = []
|
11369
|
+
include Aws::Structure
|
11370
|
+
end
|
11371
|
+
|
11372
|
+
# @note When making an API call, you may pass DeleteEdgeDeploymentStageRequest
|
11373
|
+
# data as a hash:
|
11374
|
+
#
|
11375
|
+
# {
|
11376
|
+
# edge_deployment_plan_name: "EntityName", # required
|
11377
|
+
# stage_name: "EntityName", # required
|
11378
|
+
# }
|
11379
|
+
#
|
11380
|
+
# @!attribute [rw] edge_deployment_plan_name
|
11381
|
+
# The name of the edge deployment plan from which the stage will be
|
11382
|
+
# deleted.
|
11383
|
+
# @return [String]
|
11384
|
+
#
|
11385
|
+
# @!attribute [rw] stage_name
|
11386
|
+
# The name of the stage.
|
11387
|
+
# @return [String]
|
11388
|
+
#
|
11389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentStageRequest AWS API Documentation
|
11390
|
+
#
|
11391
|
+
class DeleteEdgeDeploymentStageRequest < Struct.new(
|
11392
|
+
:edge_deployment_plan_name,
|
11393
|
+
:stage_name)
|
11394
|
+
SENSITIVE = []
|
11395
|
+
include Aws::Structure
|
11396
|
+
end
|
11397
|
+
|
11236
11398
|
# @note When making an API call, you may pass DeleteEndpointConfigInput
|
11237
11399
|
# data as a hash:
|
11238
11400
|
#
|
@@ -11964,6 +12126,75 @@ module Aws::SageMaker
|
|
11964
12126
|
include Aws::Structure
|
11965
12127
|
end
|
11966
12128
|
|
12129
|
+
# Contains information about a stage in an edge deployment plan.
|
12130
|
+
#
|
12131
|
+
# @note When making an API call, you may pass DeploymentStage
|
12132
|
+
# data as a hash:
|
12133
|
+
#
|
12134
|
+
# {
|
12135
|
+
# stage_name: "EntityName", # required
|
12136
|
+
# device_selection_config: { # required
|
12137
|
+
# device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
|
12138
|
+
# percentage: 1,
|
12139
|
+
# device_names: ["DeviceName"],
|
12140
|
+
# device_name_contains: "DeviceName",
|
12141
|
+
# },
|
12142
|
+
# deployment_config: {
|
12143
|
+
# failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
|
12144
|
+
# },
|
12145
|
+
# }
|
12146
|
+
#
|
12147
|
+
# @!attribute [rw] stage_name
|
12148
|
+
# The name of the stage.
|
12149
|
+
# @return [String]
|
12150
|
+
#
|
12151
|
+
# @!attribute [rw] device_selection_config
|
12152
|
+
# Configuration of the devices in the stage.
|
12153
|
+
# @return [Types::DeviceSelectionConfig]
|
12154
|
+
#
|
12155
|
+
# @!attribute [rw] deployment_config
|
12156
|
+
# Configuration of the deployment details.
|
12157
|
+
# @return [Types::EdgeDeploymentConfig]
|
12158
|
+
#
|
12159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentStage AWS API Documentation
|
12160
|
+
#
|
12161
|
+
class DeploymentStage < Struct.new(
|
12162
|
+
:stage_name,
|
12163
|
+
:device_selection_config,
|
12164
|
+
:deployment_config)
|
12165
|
+
SENSITIVE = []
|
12166
|
+
include Aws::Structure
|
12167
|
+
end
|
12168
|
+
|
12169
|
+
# Contains information summarizing the deployment stage results.
|
12170
|
+
#
|
12171
|
+
# @!attribute [rw] stage_name
|
12172
|
+
# The name of the stage.
|
12173
|
+
# @return [String]
|
12174
|
+
#
|
12175
|
+
# @!attribute [rw] device_selection_config
|
12176
|
+
# Configuration of the devices in the stage.
|
12177
|
+
# @return [Types::DeviceSelectionConfig]
|
12178
|
+
#
|
12179
|
+
# @!attribute [rw] deployment_config
|
12180
|
+
# Configuration of the deployment details.
|
12181
|
+
# @return [Types::EdgeDeploymentConfig]
|
12182
|
+
#
|
12183
|
+
# @!attribute [rw] deployment_status
|
12184
|
+
# General status of the current state.
|
12185
|
+
# @return [Types::EdgeDeploymentStatus]
|
12186
|
+
#
|
12187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentStageStatusSummary AWS API Documentation
|
12188
|
+
#
|
12189
|
+
class DeploymentStageStatusSummary < Struct.new(
|
12190
|
+
:stage_name,
|
12191
|
+
:device_selection_config,
|
12192
|
+
:deployment_config,
|
12193
|
+
:deployment_status)
|
12194
|
+
SENSITIVE = []
|
12195
|
+
include Aws::Structure
|
12196
|
+
end
|
12197
|
+
|
11967
12198
|
# @note When making an API call, you may pass DeregisterDevicesRequest
|
11968
12199
|
# data as a hash:
|
11969
12200
|
#
|
@@ -13214,6 +13445,102 @@ module Aws::SageMaker
|
|
13214
13445
|
include Aws::Structure
|
13215
13446
|
end
|
13216
13447
|
|
13448
|
+
# @note When making an API call, you may pass DescribeEdgeDeploymentPlanRequest
|
13449
|
+
# data as a hash:
|
13450
|
+
#
|
13451
|
+
# {
|
13452
|
+
# edge_deployment_plan_name: "EntityName", # required
|
13453
|
+
# next_token: "NextToken",
|
13454
|
+
# max_results: 1,
|
13455
|
+
# }
|
13456
|
+
#
|
13457
|
+
# @!attribute [rw] edge_deployment_plan_name
|
13458
|
+
# The name of the deployment plan to describe.
|
13459
|
+
# @return [String]
|
13460
|
+
#
|
13461
|
+
# @!attribute [rw] next_token
|
13462
|
+
# If the edge deployment plan has enough stages to require tokening,
|
13463
|
+
# then this is the response from the last list of stages returned.
|
13464
|
+
# @return [String]
|
13465
|
+
#
|
13466
|
+
# @!attribute [rw] max_results
|
13467
|
+
# The maximum number of results to select (50 by default).
|
13468
|
+
# @return [Integer]
|
13469
|
+
#
|
13470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlanRequest AWS API Documentation
|
13471
|
+
#
|
13472
|
+
class DescribeEdgeDeploymentPlanRequest < Struct.new(
|
13473
|
+
:edge_deployment_plan_name,
|
13474
|
+
:next_token,
|
13475
|
+
:max_results)
|
13476
|
+
SENSITIVE = []
|
13477
|
+
include Aws::Structure
|
13478
|
+
end
|
13479
|
+
|
13480
|
+
# @!attribute [rw] edge_deployment_plan_arn
|
13481
|
+
# The ARN of edge deployment plan.
|
13482
|
+
# @return [String]
|
13483
|
+
#
|
13484
|
+
# @!attribute [rw] edge_deployment_plan_name
|
13485
|
+
# The name of the edge deployment plan.
|
13486
|
+
# @return [String]
|
13487
|
+
#
|
13488
|
+
# @!attribute [rw] model_configs
|
13489
|
+
# List of models associated with the edge deployment plan.
|
13490
|
+
# @return [Array<Types::EdgeDeploymentModelConfig>]
|
13491
|
+
#
|
13492
|
+
# @!attribute [rw] device_fleet_name
|
13493
|
+
# The device fleet used for this edge deployment plan.
|
13494
|
+
# @return [String]
|
13495
|
+
#
|
13496
|
+
# @!attribute [rw] edge_deployment_success
|
13497
|
+
# The number of edge devices with the successful deployment.
|
13498
|
+
# @return [Integer]
|
13499
|
+
#
|
13500
|
+
# @!attribute [rw] edge_deployment_pending
|
13501
|
+
# The number of edge devices yet to pick up deployment, or in
|
13502
|
+
# progress.
|
13503
|
+
# @return [Integer]
|
13504
|
+
#
|
13505
|
+
# @!attribute [rw] edge_deployment_failed
|
13506
|
+
# The number of edge devices that failed the deployment.
|
13507
|
+
# @return [Integer]
|
13508
|
+
#
|
13509
|
+
# @!attribute [rw] stages
|
13510
|
+
# List of stages in the edge deployment plan.
|
13511
|
+
# @return [Array<Types::DeploymentStageStatusSummary>]
|
13512
|
+
#
|
13513
|
+
# @!attribute [rw] next_token
|
13514
|
+
# Token to use when calling the next set of stages in the edge
|
13515
|
+
# deployment plan.
|
13516
|
+
# @return [String]
|
13517
|
+
#
|
13518
|
+
# @!attribute [rw] creation_time
|
13519
|
+
# The time when the edge deployment plan was created.
|
13520
|
+
# @return [Time]
|
13521
|
+
#
|
13522
|
+
# @!attribute [rw] last_modified_time
|
13523
|
+
# The time when the edge deployment plan was last updated.
|
13524
|
+
# @return [Time]
|
13525
|
+
#
|
13526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlanResponse AWS API Documentation
|
13527
|
+
#
|
13528
|
+
class DescribeEdgeDeploymentPlanResponse < Struct.new(
|
13529
|
+
:edge_deployment_plan_arn,
|
13530
|
+
:edge_deployment_plan_name,
|
13531
|
+
:model_configs,
|
13532
|
+
:device_fleet_name,
|
13533
|
+
:edge_deployment_success,
|
13534
|
+
:edge_deployment_pending,
|
13535
|
+
:edge_deployment_failed,
|
13536
|
+
:stages,
|
13537
|
+
:next_token,
|
13538
|
+
:creation_time,
|
13539
|
+
:last_modified_time)
|
13540
|
+
SENSITIVE = []
|
13541
|
+
include Aws::Structure
|
13542
|
+
end
|
13543
|
+
|
13217
13544
|
# @note When making an API call, you may pass DescribeEdgePackagingJobRequest
|
13218
13545
|
# data as a hash:
|
13219
13546
|
#
|
@@ -16983,6 +17310,70 @@ module Aws::SageMaker
|
|
16983
17310
|
include Aws::Structure
|
16984
17311
|
end
|
16985
17312
|
|
17313
|
+
# Contains information summarizing device details and deployment status.
|
17314
|
+
#
|
17315
|
+
# @!attribute [rw] edge_deployment_plan_arn
|
17316
|
+
# The ARN of the edge deployment plan.
|
17317
|
+
# @return [String]
|
17318
|
+
#
|
17319
|
+
# @!attribute [rw] edge_deployment_plan_name
|
17320
|
+
# The name of the edge deployment plan.
|
17321
|
+
# @return [String]
|
17322
|
+
#
|
17323
|
+
# @!attribute [rw] stage_name
|
17324
|
+
# The name of the stage in the edge deployment plan.
|
17325
|
+
# @return [String]
|
17326
|
+
#
|
17327
|
+
# @!attribute [rw] deployed_stage_name
|
17328
|
+
# The name of the deployed stage.
|
17329
|
+
# @return [String]
|
17330
|
+
#
|
17331
|
+
# @!attribute [rw] device_fleet_name
|
17332
|
+
# The name of the fleet to which the device belongs to.
|
17333
|
+
# @return [String]
|
17334
|
+
#
|
17335
|
+
# @!attribute [rw] device_name
|
17336
|
+
# The name of the device.
|
17337
|
+
# @return [String]
|
17338
|
+
#
|
17339
|
+
# @!attribute [rw] device_arn
|
17340
|
+
# The ARN of the device.
|
17341
|
+
# @return [String]
|
17342
|
+
#
|
17343
|
+
# @!attribute [rw] device_deployment_status
|
17344
|
+
# The deployment status of the device.
|
17345
|
+
# @return [String]
|
17346
|
+
#
|
17347
|
+
# @!attribute [rw] device_deployment_status_message
|
17348
|
+
# The detailed error message for the deployoment status result.
|
17349
|
+
# @return [String]
|
17350
|
+
#
|
17351
|
+
# @!attribute [rw] description
|
17352
|
+
# The description of the device.
|
17353
|
+
# @return [String]
|
17354
|
+
#
|
17355
|
+
# @!attribute [rw] deployment_start_time
|
17356
|
+
# The time when the deployment on the device started.
|
17357
|
+
# @return [Time]
|
17358
|
+
#
|
17359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceDeploymentSummary AWS API Documentation
|
17360
|
+
#
|
17361
|
+
class DeviceDeploymentSummary < Struct.new(
|
17362
|
+
:edge_deployment_plan_arn,
|
17363
|
+
:edge_deployment_plan_name,
|
17364
|
+
:stage_name,
|
17365
|
+
:deployed_stage_name,
|
17366
|
+
:device_fleet_name,
|
17367
|
+
:device_name,
|
17368
|
+
:device_arn,
|
17369
|
+
:device_deployment_status,
|
17370
|
+
:device_deployment_status_message,
|
17371
|
+
:description,
|
17372
|
+
:deployment_start_time)
|
17373
|
+
SENSITIVE = []
|
17374
|
+
include Aws::Structure
|
17375
|
+
end
|
17376
|
+
|
16986
17377
|
# Summary of the device fleet.
|
16987
17378
|
#
|
16988
17379
|
# @!attribute [rw] device_fleet_arn
|
@@ -17012,6 +17403,45 @@ module Aws::SageMaker
|
|
17012
17403
|
include Aws::Structure
|
17013
17404
|
end
|
17014
17405
|
|
17406
|
+
# Contains information about the configurations of selected devices.
|
17407
|
+
#
|
17408
|
+
# @note When making an API call, you may pass DeviceSelectionConfig
|
17409
|
+
# data as a hash:
|
17410
|
+
#
|
17411
|
+
# {
|
17412
|
+
# device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
|
17413
|
+
# percentage: 1,
|
17414
|
+
# device_names: ["DeviceName"],
|
17415
|
+
# device_name_contains: "DeviceName",
|
17416
|
+
# }
|
17417
|
+
#
|
17418
|
+
# @!attribute [rw] device_subset_type
|
17419
|
+
# Type of device subsets to deploy to the current stage.
|
17420
|
+
# @return [String]
|
17421
|
+
#
|
17422
|
+
# @!attribute [rw] percentage
|
17423
|
+
# Percentage of devices in the fleet to deploy to the current stage.
|
17424
|
+
# @return [Integer]
|
17425
|
+
#
|
17426
|
+
# @!attribute [rw] device_names
|
17427
|
+
# List of devices chosen to deploy.
|
17428
|
+
# @return [Array<String>]
|
17429
|
+
#
|
17430
|
+
# @!attribute [rw] device_name_contains
|
17431
|
+
# A filter to select devices with names containing this name.
|
17432
|
+
# @return [String]
|
17433
|
+
#
|
17434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSelectionConfig AWS API Documentation
|
17435
|
+
#
|
17436
|
+
class DeviceSelectionConfig < Struct.new(
|
17437
|
+
:device_subset_type,
|
17438
|
+
:percentage,
|
17439
|
+
:device_names,
|
17440
|
+
:device_name_contains)
|
17441
|
+
SENSITIVE = []
|
17442
|
+
include Aws::Structure
|
17443
|
+
end
|
17444
|
+
|
17015
17445
|
# Status of devices.
|
17016
17446
|
#
|
17017
17447
|
# @!attribute [rw] connected_device_count
|
@@ -17558,6 +17988,149 @@ module Aws::SageMaker
|
|
17558
17988
|
include Aws::Structure
|
17559
17989
|
end
|
17560
17990
|
|
17991
|
+
# Contains information about the configuration of a deployment.
|
17992
|
+
#
|
17993
|
+
# @note When making an API call, you may pass EdgeDeploymentConfig
|
17994
|
+
# data as a hash:
|
17995
|
+
#
|
17996
|
+
# {
|
17997
|
+
# failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
|
17998
|
+
# }
|
17999
|
+
#
|
18000
|
+
# @!attribute [rw] failure_handling_policy
|
18001
|
+
# Toggle that determines whether to rollback to previous configuration
|
18002
|
+
# if the current deployment fails. By default this is turned on. You
|
18003
|
+
# may turn this off if you want to investigate the errors yourself.
|
18004
|
+
# @return [String]
|
18005
|
+
#
|
18006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentConfig AWS API Documentation
|
18007
|
+
#
|
18008
|
+
class EdgeDeploymentConfig < Struct.new(
|
18009
|
+
:failure_handling_policy)
|
18010
|
+
SENSITIVE = []
|
18011
|
+
include Aws::Structure
|
18012
|
+
end
|
18013
|
+
|
18014
|
+
# Contains information about the configuration of a model in a
|
18015
|
+
# deployment.
|
18016
|
+
#
|
18017
|
+
# @note When making an API call, you may pass EdgeDeploymentModelConfig
|
18018
|
+
# data as a hash:
|
18019
|
+
#
|
18020
|
+
# {
|
18021
|
+
# model_handle: "EntityName", # required
|
18022
|
+
# edge_packaging_job_name: "EntityName", # required
|
18023
|
+
# }
|
18024
|
+
#
|
18025
|
+
# @!attribute [rw] model_handle
|
18026
|
+
# The name the device application uses to reference this model.
|
18027
|
+
# @return [String]
|
18028
|
+
#
|
18029
|
+
# @!attribute [rw] edge_packaging_job_name
|
18030
|
+
# The edge packaging job associated with this deployment.
|
18031
|
+
# @return [String]
|
18032
|
+
#
|
18033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentModelConfig AWS API Documentation
|
18034
|
+
#
|
18035
|
+
class EdgeDeploymentModelConfig < Struct.new(
|
18036
|
+
:model_handle,
|
18037
|
+
:edge_packaging_job_name)
|
18038
|
+
SENSITIVE = []
|
18039
|
+
include Aws::Structure
|
18040
|
+
end
|
18041
|
+
|
18042
|
+
# Contains information summarizing an edge deployment plan.
|
18043
|
+
#
|
18044
|
+
# @!attribute [rw] edge_deployment_plan_arn
|
18045
|
+
# The ARN of the edge deployment plan.
|
18046
|
+
# @return [String]
|
18047
|
+
#
|
18048
|
+
# @!attribute [rw] edge_deployment_plan_name
|
18049
|
+
# The name of the edge deployment plan.
|
18050
|
+
# @return [String]
|
18051
|
+
#
|
18052
|
+
# @!attribute [rw] device_fleet_name
|
18053
|
+
# The name of the device fleet used for the deployment.
|
18054
|
+
# @return [String]
|
18055
|
+
#
|
18056
|
+
# @!attribute [rw] edge_deployment_success
|
18057
|
+
# The number of edge devices with the successful deployment.
|
18058
|
+
# @return [Integer]
|
18059
|
+
#
|
18060
|
+
# @!attribute [rw] edge_deployment_pending
|
18061
|
+
# The number of edge devices yet to pick up the deployment, or in
|
18062
|
+
# progress.
|
18063
|
+
# @return [Integer]
|
18064
|
+
#
|
18065
|
+
# @!attribute [rw] edge_deployment_failed
|
18066
|
+
# The number of edge devices that failed the deployment.
|
18067
|
+
# @return [Integer]
|
18068
|
+
#
|
18069
|
+
# @!attribute [rw] creation_time
|
18070
|
+
# The time when the edge deployment plan was created.
|
18071
|
+
# @return [Time]
|
18072
|
+
#
|
18073
|
+
# @!attribute [rw] last_modified_time
|
18074
|
+
# The time when the edge deployment plan was last updated.
|
18075
|
+
# @return [Time]
|
18076
|
+
#
|
18077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentPlanSummary AWS API Documentation
|
18078
|
+
#
|
18079
|
+
class EdgeDeploymentPlanSummary < Struct.new(
|
18080
|
+
:edge_deployment_plan_arn,
|
18081
|
+
:edge_deployment_plan_name,
|
18082
|
+
:device_fleet_name,
|
18083
|
+
:edge_deployment_success,
|
18084
|
+
:edge_deployment_pending,
|
18085
|
+
:edge_deployment_failed,
|
18086
|
+
:creation_time,
|
18087
|
+
:last_modified_time)
|
18088
|
+
SENSITIVE = []
|
18089
|
+
include Aws::Structure
|
18090
|
+
end
|
18091
|
+
|
18092
|
+
# Contains information summarizing the deployment stage results.
|
18093
|
+
#
|
18094
|
+
# @!attribute [rw] stage_status
|
18095
|
+
# The general status of the current stage.
|
18096
|
+
# @return [String]
|
18097
|
+
#
|
18098
|
+
# @!attribute [rw] edge_deployment_success_in_stage
|
18099
|
+
# The number of edge devices with the successful deployment in the
|
18100
|
+
# current stage.
|
18101
|
+
# @return [Integer]
|
18102
|
+
#
|
18103
|
+
# @!attribute [rw] edge_deployment_pending_in_stage
|
18104
|
+
# The number of edge devices yet to pick up the deployment in current
|
18105
|
+
# stage, or in progress.
|
18106
|
+
# @return [Integer]
|
18107
|
+
#
|
18108
|
+
# @!attribute [rw] edge_deployment_failed_in_stage
|
18109
|
+
# The number of edge devices that failed the deployment in current
|
18110
|
+
# stage.
|
18111
|
+
# @return [Integer]
|
18112
|
+
#
|
18113
|
+
# @!attribute [rw] edge_deployment_status_message
|
18114
|
+
# A detailed message about deployment status in current stage.
|
18115
|
+
# @return [String]
|
18116
|
+
#
|
18117
|
+
# @!attribute [rw] edge_deployment_stage_start_time
|
18118
|
+
# The time when the deployment API started.
|
18119
|
+
# @return [Time]
|
18120
|
+
#
|
18121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentStatus AWS API Documentation
|
18122
|
+
#
|
18123
|
+
class EdgeDeploymentStatus < Struct.new(
|
18124
|
+
:stage_status,
|
18125
|
+
:edge_deployment_success_in_stage,
|
18126
|
+
:edge_deployment_pending_in_stage,
|
18127
|
+
:edge_deployment_failed_in_stage,
|
18128
|
+
:edge_deployment_status_message,
|
18129
|
+
:edge_deployment_stage_start_time)
|
18130
|
+
SENSITIVE = []
|
18131
|
+
include Aws::Structure
|
18132
|
+
end
|
18133
|
+
|
17561
18134
|
# The model on the edge device.
|
17562
18135
|
#
|
17563
18136
|
# @!attribute [rw] model_name
|
@@ -24194,6 +24767,101 @@ module Aws::SageMaker
|
|
24194
24767
|
include Aws::Structure
|
24195
24768
|
end
|
24196
24769
|
|
24770
|
+
# @note When making an API call, you may pass ListEdgeDeploymentPlansRequest
|
24771
|
+
# data as a hash:
|
24772
|
+
#
|
24773
|
+
# {
|
24774
|
+
# next_token: "NextToken",
|
24775
|
+
# max_results: 1,
|
24776
|
+
# creation_time_after: Time.now,
|
24777
|
+
# creation_time_before: Time.now,
|
24778
|
+
# last_modified_time_after: Time.now,
|
24779
|
+
# last_modified_time_before: Time.now,
|
24780
|
+
# name_contains: "NameContains",
|
24781
|
+
# device_fleet_name_contains: "NameContains",
|
24782
|
+
# sort_by: "NAME", # accepts NAME, DEVICE_FLEET_NAME, CREATION_TIME, LAST_MODIFIED_TIME
|
24783
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
24784
|
+
# }
|
24785
|
+
#
|
24786
|
+
# @!attribute [rw] next_token
|
24787
|
+
# The response from the last list when returning a list large enough
|
24788
|
+
# to need tokening.
|
24789
|
+
# @return [String]
|
24790
|
+
#
|
24791
|
+
# @!attribute [rw] max_results
|
24792
|
+
# The maximum number of results to select (50 by default).
|
24793
|
+
# @return [Integer]
|
24794
|
+
#
|
24795
|
+
# @!attribute [rw] creation_time_after
|
24796
|
+
# Selects edge deployment plans created after this time.
|
24797
|
+
# @return [Time]
|
24798
|
+
#
|
24799
|
+
# @!attribute [rw] creation_time_before
|
24800
|
+
# Selects edge deployment plans created before this time.
|
24801
|
+
# @return [Time]
|
24802
|
+
#
|
24803
|
+
# @!attribute [rw] last_modified_time_after
|
24804
|
+
# Selects edge deployment plans that were last updated after this
|
24805
|
+
# time.
|
24806
|
+
# @return [Time]
|
24807
|
+
#
|
24808
|
+
# @!attribute [rw] last_modified_time_before
|
24809
|
+
# Selects edge deployment plans that were last updated before this
|
24810
|
+
# time.
|
24811
|
+
# @return [Time]
|
24812
|
+
#
|
24813
|
+
# @!attribute [rw] name_contains
|
24814
|
+
# Selects edge deployment plans with names containing this name.
|
24815
|
+
# @return [String]
|
24816
|
+
#
|
24817
|
+
# @!attribute [rw] device_fleet_name_contains
|
24818
|
+
# Selects edge deployment plans with a device fleet name containing
|
24819
|
+
# this name.
|
24820
|
+
# @return [String]
|
24821
|
+
#
|
24822
|
+
# @!attribute [rw] sort_by
|
24823
|
+
# The column by which to sort the edge deployment plans. Can be one of
|
24824
|
+
# `NAME`, `DEVICEFLEETNAME`, `CREATIONTIME`, `LASTMODIFIEDTIME`.
|
24825
|
+
# @return [String]
|
24826
|
+
#
|
24827
|
+
# @!attribute [rw] sort_order
|
24828
|
+
# The direction of the sorting (ascending or descending).
|
24829
|
+
# @return [String]
|
24830
|
+
#
|
24831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlansRequest AWS API Documentation
|
24832
|
+
#
|
24833
|
+
class ListEdgeDeploymentPlansRequest < Struct.new(
|
24834
|
+
:next_token,
|
24835
|
+
:max_results,
|
24836
|
+
:creation_time_after,
|
24837
|
+
:creation_time_before,
|
24838
|
+
:last_modified_time_after,
|
24839
|
+
:last_modified_time_before,
|
24840
|
+
:name_contains,
|
24841
|
+
:device_fleet_name_contains,
|
24842
|
+
:sort_by,
|
24843
|
+
:sort_order)
|
24844
|
+
SENSITIVE = []
|
24845
|
+
include Aws::Structure
|
24846
|
+
end
|
24847
|
+
|
24848
|
+
# @!attribute [rw] edge_deployment_plan_summaries
|
24849
|
+
# List of summaries of edge deployment plans.
|
24850
|
+
# @return [Array<Types::EdgeDeploymentPlanSummary>]
|
24851
|
+
#
|
24852
|
+
# @!attribute [rw] next_token
|
24853
|
+
# The token to use when calling the next page of results.
|
24854
|
+
# @return [String]
|
24855
|
+
#
|
24856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlansResponse AWS API Documentation
|
24857
|
+
#
|
24858
|
+
class ListEdgeDeploymentPlansResponse < Struct.new(
|
24859
|
+
:edge_deployment_plan_summaries,
|
24860
|
+
:next_token)
|
24861
|
+
SENSITIVE = []
|
24862
|
+
include Aws::Structure
|
24863
|
+
end
|
24864
|
+
|
24197
24865
|
# @note When making an API call, you may pass ListEdgePackagingJobsRequest
|
24198
24866
|
# data as a hash:
|
24199
24867
|
#
|
@@ -26942,6 +27610,67 @@ module Aws::SageMaker
|
|
26942
27610
|
include Aws::Structure
|
26943
27611
|
end
|
26944
27612
|
|
27613
|
+
# @note When making an API call, you may pass ListStageDevicesRequest
|
27614
|
+
# data as a hash:
|
27615
|
+
#
|
27616
|
+
# {
|
27617
|
+
# next_token: "NextToken",
|
27618
|
+
# max_results: 1,
|
27619
|
+
# edge_deployment_plan_name: "EntityName", # required
|
27620
|
+
# exclude_devices_deployed_in_other_stage: false,
|
27621
|
+
# stage_name: "EntityName", # required
|
27622
|
+
# }
|
27623
|
+
#
|
27624
|
+
# @!attribute [rw] next_token
|
27625
|
+
# The response from the last list when returning a list large enough
|
27626
|
+
# to neeed tokening.
|
27627
|
+
# @return [String]
|
27628
|
+
#
|
27629
|
+
# @!attribute [rw] max_results
|
27630
|
+
# The maximum number of requests to select.
|
27631
|
+
# @return [Integer]
|
27632
|
+
#
|
27633
|
+
# @!attribute [rw] edge_deployment_plan_name
|
27634
|
+
# The name of the edge deployment plan.
|
27635
|
+
# @return [String]
|
27636
|
+
#
|
27637
|
+
# @!attribute [rw] exclude_devices_deployed_in_other_stage
|
27638
|
+
# Toggle for excluding devices deployed in other stages.
|
27639
|
+
# @return [Boolean]
|
27640
|
+
#
|
27641
|
+
# @!attribute [rw] stage_name
|
27642
|
+
# The name of the stage in the deployment.
|
27643
|
+
# @return [String]
|
27644
|
+
#
|
27645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevicesRequest AWS API Documentation
|
27646
|
+
#
|
27647
|
+
class ListStageDevicesRequest < Struct.new(
|
27648
|
+
:next_token,
|
27649
|
+
:max_results,
|
27650
|
+
:edge_deployment_plan_name,
|
27651
|
+
:exclude_devices_deployed_in_other_stage,
|
27652
|
+
:stage_name)
|
27653
|
+
SENSITIVE = []
|
27654
|
+
include Aws::Structure
|
27655
|
+
end
|
27656
|
+
|
27657
|
+
# @!attribute [rw] device_deployment_summaries
|
27658
|
+
# List of summaries of devices allocated to the stage.
|
27659
|
+
# @return [Array<Types::DeviceDeploymentSummary>]
|
27660
|
+
#
|
27661
|
+
# @!attribute [rw] next_token
|
27662
|
+
# The token to use when calling the next page of results.
|
27663
|
+
# @return [String]
|
27664
|
+
#
|
27665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevicesResponse AWS API Documentation
|
27666
|
+
#
|
27667
|
+
class ListStageDevicesResponse < Struct.new(
|
27668
|
+
:device_deployment_summaries,
|
27669
|
+
:next_token)
|
27670
|
+
SENSITIVE = []
|
27671
|
+
include Aws::Structure
|
27672
|
+
end
|
27673
|
+
|
26945
27674
|
# @note When making an API call, you may pass ListStudioLifecycleConfigsRequest
|
26946
27675
|
# data as a hash:
|
26947
27676
|
#
|
@@ -36237,6 +36966,31 @@ module Aws::SageMaker
|
|
36237
36966
|
include Aws::Structure
|
36238
36967
|
end
|
36239
36968
|
|
36969
|
+
# @note When making an API call, you may pass StartEdgeDeploymentStageRequest
|
36970
|
+
# data as a hash:
|
36971
|
+
#
|
36972
|
+
# {
|
36973
|
+
# edge_deployment_plan_name: "EntityName", # required
|
36974
|
+
# stage_name: "EntityName", # required
|
36975
|
+
# }
|
36976
|
+
#
|
36977
|
+
# @!attribute [rw] edge_deployment_plan_name
|
36978
|
+
# The name of the edge deployment plan to start.
|
36979
|
+
# @return [String]
|
36980
|
+
#
|
36981
|
+
# @!attribute [rw] stage_name
|
36982
|
+
# The name of the stage to start.
|
36983
|
+
# @return [String]
|
36984
|
+
#
|
36985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartEdgeDeploymentStageRequest AWS API Documentation
|
36986
|
+
#
|
36987
|
+
class StartEdgeDeploymentStageRequest < Struct.new(
|
36988
|
+
:edge_deployment_plan_name,
|
36989
|
+
:stage_name)
|
36990
|
+
SENSITIVE = []
|
36991
|
+
include Aws::Structure
|
36992
|
+
end
|
36993
|
+
|
36240
36994
|
# @note When making an API call, you may pass StartMonitoringScheduleRequest
|
36241
36995
|
# data as a hash:
|
36242
36996
|
#
|
@@ -36387,6 +37141,31 @@ module Aws::SageMaker
|
|
36387
37141
|
include Aws::Structure
|
36388
37142
|
end
|
36389
37143
|
|
37144
|
+
# @note When making an API call, you may pass StopEdgeDeploymentStageRequest
|
37145
|
+
# data as a hash:
|
37146
|
+
#
|
37147
|
+
# {
|
37148
|
+
# edge_deployment_plan_name: "EntityName", # required
|
37149
|
+
# stage_name: "EntityName", # required
|
37150
|
+
# }
|
37151
|
+
#
|
37152
|
+
# @!attribute [rw] edge_deployment_plan_name
|
37153
|
+
# The name of the edge deployment plan to stop.
|
37154
|
+
# @return [String]
|
37155
|
+
#
|
37156
|
+
# @!attribute [rw] stage_name
|
37157
|
+
# The name of the stage to stop.
|
37158
|
+
# @return [String]
|
37159
|
+
#
|
37160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgeDeploymentStageRequest AWS API Documentation
|
37161
|
+
#
|
37162
|
+
class StopEdgeDeploymentStageRequest < Struct.new(
|
37163
|
+
:edge_deployment_plan_name,
|
37164
|
+
:stage_name)
|
37165
|
+
SENSITIVE = []
|
37166
|
+
include Aws::Structure
|
37167
|
+
end
|
37168
|
+
|
36390
37169
|
# @note When making an API call, you may pass StopEdgePackagingJobRequest
|
36391
37170
|
# data as a hash:
|
36392
37171
|
#
|