aws-sdk-sagemaker 1.131.0 → 1.134.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1026,7 +1026,10 @@ module Aws::SageMaker
1026
1026
  # A list of tags to apply to the AppImageConfig.
1027
1027
  #
1028
1028
  # @option params [Types::KernelGatewayImageConfig] :kernel_gateway_image_config
1029
- # The KernelGatewayImageConfig.
1029
+ # The KernelGatewayImageConfig. You can only specify one image kernel in
1030
+ # the AppImageConfig API. This kernel will be shown to users before the
1031
+ # image starts. Once the image runs, all kernels are visible in
1032
+ # JupyterLab.
1030
1033
  #
1031
1034
  # @return [Types::CreateAppImageConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1032
1035
  #
@@ -2000,6 +2003,114 @@ module Aws::SageMaker
2000
2003
  req.send_request(options)
2001
2004
  end
2002
2005
 
2006
+ # Creates an edge deployment plan, consisting of multiple stages. Each
2007
+ # stage may have a different deployment configuration and devices.
2008
+ #
2009
+ # @option params [required, String] :edge_deployment_plan_name
2010
+ # The name of the edge deployment plan.
2011
+ #
2012
+ # @option params [required, Array<Types::EdgeDeploymentModelConfig>] :model_configs
2013
+ # List of models associated with the edge deployment plan.
2014
+ #
2015
+ # @option params [required, String] :device_fleet_name
2016
+ # The device fleet used for this edge deployment plan.
2017
+ #
2018
+ # @option params [Array<Types::DeploymentStage>] :stages
2019
+ # List of stages of the edge deployment plan. The number of stages is
2020
+ # limited to 10 per deployment.
2021
+ #
2022
+ # @option params [Array<Types::Tag>] :tags
2023
+ # List of tags with which to tag the edge deployment plan.
2024
+ #
2025
+ # @return [Types::CreateEdgeDeploymentPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2026
+ #
2027
+ # * {Types::CreateEdgeDeploymentPlanResponse#edge_deployment_plan_arn #edge_deployment_plan_arn} => String
2028
+ #
2029
+ # @example Request syntax with placeholder values
2030
+ #
2031
+ # resp = client.create_edge_deployment_plan({
2032
+ # edge_deployment_plan_name: "EntityName", # required
2033
+ # model_configs: [ # required
2034
+ # {
2035
+ # model_handle: "EntityName", # required
2036
+ # edge_packaging_job_name: "EntityName", # required
2037
+ # },
2038
+ # ],
2039
+ # device_fleet_name: "EntityName", # required
2040
+ # stages: [
2041
+ # {
2042
+ # stage_name: "EntityName", # required
2043
+ # device_selection_config: { # required
2044
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
2045
+ # percentage: 1,
2046
+ # device_names: ["DeviceName"],
2047
+ # device_name_contains: "DeviceName",
2048
+ # },
2049
+ # deployment_config: {
2050
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
2051
+ # },
2052
+ # },
2053
+ # ],
2054
+ # tags: [
2055
+ # {
2056
+ # key: "TagKey", # required
2057
+ # value: "TagValue", # required
2058
+ # },
2059
+ # ],
2060
+ # })
2061
+ #
2062
+ # @example Response structure
2063
+ #
2064
+ # resp.edge_deployment_plan_arn #=> String
2065
+ #
2066
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlan AWS API Documentation
2067
+ #
2068
+ # @overload create_edge_deployment_plan(params = {})
2069
+ # @param [Hash] params ({})
2070
+ def create_edge_deployment_plan(params = {}, options = {})
2071
+ req = build_request(:create_edge_deployment_plan, params)
2072
+ req.send_request(options)
2073
+ end
2074
+
2075
+ # Creates a new stage in an existing edge deployment plan.
2076
+ #
2077
+ # @option params [required, String] :edge_deployment_plan_name
2078
+ # The name of the edge deployment plan.
2079
+ #
2080
+ # @option params [required, Array<Types::DeploymentStage>] :stages
2081
+ # List of stages to be added to the edge deployment plan.
2082
+ #
2083
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2084
+ #
2085
+ # @example Request syntax with placeholder values
2086
+ #
2087
+ # resp = client.create_edge_deployment_stage({
2088
+ # edge_deployment_plan_name: "EntityName", # required
2089
+ # stages: [ # required
2090
+ # {
2091
+ # stage_name: "EntityName", # required
2092
+ # device_selection_config: { # required
2093
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
2094
+ # percentage: 1,
2095
+ # device_names: ["DeviceName"],
2096
+ # device_name_contains: "DeviceName",
2097
+ # },
2098
+ # deployment_config: {
2099
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
2100
+ # },
2101
+ # },
2102
+ # ],
2103
+ # })
2104
+ #
2105
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentStage AWS API Documentation
2106
+ #
2107
+ # @overload create_edge_deployment_stage(params = {})
2108
+ # @param [Hash] params ({})
2109
+ def create_edge_deployment_stage(params = {}, options = {})
2110
+ req = build_request(:create_edge_deployment_stage, params)
2111
+ req.send_request(options)
2112
+ end
2113
+
2003
2114
  # Starts a SageMaker Edge Manager model packaging job. Edge Manager will
2004
2115
  # use the model artifacts from the Amazon Simple Storage Service bucket
2005
2116
  # that you specify. After the model has been packaged, Amazon SageMaker
@@ -3017,7 +3128,7 @@ module Aws::SageMaker
3017
3128
  # kms_key_id: "KmsKeyId",
3018
3129
  # s3_output_path: "S3Uri", # required
3019
3130
  # },
3020
- # resource_config: { # required
3131
+ # resource_config: {
3021
3132
  # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3022
3133
  # instance_count: 1,
3023
3134
  # volume_size_in_gb: 1, # required
@@ -3044,6 +3155,20 @@ module Aws::SageMaker
3044
3155
  # retry_strategy: {
3045
3156
  # maximum_retry_attempts: 1, # required
3046
3157
  # },
3158
+ # hyper_parameter_tuning_resource_config: {
3159
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3160
+ # instance_count: 1,
3161
+ # volume_size_in_gb: 1,
3162
+ # volume_kms_key_id: "KmsKeyId",
3163
+ # allocation_strategy: "Prioritized", # accepts Prioritized
3164
+ # instance_configs: [
3165
+ # {
3166
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3167
+ # instance_count: 1, # required
3168
+ # volume_size_in_gb: 1, # required
3169
+ # },
3170
+ # ],
3171
+ # },
3047
3172
  # },
3048
3173
  # training_job_definitions: [
3049
3174
  # {
@@ -3126,7 +3251,7 @@ module Aws::SageMaker
3126
3251
  # kms_key_id: "KmsKeyId",
3127
3252
  # s3_output_path: "S3Uri", # required
3128
3253
  # },
3129
- # resource_config: { # required
3254
+ # resource_config: {
3130
3255
  # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3131
3256
  # instance_count: 1,
3132
3257
  # volume_size_in_gb: 1, # required
@@ -3153,6 +3278,20 @@ module Aws::SageMaker
3153
3278
  # retry_strategy: {
3154
3279
  # maximum_retry_attempts: 1, # required
3155
3280
  # },
3281
+ # hyper_parameter_tuning_resource_config: {
3282
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3283
+ # instance_count: 1,
3284
+ # volume_size_in_gb: 1,
3285
+ # volume_kms_key_id: "KmsKeyId",
3286
+ # allocation_strategy: "Prioritized", # accepts Prioritized
3287
+ # instance_configs: [
3288
+ # {
3289
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
3290
+ # instance_count: 1, # required
3291
+ # volume_size_in_gb: 1, # required
3292
+ # },
3293
+ # ],
3294
+ # },
3156
3295
  # },
3157
3296
  # ],
3158
3297
  # warm_start_config: {
@@ -7144,6 +7283,57 @@ module Aws::SageMaker
7144
7283
  req.send_request(options)
7145
7284
  end
7146
7285
 
7286
+ # Deletes an edge deployment plan if (and only if) all the stages in the
7287
+ # plan are inactive or there are no stages in the plan.
7288
+ #
7289
+ # @option params [required, String] :edge_deployment_plan_name
7290
+ # The name of the edge deployment plan to delete.
7291
+ #
7292
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7293
+ #
7294
+ # @example Request syntax with placeholder values
7295
+ #
7296
+ # resp = client.delete_edge_deployment_plan({
7297
+ # edge_deployment_plan_name: "EntityName", # required
7298
+ # })
7299
+ #
7300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentPlan AWS API Documentation
7301
+ #
7302
+ # @overload delete_edge_deployment_plan(params = {})
7303
+ # @param [Hash] params ({})
7304
+ def delete_edge_deployment_plan(params = {}, options = {})
7305
+ req = build_request(:delete_edge_deployment_plan, params)
7306
+ req.send_request(options)
7307
+ end
7308
+
7309
+ # Delete a stage in an edge deployment plan if (and only if) the stage
7310
+ # is inactive.
7311
+ #
7312
+ # @option params [required, String] :edge_deployment_plan_name
7313
+ # The name of the edge deployment plan from which the stage will be
7314
+ # deleted.
7315
+ #
7316
+ # @option params [required, String] :stage_name
7317
+ # The name of the stage.
7318
+ #
7319
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7320
+ #
7321
+ # @example Request syntax with placeholder values
7322
+ #
7323
+ # resp = client.delete_edge_deployment_stage({
7324
+ # edge_deployment_plan_name: "EntityName", # required
7325
+ # stage_name: "EntityName", # required
7326
+ # })
7327
+ #
7328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentStage AWS API Documentation
7329
+ #
7330
+ # @overload delete_edge_deployment_stage(params = {})
7331
+ # @param [Hash] params ({})
7332
+ def delete_edge_deployment_stage(params = {}, options = {})
7333
+ req = build_request(:delete_edge_deployment_stage, params)
7334
+ req.send_request(options)
7335
+ end
7336
+
7147
7337
  # Deletes an endpoint. SageMaker frees up all of the resources that were
7148
7338
  # deployed when the endpoint was created.
7149
7339
  #
@@ -8881,6 +9071,78 @@ module Aws::SageMaker
8881
9071
  req.send_request(options)
8882
9072
  end
8883
9073
 
9074
+ # Describes an edge deployment plan with deployment status per stage.
9075
+ #
9076
+ # @option params [required, String] :edge_deployment_plan_name
9077
+ # The name of the deployment plan to describe.
9078
+ #
9079
+ # @option params [String] :next_token
9080
+ # If the edge deployment plan has enough stages to require tokening,
9081
+ # then this is the response from the last list of stages returned.
9082
+ #
9083
+ # @option params [Integer] :max_results
9084
+ # The maximum number of results to select (50 by default).
9085
+ #
9086
+ # @return [Types::DescribeEdgeDeploymentPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9087
+ #
9088
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_plan_arn #edge_deployment_plan_arn} => String
9089
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_plan_name #edge_deployment_plan_name} => String
9090
+ # * {Types::DescribeEdgeDeploymentPlanResponse#model_configs #model_configs} => Array&lt;Types::EdgeDeploymentModelConfig&gt;
9091
+ # * {Types::DescribeEdgeDeploymentPlanResponse#device_fleet_name #device_fleet_name} => String
9092
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_success #edge_deployment_success} => Integer
9093
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_pending #edge_deployment_pending} => Integer
9094
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_failed #edge_deployment_failed} => Integer
9095
+ # * {Types::DescribeEdgeDeploymentPlanResponse#stages #stages} => Array&lt;Types::DeploymentStageStatusSummary&gt;
9096
+ # * {Types::DescribeEdgeDeploymentPlanResponse#next_token #next_token} => String
9097
+ # * {Types::DescribeEdgeDeploymentPlanResponse#creation_time #creation_time} => Time
9098
+ # * {Types::DescribeEdgeDeploymentPlanResponse#last_modified_time #last_modified_time} => Time
9099
+ #
9100
+ # @example Request syntax with placeholder values
9101
+ #
9102
+ # resp = client.describe_edge_deployment_plan({
9103
+ # edge_deployment_plan_name: "EntityName", # required
9104
+ # next_token: "NextToken",
9105
+ # max_results: 1,
9106
+ # })
9107
+ #
9108
+ # @example Response structure
9109
+ #
9110
+ # resp.edge_deployment_plan_arn #=> String
9111
+ # resp.edge_deployment_plan_name #=> String
9112
+ # resp.model_configs #=> Array
9113
+ # resp.model_configs[0].model_handle #=> String
9114
+ # resp.model_configs[0].edge_packaging_job_name #=> String
9115
+ # resp.device_fleet_name #=> String
9116
+ # resp.edge_deployment_success #=> Integer
9117
+ # resp.edge_deployment_pending #=> Integer
9118
+ # resp.edge_deployment_failed #=> Integer
9119
+ # resp.stages #=> Array
9120
+ # resp.stages[0].stage_name #=> String
9121
+ # resp.stages[0].device_selection_config.device_subset_type #=> String, one of "PERCENTAGE", "SELECTION", "NAMECONTAINS"
9122
+ # resp.stages[0].device_selection_config.percentage #=> Integer
9123
+ # resp.stages[0].device_selection_config.device_names #=> Array
9124
+ # resp.stages[0].device_selection_config.device_names[0] #=> String
9125
+ # resp.stages[0].device_selection_config.device_name_contains #=> String
9126
+ # resp.stages[0].deployment_config.failure_handling_policy #=> String, one of "ROLLBACK_ON_FAILURE", "DO_NOTHING"
9127
+ # resp.stages[0].deployment_status.stage_status #=> String, one of "CREATING", "READYTODEPLOY", "STARTING", "INPROGRESS", "DEPLOYED", "FAILED", "STOPPING", "STOPPED"
9128
+ # resp.stages[0].deployment_status.edge_deployment_success_in_stage #=> Integer
9129
+ # resp.stages[0].deployment_status.edge_deployment_pending_in_stage #=> Integer
9130
+ # resp.stages[0].deployment_status.edge_deployment_failed_in_stage #=> Integer
9131
+ # resp.stages[0].deployment_status.edge_deployment_status_message #=> String
9132
+ # resp.stages[0].deployment_status.edge_deployment_stage_start_time #=> Time
9133
+ # resp.next_token #=> String
9134
+ # resp.creation_time #=> Time
9135
+ # resp.last_modified_time #=> Time
9136
+ #
9137
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlan AWS API Documentation
9138
+ #
9139
+ # @overload describe_edge_deployment_plan(params = {})
9140
+ # @param [Hash] params ({})
9141
+ def describe_edge_deployment_plan(params = {}, options = {})
9142
+ req = build_request(:describe_edge_deployment_plan, params)
9143
+ req.send_request(options)
9144
+ end
9145
+
8884
9146
  # A description of edge packaging jobs.
8885
9147
  #
8886
9148
  # @option params [required, String] :edge_packaging_job_name
@@ -9510,6 +9772,15 @@ module Aws::SageMaker
9510
9772
  # resp.training_job_definition.checkpoint_config.s3_uri #=> String
9511
9773
  # resp.training_job_definition.checkpoint_config.local_path #=> String
9512
9774
  # resp.training_job_definition.retry_strategy.maximum_retry_attempts #=> Integer
9775
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
9776
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_count #=> Integer
9777
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.volume_size_in_gb #=> Integer
9778
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.volume_kms_key_id #=> String
9779
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.allocation_strategy #=> String, one of "Prioritized"
9780
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs #=> Array
9781
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
9782
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].instance_count #=> Integer
9783
+ # resp.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].volume_size_in_gb #=> Integer
9513
9784
  # resp.training_job_definitions #=> Array
9514
9785
  # resp.training_job_definitions[0].definition_name #=> String
9515
9786
  # resp.training_job_definitions[0].tuning_objective.type #=> String, one of "Maximize", "Minimize"
@@ -9577,6 +9848,15 @@ module Aws::SageMaker
9577
9848
  # resp.training_job_definitions[0].checkpoint_config.s3_uri #=> String
9578
9849
  # resp.training_job_definitions[0].checkpoint_config.local_path #=> String
9579
9850
  # resp.training_job_definitions[0].retry_strategy.maximum_retry_attempts #=> Integer
9851
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
9852
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_count #=> Integer
9853
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.volume_size_in_gb #=> Integer
9854
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.volume_kms_key_id #=> String
9855
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.allocation_strategy #=> String, one of "Prioritized"
9856
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs #=> Array
9857
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
9858
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].instance_count #=> Integer
9859
+ # resp.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].volume_size_in_gb #=> Integer
9580
9860
  # resp.hyper_parameter_tuning_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
9581
9861
  # resp.creation_time #=> Time
9582
9862
  # resp.hyper_parameter_tuning_end_time #=> Time
@@ -13121,6 +13401,85 @@ module Aws::SageMaker
13121
13401
  req.send_request(options)
13122
13402
  end
13123
13403
 
13404
+ # Lists all edge deployment plans.
13405
+ #
13406
+ # @option params [String] :next_token
13407
+ # The response from the last list when returning a list large enough to
13408
+ # need tokening.
13409
+ #
13410
+ # @option params [Integer] :max_results
13411
+ # The maximum number of results to select (50 by default).
13412
+ #
13413
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
13414
+ # Selects edge deployment plans created after this time.
13415
+ #
13416
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
13417
+ # Selects edge deployment plans created before this time.
13418
+ #
13419
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
13420
+ # Selects edge deployment plans that were last updated after this time.
13421
+ #
13422
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
13423
+ # Selects edge deployment plans that were last updated before this time.
13424
+ #
13425
+ # @option params [String] :name_contains
13426
+ # Selects edge deployment plans with names containing this name.
13427
+ #
13428
+ # @option params [String] :device_fleet_name_contains
13429
+ # Selects edge deployment plans with a device fleet name containing this
13430
+ # name.
13431
+ #
13432
+ # @option params [String] :sort_by
13433
+ # The column by which to sort the edge deployment plans. Can be one of
13434
+ # `NAME`, `DEVICEFLEETNAME`, `CREATIONTIME`, `LASTMODIFIEDTIME`.
13435
+ #
13436
+ # @option params [String] :sort_order
13437
+ # The direction of the sorting (ascending or descending).
13438
+ #
13439
+ # @return [Types::ListEdgeDeploymentPlansResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13440
+ #
13441
+ # * {Types::ListEdgeDeploymentPlansResponse#edge_deployment_plan_summaries #edge_deployment_plan_summaries} => Array&lt;Types::EdgeDeploymentPlanSummary&gt;
13442
+ # * {Types::ListEdgeDeploymentPlansResponse#next_token #next_token} => String
13443
+ #
13444
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13445
+ #
13446
+ # @example Request syntax with placeholder values
13447
+ #
13448
+ # resp = client.list_edge_deployment_plans({
13449
+ # next_token: "NextToken",
13450
+ # max_results: 1,
13451
+ # creation_time_after: Time.now,
13452
+ # creation_time_before: Time.now,
13453
+ # last_modified_time_after: Time.now,
13454
+ # last_modified_time_before: Time.now,
13455
+ # name_contains: "NameContains",
13456
+ # device_fleet_name_contains: "NameContains",
13457
+ # sort_by: "NAME", # accepts NAME, DEVICE_FLEET_NAME, CREATION_TIME, LAST_MODIFIED_TIME
13458
+ # sort_order: "Ascending", # accepts Ascending, Descending
13459
+ # })
13460
+ #
13461
+ # @example Response structure
13462
+ #
13463
+ # resp.edge_deployment_plan_summaries #=> Array
13464
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_plan_arn #=> String
13465
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_plan_name #=> String
13466
+ # resp.edge_deployment_plan_summaries[0].device_fleet_name #=> String
13467
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_success #=> Integer
13468
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_pending #=> Integer
13469
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_failed #=> Integer
13470
+ # resp.edge_deployment_plan_summaries[0].creation_time #=> Time
13471
+ # resp.edge_deployment_plan_summaries[0].last_modified_time #=> Time
13472
+ # resp.next_token #=> String
13473
+ #
13474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlans AWS API Documentation
13475
+ #
13476
+ # @overload list_edge_deployment_plans(params = {})
13477
+ # @param [Hash] params ({})
13478
+ def list_edge_deployment_plans(params = {}, options = {})
13479
+ req = build_request(:list_edge_deployment_plans, params)
13480
+ req.send_request(options)
13481
+ end
13482
+
13124
13483
  # Returns a list of edge packaging jobs.
13125
13484
  #
13126
13485
  # @option params [String] :next_token
@@ -15501,6 +15860,67 @@ module Aws::SageMaker
15501
15860
  req.send_request(options)
15502
15861
  end
15503
15862
 
15863
+ # Lists devices allocated to the stage, containing detailed device
15864
+ # information and deployment status.
15865
+ #
15866
+ # @option params [String] :next_token
15867
+ # The response from the last list when returning a list large enough to
15868
+ # neeed tokening.
15869
+ #
15870
+ # @option params [Integer] :max_results
15871
+ # The maximum number of requests to select.
15872
+ #
15873
+ # @option params [required, String] :edge_deployment_plan_name
15874
+ # The name of the edge deployment plan.
15875
+ #
15876
+ # @option params [Boolean] :exclude_devices_deployed_in_other_stage
15877
+ # Toggle for excluding devices deployed in other stages.
15878
+ #
15879
+ # @option params [required, String] :stage_name
15880
+ # The name of the stage in the deployment.
15881
+ #
15882
+ # @return [Types::ListStageDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15883
+ #
15884
+ # * {Types::ListStageDevicesResponse#device_deployment_summaries #device_deployment_summaries} => Array&lt;Types::DeviceDeploymentSummary&gt;
15885
+ # * {Types::ListStageDevicesResponse#next_token #next_token} => String
15886
+ #
15887
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15888
+ #
15889
+ # @example Request syntax with placeholder values
15890
+ #
15891
+ # resp = client.list_stage_devices({
15892
+ # next_token: "NextToken",
15893
+ # max_results: 1,
15894
+ # edge_deployment_plan_name: "EntityName", # required
15895
+ # exclude_devices_deployed_in_other_stage: false,
15896
+ # stage_name: "EntityName", # required
15897
+ # })
15898
+ #
15899
+ # @example Response structure
15900
+ #
15901
+ # resp.device_deployment_summaries #=> Array
15902
+ # resp.device_deployment_summaries[0].edge_deployment_plan_arn #=> String
15903
+ # resp.device_deployment_summaries[0].edge_deployment_plan_name #=> String
15904
+ # resp.device_deployment_summaries[0].stage_name #=> String
15905
+ # resp.device_deployment_summaries[0].deployed_stage_name #=> String
15906
+ # resp.device_deployment_summaries[0].device_fleet_name #=> String
15907
+ # resp.device_deployment_summaries[0].device_name #=> String
15908
+ # resp.device_deployment_summaries[0].device_arn #=> String
15909
+ # resp.device_deployment_summaries[0].device_deployment_status #=> String, one of "READYTODEPLOY", "INPROGRESS", "DEPLOYED", "FAILED", "STOPPING", "STOPPED"
15910
+ # resp.device_deployment_summaries[0].device_deployment_status_message #=> String
15911
+ # resp.device_deployment_summaries[0].description #=> String
15912
+ # resp.device_deployment_summaries[0].deployment_start_time #=> Time
15913
+ # resp.next_token #=> String
15914
+ #
15915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevices AWS API Documentation
15916
+ #
15917
+ # @overload list_stage_devices(params = {})
15918
+ # @param [Hash] params ({})
15919
+ def list_stage_devices(params = {}, options = {})
15920
+ req = build_request(:list_stage_devices, params)
15921
+ req.send_request(options)
15922
+ end
15923
+
15504
15924
  # Lists the Studio Lifecycle Configurations in your Amazon Web Services
15505
15925
  # Account.
15506
15926
  #
@@ -16372,7 +16792,7 @@ module Aws::SageMaker
16372
16792
  #
16373
16793
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/querying-lineage-entities.html
16374
16794
  #
16375
- # @option params [required, Array<String>] :start_arns
16795
+ # @option params [Array<String>] :start_arns
16376
16796
  # A list of resource Amazon Resource Name (ARN) that represent the
16377
16797
  # starting point for your lineage query.
16378
16798
  #
@@ -16431,7 +16851,7 @@ module Aws::SageMaker
16431
16851
  # @example Request syntax with placeholder values
16432
16852
  #
16433
16853
  # resp = client.query_lineage({
16434
- # start_arns: ["AssociationEntityArn"], # required
16854
+ # start_arns: ["AssociationEntityArn"],
16435
16855
  # direction: "Both", # accepts Both, Ascendants, Descendants
16436
16856
  # include_edges: false,
16437
16857
  # filters: {
@@ -17582,6 +18002,32 @@ module Aws::SageMaker
17582
18002
  req.send_request(options)
17583
18003
  end
17584
18004
 
18005
+ # Starts a stage in an edge deployment plan.
18006
+ #
18007
+ # @option params [required, String] :edge_deployment_plan_name
18008
+ # The name of the edge deployment plan to start.
18009
+ #
18010
+ # @option params [required, String] :stage_name
18011
+ # The name of the stage to start.
18012
+ #
18013
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
18014
+ #
18015
+ # @example Request syntax with placeholder values
18016
+ #
18017
+ # resp = client.start_edge_deployment_stage({
18018
+ # edge_deployment_plan_name: "EntityName", # required
18019
+ # stage_name: "EntityName", # required
18020
+ # })
18021
+ #
18022
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartEdgeDeploymentStage AWS API Documentation
18023
+ #
18024
+ # @overload start_edge_deployment_stage(params = {})
18025
+ # @param [Hash] params ({})
18026
+ def start_edge_deployment_stage(params = {}, options = {})
18027
+ req = build_request(:start_edge_deployment_stage, params)
18028
+ req.send_request(options)
18029
+ end
18030
+
17585
18031
  # Starts a previously stopped monitoring schedule.
17586
18032
  #
17587
18033
  # <note markdown="1"> By default, when you successfully create a new schedule, the status of
@@ -17749,6 +18195,32 @@ module Aws::SageMaker
17749
18195
  req.send_request(options)
17750
18196
  end
17751
18197
 
18198
+ # Stops a stage in an edge deployment plan.
18199
+ #
18200
+ # @option params [required, String] :edge_deployment_plan_name
18201
+ # The name of the edge deployment plan to stop.
18202
+ #
18203
+ # @option params [required, String] :stage_name
18204
+ # The name of the stage to stop.
18205
+ #
18206
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
18207
+ #
18208
+ # @example Request syntax with placeholder values
18209
+ #
18210
+ # resp = client.stop_edge_deployment_stage({
18211
+ # edge_deployment_plan_name: "EntityName", # required
18212
+ # stage_name: "EntityName", # required
18213
+ # })
18214
+ #
18215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgeDeploymentStage AWS API Documentation
18216
+ #
18217
+ # @overload stop_edge_deployment_stage(params = {})
18218
+ # @param [Hash] params ({})
18219
+ def stop_edge_deployment_stage(params = {}, options = {})
18220
+ req = build_request(:stop_edge_deployment_stage, params)
18221
+ req.send_request(options)
18222
+ end
18223
+
17752
18224
  # Request to stop an edge packaging job.
17753
18225
  #
17754
18226
  # @option params [required, String] :edge_packaging_job_name
@@ -18643,7 +19115,10 @@ module Aws::SageMaker
18643
19115
  # The name of the feature group that you're updating.
18644
19116
  #
18645
19117
  # @option params [Array<Types::FeatureDefinition>] :feature_additions
18646
- # A list of the features that you're adding to the feature group.
19118
+ # Updates the feature group. Updating a feature group is an asynchronous
19119
+ # operation. When you get an HTTP 200 response, you've made a valid
19120
+ # request. It takes some time after you've made a valid request for
19121
+ # Feature Store to update the feature group.
18647
19122
  #
18648
19123
  # @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18649
19124
  #
@@ -19288,11 +19763,15 @@ module Aws::SageMaker
19288
19763
  # An array of key-value pairs. You can use tags to categorize your
19289
19764
  # Amazon Web Services resources in different ways, for example, by
19290
19765
  # purpose, owner, or environment. For more information, see [Tagging
19291
- # Amazon Web Services Resources][1].
19766
+ # Amazon Web Services Resources][1]. In addition, the project must have
19767
+ # tag update constraints set in order to include this parameter in the
19768
+ # request. For more information, see [Amazon Web Services Service
19769
+ # Catalog Tag Update Constraints][2].
19292
19770
  #
19293
19771
  #
19294
19772
  #
19295
19773
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
19774
+ # [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
19296
19775
  #
19297
19776
  # @return [Types::UpdateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
19298
19777
  #
@@ -19846,7 +20325,7 @@ module Aws::SageMaker
19846
20325
  params: params,
19847
20326
  config: config)
19848
20327
  context[:gem_name] = 'aws-sdk-sagemaker'
19849
- context[:gem_version] = '1.131.0'
20328
+ context[:gem_version] = '1.134.0'
19850
20329
  Seahorse::Client::Request.new(handlers, context)
19851
20330
  end
19852
20331