aws-sdk-sagemaker 1.88.0 → 1.89.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.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +36 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +16 -0
- data/lib/aws-sdk-sagemaker/types.rb +115 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 585119d70bef179eac86bf49679eaa065a2835482dd9df729ec362c5c0541a2d
|
4
|
+
data.tar.gz: 5c73d7f43a3fe4c233d986446a1b4db9cea1c08c4d02b26c5a0569459cabc8da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd41a1fbd2149d12e0341d284c9b57a88355cc06974b0170c7910a2c73ad1944e01586acaa22a817f77f0d27efb111327131f284c44700a778e8ecbb45320271
|
7
|
+
data.tar.gz: 37a5085343513640ed8dc34aaffee5e86f7eb97b989cb471e6258b12071fbcc0b7042e6b61ed7b0088825f8ae10de4bee0c815400b89dcfd7f36577f3818d78f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.89.0 (2021-06-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Using SageMaker Edge Manager with AWS IoT Greengrass v2 simplifies accessing, maintaining, and deploying models to your devices. You can now create deployable IoT Greengrass components during edge packaging jobs. You can choose to create a device fleet with or without creating an AWS IoT role alias.
|
8
|
+
|
4
9
|
1.88.0 (2021-06-07)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.89.0
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -1612,6 +1612,14 @@ module Aws::SageMaker
|
|
1612
1612
|
# @option params [Array<Types::Tag>] :tags
|
1613
1613
|
# Creates tags for the specified fleet.
|
1614
1614
|
#
|
1615
|
+
# @option params [Boolean] :enable_iot_role_alias
|
1616
|
+
# Whether to create an AWS IoT Role Alias during device fleet creation.
|
1617
|
+
# The name of the role alias generated will match this pattern:
|
1618
|
+
# "SageMakerEdge-\\\{DeviceFleetName\\}".
|
1619
|
+
#
|
1620
|
+
# For example, if your device fleet is called "demo-fleet", the name
|
1621
|
+
# of the role alias will be "SageMakerEdge-demo-fleet".
|
1622
|
+
#
|
1615
1623
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1616
1624
|
#
|
1617
1625
|
# @example Request syntax with placeholder values
|
@@ -1623,6 +1631,8 @@ module Aws::SageMaker
|
|
1623
1631
|
# output_config: { # required
|
1624
1632
|
# s3_output_location: "S3Uri", # required
|
1625
1633
|
# kms_key_id: "KmsKeyId",
|
1634
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
1635
|
+
# preset_deployment_config: "String",
|
1626
1636
|
# },
|
1627
1637
|
# tags: [
|
1628
1638
|
# {
|
@@ -1630,6 +1640,7 @@ module Aws::SageMaker
|
|
1630
1640
|
# value: "TagValue", # required
|
1631
1641
|
# },
|
1632
1642
|
# ],
|
1643
|
+
# enable_iot_role_alias: false,
|
1633
1644
|
# })
|
1634
1645
|
#
|
1635
1646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDeviceFleet AWS API Documentation
|
@@ -1860,6 +1871,8 @@ module Aws::SageMaker
|
|
1860
1871
|
# output_config: { # required
|
1861
1872
|
# s3_output_location: "S3Uri", # required
|
1862
1873
|
# kms_key_id: "KmsKeyId",
|
1874
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
1875
|
+
# preset_deployment_config: "String",
|
1863
1876
|
# },
|
1864
1877
|
# resource_key: "KmsKeyId",
|
1865
1878
|
# tags: [
|
@@ -7986,6 +7999,8 @@ module Aws::SageMaker
|
|
7986
7999
|
# resp.device_fleet_arn #=> String
|
7987
8000
|
# resp.output_config.s3_output_location #=> String
|
7988
8001
|
# resp.output_config.kms_key_id #=> String
|
8002
|
+
# resp.output_config.preset_deployment_type #=> String, one of "GreengrassV2Component"
|
8003
|
+
# resp.output_config.preset_deployment_config #=> String
|
7989
8004
|
# resp.description #=> String
|
7990
8005
|
# resp.creation_time #=> Time
|
7991
8006
|
# resp.last_modified_time #=> Time
|
@@ -8101,6 +8116,7 @@ module Aws::SageMaker
|
|
8101
8116
|
# * {Types::DescribeEdgePackagingJobResponse#last_modified_time #last_modified_time} => Time
|
8102
8117
|
# * {Types::DescribeEdgePackagingJobResponse#model_artifact #model_artifact} => String
|
8103
8118
|
# * {Types::DescribeEdgePackagingJobResponse#model_signature #model_signature} => String
|
8119
|
+
# * {Types::DescribeEdgePackagingJobResponse#preset_deployment_output #preset_deployment_output} => Types::EdgePresetDeploymentOutput
|
8104
8120
|
#
|
8105
8121
|
# @example Request syntax with placeholder values
|
8106
8122
|
#
|
@@ -8118,6 +8134,8 @@ module Aws::SageMaker
|
|
8118
8134
|
# resp.role_arn #=> String
|
8119
8135
|
# resp.output_config.s3_output_location #=> String
|
8120
8136
|
# resp.output_config.kms_key_id #=> String
|
8137
|
+
# resp.output_config.preset_deployment_type #=> String, one of "GreengrassV2Component"
|
8138
|
+
# resp.output_config.preset_deployment_config #=> String
|
8121
8139
|
# resp.resource_key #=> String
|
8122
8140
|
# resp.edge_packaging_job_status #=> String, one of "STARTING", "INPROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
|
8123
8141
|
# resp.edge_packaging_job_status_message #=> String
|
@@ -8125,6 +8143,10 @@ module Aws::SageMaker
|
|
8125
8143
|
# resp.last_modified_time #=> Time
|
8126
8144
|
# resp.model_artifact #=> String
|
8127
8145
|
# resp.model_signature #=> String
|
8146
|
+
# resp.preset_deployment_output.type #=> String, one of "GreengrassV2Component"
|
8147
|
+
# resp.preset_deployment_output.artifact #=> String
|
8148
|
+
# resp.preset_deployment_output.status #=> String, one of "COMPLETED", "FAILED"
|
8149
|
+
# resp.preset_deployment_output.status_message #=> String
|
8128
8150
|
#
|
8129
8151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgePackagingJob AWS API Documentation
|
8130
8152
|
#
|
@@ -10622,6 +10644,8 @@ module Aws::SageMaker
|
|
10622
10644
|
# resp.device_fleet_name #=> String
|
10623
10645
|
# resp.output_config.s3_output_location #=> String
|
10624
10646
|
# resp.output_config.kms_key_id #=> String
|
10647
|
+
# resp.output_config.preset_deployment_type #=> String, one of "GreengrassV2Component"
|
10648
|
+
# resp.output_config.preset_deployment_config #=> String
|
10625
10649
|
# resp.description #=> String
|
10626
10650
|
# resp.report_generated #=> Time
|
10627
10651
|
# resp.device_stats.connected_device_count #=> Integer
|
@@ -16318,6 +16342,14 @@ module Aws::SageMaker
|
|
16318
16342
|
# @option params [required, Types::EdgeOutputConfig] :output_config
|
16319
16343
|
# Output configuration for storing sample data collected by the fleet.
|
16320
16344
|
#
|
16345
|
+
# @option params [Boolean] :enable_iot_role_alias
|
16346
|
+
# Whether to create an AWS IoT Role Alias during device fleet creation.
|
16347
|
+
# The name of the role alias generated will match this pattern:
|
16348
|
+
# "SageMakerEdge-\\\{DeviceFleetName\\}".
|
16349
|
+
#
|
16350
|
+
# For example, if your device fleet is called "demo-fleet", the name
|
16351
|
+
# of the role alias will be "SageMakerEdge-demo-fleet".
|
16352
|
+
#
|
16321
16353
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16322
16354
|
#
|
16323
16355
|
# @example Request syntax with placeholder values
|
@@ -16329,7 +16361,10 @@ module Aws::SageMaker
|
|
16329
16361
|
# output_config: { # required
|
16330
16362
|
# s3_output_location: "S3Uri", # required
|
16331
16363
|
# kms_key_id: "KmsKeyId",
|
16364
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
16365
|
+
# preset_deployment_config: "String",
|
16332
16366
|
# },
|
16367
|
+
# enable_iot_role_alias: false,
|
16333
16368
|
# })
|
16334
16369
|
#
|
16335
16370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDeviceFleet AWS API Documentation
|
@@ -17550,7 +17585,7 @@ module Aws::SageMaker
|
|
17550
17585
|
params: params,
|
17551
17586
|
config: config)
|
17552
17587
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
17553
|
-
context[:gem_version] = '1.
|
17588
|
+
context[:gem_version] = '1.89.0'
|
17554
17589
|
Seahorse::Client::Request.new(handlers, context)
|
17555
17590
|
end
|
17556
17591
|
|
@@ -523,9 +523,14 @@ module Aws::SageMaker
|
|
523
523
|
EdgePackagingJobStatus = Shapes::StringShape.new(name: 'EdgePackagingJobStatus')
|
524
524
|
EdgePackagingJobSummaries = Shapes::ListShape.new(name: 'EdgePackagingJobSummaries')
|
525
525
|
EdgePackagingJobSummary = Shapes::StructureShape.new(name: 'EdgePackagingJobSummary')
|
526
|
+
EdgePresetDeploymentArtifact = Shapes::StringShape.new(name: 'EdgePresetDeploymentArtifact')
|
527
|
+
EdgePresetDeploymentOutput = Shapes::StructureShape.new(name: 'EdgePresetDeploymentOutput')
|
528
|
+
EdgePresetDeploymentStatus = Shapes::StringShape.new(name: 'EdgePresetDeploymentStatus')
|
529
|
+
EdgePresetDeploymentType = Shapes::StringShape.new(name: 'EdgePresetDeploymentType')
|
526
530
|
EdgeVersion = Shapes::StringShape.new(name: 'EdgeVersion')
|
527
531
|
EfsUid = Shapes::StringShape.new(name: 'EfsUid')
|
528
532
|
EnableCapture = Shapes::BooleanShape.new(name: 'EnableCapture')
|
533
|
+
EnableIotRoleAlias = Shapes::BooleanShape.new(name: 'EnableIotRoleAlias')
|
529
534
|
EnableSagemakerServicecatalogPortfolioInput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioInput')
|
530
535
|
EnableSagemakerServicecatalogPortfolioOutput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioOutput')
|
531
536
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
@@ -1973,6 +1978,7 @@ module Aws::SageMaker
|
|
1973
1978
|
CreateDeviceFleetRequest.add_member(:description, Shapes::ShapeRef.new(shape: DeviceFleetDescription, location_name: "Description"))
|
1974
1979
|
CreateDeviceFleetRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: EdgeOutputConfig, required: true, location_name: "OutputConfig"))
|
1975
1980
|
CreateDeviceFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1981
|
+
CreateDeviceFleetRequest.add_member(:enable_iot_role_alias, Shapes::ShapeRef.new(shape: EnableIotRoleAlias, location_name: "EnableIotRoleAlias"))
|
1976
1982
|
CreateDeviceFleetRequest.struct_class = Types::CreateDeviceFleetRequest
|
1977
1983
|
|
1978
1984
|
CreateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
@@ -2874,6 +2880,7 @@ module Aws::SageMaker
|
|
2874
2880
|
DescribeEdgePackagingJobResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
2875
2881
|
DescribeEdgePackagingJobResponse.add_member(:model_artifact, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ModelArtifact"))
|
2876
2882
|
DescribeEdgePackagingJobResponse.add_member(:model_signature, Shapes::ShapeRef.new(shape: String, location_name: "ModelSignature"))
|
2883
|
+
DescribeEdgePackagingJobResponse.add_member(:preset_deployment_output, Shapes::ShapeRef.new(shape: EdgePresetDeploymentOutput, location_name: "PresetDeploymentOutput"))
|
2877
2884
|
DescribeEdgePackagingJobResponse.struct_class = Types::DescribeEdgePackagingJobResponse
|
2878
2885
|
|
2879
2886
|
DescribeEndpointConfigInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
@@ -3491,6 +3498,8 @@ module Aws::SageMaker
|
|
3491
3498
|
|
3492
3499
|
EdgeOutputConfig.add_member(:s3_output_location, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3OutputLocation"))
|
3493
3500
|
EdgeOutputConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
3501
|
+
EdgeOutputConfig.add_member(:preset_deployment_type, Shapes::ShapeRef.new(shape: EdgePresetDeploymentType, location_name: "PresetDeploymentType"))
|
3502
|
+
EdgeOutputConfig.add_member(:preset_deployment_config, Shapes::ShapeRef.new(shape: String, location_name: "PresetDeploymentConfig"))
|
3494
3503
|
EdgeOutputConfig.struct_class = Types::EdgeOutputConfig
|
3495
3504
|
|
3496
3505
|
EdgePackagingJobSummaries.member = Shapes::ShapeRef.new(shape: EdgePackagingJobSummary)
|
@@ -3505,6 +3514,12 @@ module Aws::SageMaker
|
|
3505
3514
|
EdgePackagingJobSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
3506
3515
|
EdgePackagingJobSummary.struct_class = Types::EdgePackagingJobSummary
|
3507
3516
|
|
3517
|
+
EdgePresetDeploymentOutput.add_member(:type, Shapes::ShapeRef.new(shape: EdgePresetDeploymentType, required: true, location_name: "Type"))
|
3518
|
+
EdgePresetDeploymentOutput.add_member(:artifact, Shapes::ShapeRef.new(shape: EdgePresetDeploymentArtifact, location_name: "Artifact"))
|
3519
|
+
EdgePresetDeploymentOutput.add_member(:status, Shapes::ShapeRef.new(shape: EdgePresetDeploymentStatus, location_name: "Status"))
|
3520
|
+
EdgePresetDeploymentOutput.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "StatusMessage"))
|
3521
|
+
EdgePresetDeploymentOutput.struct_class = Types::EdgePresetDeploymentOutput
|
3522
|
+
|
3508
3523
|
EnableSagemakerServicecatalogPortfolioInput.struct_class = Types::EnableSagemakerServicecatalogPortfolioInput
|
3509
3524
|
|
3510
3525
|
EnableSagemakerServicecatalogPortfolioOutput.struct_class = Types::EnableSagemakerServicecatalogPortfolioOutput
|
@@ -6069,6 +6084,7 @@ module Aws::SageMaker
|
|
6069
6084
|
UpdateDeviceFleetRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
6070
6085
|
UpdateDeviceFleetRequest.add_member(:description, Shapes::ShapeRef.new(shape: DeviceFleetDescription, location_name: "Description"))
|
6071
6086
|
UpdateDeviceFleetRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: EdgeOutputConfig, required: true, location_name: "OutputConfig"))
|
6087
|
+
UpdateDeviceFleetRequest.add_member(:enable_iot_role_alias, Shapes::ShapeRef.new(shape: EnableIotRoleAlias, location_name: "EnableIotRoleAlias"))
|
6072
6088
|
UpdateDeviceFleetRequest.struct_class = Types::UpdateDeviceFleetRequest
|
6073
6089
|
|
6074
6090
|
UpdateDevicesRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
@@ -4399,6 +4399,8 @@ module Aws::SageMaker
|
|
4399
4399
|
# output_config: { # required
|
4400
4400
|
# s3_output_location: "S3Uri", # required
|
4401
4401
|
# kms_key_id: "KmsKeyId",
|
4402
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
4403
|
+
# preset_deployment_config: "String",
|
4402
4404
|
# },
|
4403
4405
|
# tags: [
|
4404
4406
|
# {
|
@@ -4406,6 +4408,7 @@ module Aws::SageMaker
|
|
4406
4408
|
# value: "TagValue", # required
|
4407
4409
|
# },
|
4408
4410
|
# ],
|
4411
|
+
# enable_iot_role_alias: false,
|
4409
4412
|
# }
|
4410
4413
|
#
|
4411
4414
|
# @!attribute [rw] device_fleet_name
|
@@ -4430,6 +4433,15 @@ module Aws::SageMaker
|
|
4430
4433
|
# Creates tags for the specified fleet.
|
4431
4434
|
# @return [Array<Types::Tag>]
|
4432
4435
|
#
|
4436
|
+
# @!attribute [rw] enable_iot_role_alias
|
4437
|
+
# Whether to create an AWS IoT Role Alias during device fleet
|
4438
|
+
# creation. The name of the role alias generated will match this
|
4439
|
+
# pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
4440
|
+
#
|
4441
|
+
# For example, if your device fleet is called "demo-fleet", the name
|
4442
|
+
# of the role alias will be "SageMakerEdge-demo-fleet".
|
4443
|
+
# @return [Boolean]
|
4444
|
+
#
|
4433
4445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDeviceFleetRequest AWS API Documentation
|
4434
4446
|
#
|
4435
4447
|
class CreateDeviceFleetRequest < Struct.new(
|
@@ -4437,7 +4449,8 @@ module Aws::SageMaker
|
|
4437
4449
|
:role_arn,
|
4438
4450
|
:description,
|
4439
4451
|
:output_config,
|
4440
|
-
:tags
|
4452
|
+
:tags,
|
4453
|
+
:enable_iot_role_alias)
|
4441
4454
|
SENSITIVE = []
|
4442
4455
|
include Aws::Structure
|
4443
4456
|
end
|
@@ -4601,6 +4614,8 @@ module Aws::SageMaker
|
|
4601
4614
|
# output_config: { # required
|
4602
4615
|
# s3_output_location: "S3Uri", # required
|
4603
4616
|
# kms_key_id: "KmsKeyId",
|
4617
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
4618
|
+
# preset_deployment_config: "String",
|
4604
4619
|
# },
|
4605
4620
|
# resource_key: "KmsKeyId",
|
4606
4621
|
# tags: [
|
@@ -11784,6 +11799,10 @@ module Aws::SageMaker
|
|
11784
11799
|
# The signature document of files in the model artifact.
|
11785
11800
|
# @return [String]
|
11786
11801
|
#
|
11802
|
+
# @!attribute [rw] preset_deployment_output
|
11803
|
+
# The output of a SageMaker Edge Manager deployable resource.
|
11804
|
+
# @return [Types::EdgePresetDeploymentOutput]
|
11805
|
+
#
|
11787
11806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgePackagingJobResponse AWS API Documentation
|
11788
11807
|
#
|
11789
11808
|
class DescribeEdgePackagingJobResponse < Struct.new(
|
@@ -11800,7 +11819,8 @@ module Aws::SageMaker
|
|
11800
11819
|
:creation_time,
|
11801
11820
|
:last_modified_time,
|
11802
11821
|
:model_artifact,
|
11803
|
-
:model_signature
|
11822
|
+
:model_signature,
|
11823
|
+
:preset_deployment_output)
|
11804
11824
|
SENSITIVE = []
|
11805
11825
|
include Aws::Structure
|
11806
11826
|
end
|
@@ -15330,6 +15350,8 @@ module Aws::SageMaker
|
|
15330
15350
|
# {
|
15331
15351
|
# s3_output_location: "S3Uri", # required
|
15332
15352
|
# kms_key_id: "KmsKeyId",
|
15353
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
15354
|
+
# preset_deployment_config: "String",
|
15333
15355
|
# }
|
15334
15356
|
#
|
15335
15357
|
# @!attribute [rw] s3_output_location
|
@@ -15343,11 +15365,57 @@ module Aws::SageMaker
|
|
15343
15365
|
# KMS key for Amazon S3 for your role's account.
|
15344
15366
|
# @return [String]
|
15345
15367
|
#
|
15368
|
+
# @!attribute [rw] preset_deployment_type
|
15369
|
+
# The deployment type SageMaker Edge Manager will create. Currently
|
15370
|
+
# only supports AWS IoT Greengrass Version 2 components.
|
15371
|
+
# @return [String]
|
15372
|
+
#
|
15373
|
+
# @!attribute [rw] preset_deployment_config
|
15374
|
+
# The configuration used to create deployment artifacts. Specify
|
15375
|
+
# configuration options with a JSON string. The available
|
15376
|
+
# configuration options for each type are:
|
15377
|
+
#
|
15378
|
+
# * `ComponentName` (optional) - Name of the GreenGrass V2 component.
|
15379
|
+
# If not specified, the default name generated consists of
|
15380
|
+
# "SagemakerEdgeManager" and the name of your SageMaker Edge
|
15381
|
+
# Manager packaging job.
|
15382
|
+
#
|
15383
|
+
# * `ComponentDescription` (optional) - Description of the component.
|
15384
|
+
#
|
15385
|
+
# * `ComponentVersion` (optional) - The version of the component.
|
15386
|
+
#
|
15387
|
+
# <note markdown="1"> AWS IoT Greengrass uses semantic versions for components. Semantic
|
15388
|
+
# versions follow a<i> major.minor.patch</i> number system. For
|
15389
|
+
# example, version 1.0.0 represents the first major release for a
|
15390
|
+
# component. For more information, see the [semantic version
|
15391
|
+
# specification][1].
|
15392
|
+
#
|
15393
|
+
# </note>
|
15394
|
+
#
|
15395
|
+
# * `PlatformOS` (optional) - The name of the operating system for the
|
15396
|
+
# platform. Supported platforms include Windows and Linux.
|
15397
|
+
#
|
15398
|
+
# * `PlatformArchitecture` (optional) - The processor architecture for
|
15399
|
+
# the platform.
|
15400
|
+
#
|
15401
|
+
# Supported architectures Windows include: Windows32\_x86,
|
15402
|
+
# Windows64\_x64.
|
15403
|
+
#
|
15404
|
+
# Supported architectures for Linux include: Linux x86\_64, Linux
|
15405
|
+
# ARMV8.
|
15406
|
+
#
|
15407
|
+
#
|
15408
|
+
#
|
15409
|
+
# [1]: https://semver.org/
|
15410
|
+
# @return [String]
|
15411
|
+
#
|
15346
15412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeOutputConfig AWS API Documentation
|
15347
15413
|
#
|
15348
15414
|
class EdgeOutputConfig < Struct.new(
|
15349
15415
|
:s3_output_location,
|
15350
|
-
:kms_key_id
|
15416
|
+
:kms_key_id,
|
15417
|
+
:preset_deployment_type,
|
15418
|
+
:preset_deployment_config)
|
15351
15419
|
SENSITIVE = []
|
15352
15420
|
include Aws::Structure
|
15353
15421
|
end
|
@@ -15401,6 +15469,36 @@ module Aws::SageMaker
|
|
15401
15469
|
include Aws::Structure
|
15402
15470
|
end
|
15403
15471
|
|
15472
|
+
# The output of a SageMaker Edge Manager deployable resource.
|
15473
|
+
#
|
15474
|
+
# @!attribute [rw] type
|
15475
|
+
# The deployment type created by SageMaker Edge Manager. Currently
|
15476
|
+
# only supports AWS IoT Greengrass Version 2 components.
|
15477
|
+
# @return [String]
|
15478
|
+
#
|
15479
|
+
# @!attribute [rw] artifact
|
15480
|
+
# The Amazon Resource Name (ARN) of the generated deployable resource.
|
15481
|
+
# @return [String]
|
15482
|
+
#
|
15483
|
+
# @!attribute [rw] status
|
15484
|
+
# The status of the deployable resource.
|
15485
|
+
# @return [String]
|
15486
|
+
#
|
15487
|
+
# @!attribute [rw] status_message
|
15488
|
+
# Returns a message describing the status of the deployed resource.
|
15489
|
+
# @return [String]
|
15490
|
+
#
|
15491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgePresetDeploymentOutput AWS API Documentation
|
15492
|
+
#
|
15493
|
+
class EdgePresetDeploymentOutput < Struct.new(
|
15494
|
+
:type,
|
15495
|
+
:artifact,
|
15496
|
+
:status,
|
15497
|
+
:status_message)
|
15498
|
+
SENSITIVE = []
|
15499
|
+
include Aws::Structure
|
15500
|
+
end
|
15501
|
+
|
15404
15502
|
# @api private
|
15405
15503
|
#
|
15406
15504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnableSagemakerServicecatalogPortfolioInput AWS API Documentation
|
@@ -34114,7 +34212,10 @@ module Aws::SageMaker
|
|
34114
34212
|
# output_config: { # required
|
34115
34213
|
# s3_output_location: "S3Uri", # required
|
34116
34214
|
# kms_key_id: "KmsKeyId",
|
34215
|
+
# preset_deployment_type: "GreengrassV2Component", # accepts GreengrassV2Component
|
34216
|
+
# preset_deployment_config: "String",
|
34117
34217
|
# },
|
34218
|
+
# enable_iot_role_alias: false,
|
34118
34219
|
# }
|
34119
34220
|
#
|
34120
34221
|
# @!attribute [rw] device_fleet_name
|
@@ -34133,13 +34234,23 @@ module Aws::SageMaker
|
|
34133
34234
|
# Output configuration for storing sample data collected by the fleet.
|
34134
34235
|
# @return [Types::EdgeOutputConfig]
|
34135
34236
|
#
|
34237
|
+
# @!attribute [rw] enable_iot_role_alias
|
34238
|
+
# Whether to create an AWS IoT Role Alias during device fleet
|
34239
|
+
# creation. The name of the role alias generated will match this
|
34240
|
+
# pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
34241
|
+
#
|
34242
|
+
# For example, if your device fleet is called "demo-fleet", the name
|
34243
|
+
# of the role alias will be "SageMakerEdge-demo-fleet".
|
34244
|
+
# @return [Boolean]
|
34245
|
+
#
|
34136
34246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDeviceFleetRequest AWS API Documentation
|
34137
34247
|
#
|
34138
34248
|
class UpdateDeviceFleetRequest < Struct.new(
|
34139
34249
|
:device_fleet_name,
|
34140
34250
|
:role_arn,
|
34141
34251
|
:description,
|
34142
|
-
:output_config
|
34252
|
+
:output_config,
|
34253
|
+
:enable_iot_role_alias)
|
34143
34254
|
SENSITIVE = []
|
34144
34255
|
include Aws::Structure
|
34145
34256
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.89.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|