aws-sdk-sagemaker 1.131.0 → 1.132.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c8f5434aa4b7cc42d620d4b6ac7603967d9f2c8b4242dfe08f0884a4b39418a
4
- data.tar.gz: cbfbed93d558ee0f9db28a909a46e70e2cf91f8e69a669b1ead5eadb94fe2bcf
3
+ metadata.gz: 1cd1b92144eb08f7bb4352b13c0071ba52388ee2a77081d9dbb9ca3af52fa917
4
+ data.tar.gz: 20ea40bf0250ee0cfbe266e45aed046b2b667c1c77ca80d42bc580a5ebc2a5a3
5
5
  SHA512:
6
- metadata.gz: 48a26eb2dc6d79bac55351d90f6b56ee068876bd0b46ea585bd8fac6e68a523cbcdd95b60946032deb7993d7e8f925355486ac492d77810f170cc1c89d505511
7
- data.tar.gz: 3673bb931dab8f6bec2a312cc2bae1303a7f15a65766ed77ca2e7d19c80541705d97b9eb40071781c44d310dccfa5afdcc0dc80f5d396b6d24cff1ba87c18bcb
6
+ metadata.gz: 4ada52b9c33c52ca825ad2f1a95a6d9f0eb2dd372680a9b872b6203879fb1a59d380ee8fdbe6f257fb2baa0d040ed9beb6deeeab6fbdf33ef19a4874b03014c5
7
+ data.tar.gz: a8e2af0edd3b12d7c455369d5243ba5eb026bc25f9714d130df0dde1ff6244937f7c9626328911cdc57e6a54249b1ab09c792fa0d6a3cad9baeb59442061160f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2022-07-18)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Edge Manager provides lightweight model deployment feature to deploy machine learning models on requested devices.
8
+
4
9
  1.131.0 (2022-07-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.132.0
@@ -2000,6 +2000,114 @@ module Aws::SageMaker
2000
2000
  req.send_request(options)
2001
2001
  end
2002
2002
 
2003
+ # Creates an edge deployment plan, consisting of multiple stages. Each
2004
+ # stage may have a different deployment configuration and devices.
2005
+ #
2006
+ # @option params [required, String] :edge_deployment_plan_name
2007
+ # The name of the edge deployment plan.
2008
+ #
2009
+ # @option params [required, Array<Types::EdgeDeploymentModelConfig>] :model_configs
2010
+ # List of models associated with the edge deployment plan.
2011
+ #
2012
+ # @option params [required, String] :device_fleet_name
2013
+ # The device fleet used for this edge deployment plan.
2014
+ #
2015
+ # @option params [Array<Types::DeploymentStage>] :stages
2016
+ # List of stages of the edge deployment plan. The number of stages is
2017
+ # limited to 10 per deployment.
2018
+ #
2019
+ # @option params [Array<Types::Tag>] :tags
2020
+ # List of tags with which to tag the edge deployment plan.
2021
+ #
2022
+ # @return [Types::CreateEdgeDeploymentPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2023
+ #
2024
+ # * {Types::CreateEdgeDeploymentPlanResponse#edge_deployment_plan_arn #edge_deployment_plan_arn} => String
2025
+ #
2026
+ # @example Request syntax with placeholder values
2027
+ #
2028
+ # resp = client.create_edge_deployment_plan({
2029
+ # edge_deployment_plan_name: "EntityName", # required
2030
+ # model_configs: [ # required
2031
+ # {
2032
+ # model_handle: "EntityName", # required
2033
+ # edge_packaging_job_name: "EntityName", # required
2034
+ # },
2035
+ # ],
2036
+ # device_fleet_name: "EntityName", # required
2037
+ # stages: [
2038
+ # {
2039
+ # stage_name: "EntityName", # required
2040
+ # device_selection_config: { # required
2041
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
2042
+ # percentage: 1,
2043
+ # device_names: ["DeviceName"],
2044
+ # device_name_contains: "DeviceName",
2045
+ # },
2046
+ # deployment_config: {
2047
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
2048
+ # },
2049
+ # },
2050
+ # ],
2051
+ # tags: [
2052
+ # {
2053
+ # key: "TagKey", # required
2054
+ # value: "TagValue", # required
2055
+ # },
2056
+ # ],
2057
+ # })
2058
+ #
2059
+ # @example Response structure
2060
+ #
2061
+ # resp.edge_deployment_plan_arn #=> String
2062
+ #
2063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlan AWS API Documentation
2064
+ #
2065
+ # @overload create_edge_deployment_plan(params = {})
2066
+ # @param [Hash] params ({})
2067
+ def create_edge_deployment_plan(params = {}, options = {})
2068
+ req = build_request(:create_edge_deployment_plan, params)
2069
+ req.send_request(options)
2070
+ end
2071
+
2072
+ # Creates a new stage in an existing edge deployment plan.
2073
+ #
2074
+ # @option params [required, String] :edge_deployment_plan_name
2075
+ # The name of the edge deployment plan.
2076
+ #
2077
+ # @option params [required, Array<Types::DeploymentStage>] :stages
2078
+ # List of stages to be added to the edge deployment plan.
2079
+ #
2080
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2081
+ #
2082
+ # @example Request syntax with placeholder values
2083
+ #
2084
+ # resp = client.create_edge_deployment_stage({
2085
+ # edge_deployment_plan_name: "EntityName", # required
2086
+ # stages: [ # required
2087
+ # {
2088
+ # stage_name: "EntityName", # required
2089
+ # device_selection_config: { # required
2090
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
2091
+ # percentage: 1,
2092
+ # device_names: ["DeviceName"],
2093
+ # device_name_contains: "DeviceName",
2094
+ # },
2095
+ # deployment_config: {
2096
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
2097
+ # },
2098
+ # },
2099
+ # ],
2100
+ # })
2101
+ #
2102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentStage AWS API Documentation
2103
+ #
2104
+ # @overload create_edge_deployment_stage(params = {})
2105
+ # @param [Hash] params ({})
2106
+ def create_edge_deployment_stage(params = {}, options = {})
2107
+ req = build_request(:create_edge_deployment_stage, params)
2108
+ req.send_request(options)
2109
+ end
2110
+
2003
2111
  # Starts a SageMaker Edge Manager model packaging job. Edge Manager will
2004
2112
  # use the model artifacts from the Amazon Simple Storage Service bucket
2005
2113
  # that you specify. After the model has been packaged, Amazon SageMaker
@@ -7144,6 +7252,57 @@ module Aws::SageMaker
7144
7252
  req.send_request(options)
7145
7253
  end
7146
7254
 
7255
+ # Deletes an edge deployment plan if (and only if) all the stages in the
7256
+ # plan are inactive or there are no stages in the plan.
7257
+ #
7258
+ # @option params [required, String] :edge_deployment_plan_name
7259
+ # The name of the edge deployment plan to delete.
7260
+ #
7261
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7262
+ #
7263
+ # @example Request syntax with placeholder values
7264
+ #
7265
+ # resp = client.delete_edge_deployment_plan({
7266
+ # edge_deployment_plan_name: "EntityName", # required
7267
+ # })
7268
+ #
7269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentPlan AWS API Documentation
7270
+ #
7271
+ # @overload delete_edge_deployment_plan(params = {})
7272
+ # @param [Hash] params ({})
7273
+ def delete_edge_deployment_plan(params = {}, options = {})
7274
+ req = build_request(:delete_edge_deployment_plan, params)
7275
+ req.send_request(options)
7276
+ end
7277
+
7278
+ # Delete a stage in an edge deployment plan if (and only if) the stage
7279
+ # is inactive.
7280
+ #
7281
+ # @option params [required, String] :edge_deployment_plan_name
7282
+ # The name of the edge deployment plan from which the stage will be
7283
+ # deleted.
7284
+ #
7285
+ # @option params [required, String] :stage_name
7286
+ # The name of the stage.
7287
+ #
7288
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7289
+ #
7290
+ # @example Request syntax with placeholder values
7291
+ #
7292
+ # resp = client.delete_edge_deployment_stage({
7293
+ # edge_deployment_plan_name: "EntityName", # required
7294
+ # stage_name: "EntityName", # required
7295
+ # })
7296
+ #
7297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentStage AWS API Documentation
7298
+ #
7299
+ # @overload delete_edge_deployment_stage(params = {})
7300
+ # @param [Hash] params ({})
7301
+ def delete_edge_deployment_stage(params = {}, options = {})
7302
+ req = build_request(:delete_edge_deployment_stage, params)
7303
+ req.send_request(options)
7304
+ end
7305
+
7147
7306
  # Deletes an endpoint. SageMaker frees up all of the resources that were
7148
7307
  # deployed when the endpoint was created.
7149
7308
  #
@@ -8881,6 +9040,78 @@ module Aws::SageMaker
8881
9040
  req.send_request(options)
8882
9041
  end
8883
9042
 
9043
+ # Describes an edge deployment plan with deployment status per stage.
9044
+ #
9045
+ # @option params [required, String] :edge_deployment_plan_name
9046
+ # The name of the deployment plan to describe.
9047
+ #
9048
+ # @option params [String] :next_token
9049
+ # If the edge deployment plan has enough stages to require tokening,
9050
+ # then this is the response from the last list of stages returned.
9051
+ #
9052
+ # @option params [Integer] :max_results
9053
+ # The maximum number of results to select (50 by default).
9054
+ #
9055
+ # @return [Types::DescribeEdgeDeploymentPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9056
+ #
9057
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_plan_arn #edge_deployment_plan_arn} => String
9058
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_plan_name #edge_deployment_plan_name} => String
9059
+ # * {Types::DescribeEdgeDeploymentPlanResponse#model_configs #model_configs} => Array&lt;Types::EdgeDeploymentModelConfig&gt;
9060
+ # * {Types::DescribeEdgeDeploymentPlanResponse#device_fleet_name #device_fleet_name} => String
9061
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_success #edge_deployment_success} => Integer
9062
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_pending #edge_deployment_pending} => Integer
9063
+ # * {Types::DescribeEdgeDeploymentPlanResponse#edge_deployment_failed #edge_deployment_failed} => Integer
9064
+ # * {Types::DescribeEdgeDeploymentPlanResponse#stages #stages} => Array&lt;Types::DeploymentStageStatusSummary&gt;
9065
+ # * {Types::DescribeEdgeDeploymentPlanResponse#next_token #next_token} => String
9066
+ # * {Types::DescribeEdgeDeploymentPlanResponse#creation_time #creation_time} => Time
9067
+ # * {Types::DescribeEdgeDeploymentPlanResponse#last_modified_time #last_modified_time} => Time
9068
+ #
9069
+ # @example Request syntax with placeholder values
9070
+ #
9071
+ # resp = client.describe_edge_deployment_plan({
9072
+ # edge_deployment_plan_name: "EntityName", # required
9073
+ # next_token: "NextToken",
9074
+ # max_results: 1,
9075
+ # })
9076
+ #
9077
+ # @example Response structure
9078
+ #
9079
+ # resp.edge_deployment_plan_arn #=> String
9080
+ # resp.edge_deployment_plan_name #=> String
9081
+ # resp.model_configs #=> Array
9082
+ # resp.model_configs[0].model_handle #=> String
9083
+ # resp.model_configs[0].edge_packaging_job_name #=> String
9084
+ # resp.device_fleet_name #=> String
9085
+ # resp.edge_deployment_success #=> Integer
9086
+ # resp.edge_deployment_pending #=> Integer
9087
+ # resp.edge_deployment_failed #=> Integer
9088
+ # resp.stages #=> Array
9089
+ # resp.stages[0].stage_name #=> String
9090
+ # resp.stages[0].device_selection_config.device_subset_type #=> String, one of "PERCENTAGE", "SELECTION", "NAMECONTAINS"
9091
+ # resp.stages[0].device_selection_config.percentage #=> Integer
9092
+ # resp.stages[0].device_selection_config.device_names #=> Array
9093
+ # resp.stages[0].device_selection_config.device_names[0] #=> String
9094
+ # resp.stages[0].device_selection_config.device_name_contains #=> String
9095
+ # resp.stages[0].deployment_config.failure_handling_policy #=> String, one of "ROLLBACK_ON_FAILURE", "DO_NOTHING"
9096
+ # resp.stages[0].deployment_status.stage_status #=> String, one of "CREATING", "READYTODEPLOY", "STARTING", "INPROGRESS", "DEPLOYED", "FAILED", "STOPPING", "STOPPED"
9097
+ # resp.stages[0].deployment_status.edge_deployment_success_in_stage #=> Integer
9098
+ # resp.stages[0].deployment_status.edge_deployment_pending_in_stage #=> Integer
9099
+ # resp.stages[0].deployment_status.edge_deployment_failed_in_stage #=> Integer
9100
+ # resp.stages[0].deployment_status.edge_deployment_status_message #=> String
9101
+ # resp.stages[0].deployment_status.edge_deployment_stage_start_time #=> Time
9102
+ # resp.next_token #=> String
9103
+ # resp.creation_time #=> Time
9104
+ # resp.last_modified_time #=> Time
9105
+ #
9106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlan AWS API Documentation
9107
+ #
9108
+ # @overload describe_edge_deployment_plan(params = {})
9109
+ # @param [Hash] params ({})
9110
+ def describe_edge_deployment_plan(params = {}, options = {})
9111
+ req = build_request(:describe_edge_deployment_plan, params)
9112
+ req.send_request(options)
9113
+ end
9114
+
8884
9115
  # A description of edge packaging jobs.
8885
9116
  #
8886
9117
  # @option params [required, String] :edge_packaging_job_name
@@ -13121,6 +13352,85 @@ module Aws::SageMaker
13121
13352
  req.send_request(options)
13122
13353
  end
13123
13354
 
13355
+ # Lists all edge deployment plans.
13356
+ #
13357
+ # @option params [String] :next_token
13358
+ # The response from the last list when returning a list large enough to
13359
+ # need tokening.
13360
+ #
13361
+ # @option params [Integer] :max_results
13362
+ # The maximum number of results to select (50 by default).
13363
+ #
13364
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
13365
+ # Selects edge deployment plans created after this time.
13366
+ #
13367
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
13368
+ # Selects edge deployment plans created before this time.
13369
+ #
13370
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
13371
+ # Selects edge deployment plans that were last updated after this time.
13372
+ #
13373
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
13374
+ # Selects edge deployment plans that were last updated before this time.
13375
+ #
13376
+ # @option params [String] :name_contains
13377
+ # Selects edge deployment plans with names containing this name.
13378
+ #
13379
+ # @option params [String] :device_fleet_name_contains
13380
+ # Selects edge deployment plans with a device fleet name containing this
13381
+ # name.
13382
+ #
13383
+ # @option params [String] :sort_by
13384
+ # The column by which to sort the edge deployment plans. Can be one of
13385
+ # `NAME`, `DEVICEFLEETNAME`, `CREATIONTIME`, `LASTMODIFIEDTIME`.
13386
+ #
13387
+ # @option params [String] :sort_order
13388
+ # The direction of the sorting (ascending or descending).
13389
+ #
13390
+ # @return [Types::ListEdgeDeploymentPlansResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13391
+ #
13392
+ # * {Types::ListEdgeDeploymentPlansResponse#edge_deployment_plan_summaries #edge_deployment_plan_summaries} => Array&lt;Types::EdgeDeploymentPlanSummary&gt;
13393
+ # * {Types::ListEdgeDeploymentPlansResponse#next_token #next_token} => String
13394
+ #
13395
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13396
+ #
13397
+ # @example Request syntax with placeholder values
13398
+ #
13399
+ # resp = client.list_edge_deployment_plans({
13400
+ # next_token: "NextToken",
13401
+ # max_results: 1,
13402
+ # creation_time_after: Time.now,
13403
+ # creation_time_before: Time.now,
13404
+ # last_modified_time_after: Time.now,
13405
+ # last_modified_time_before: Time.now,
13406
+ # name_contains: "NameContains",
13407
+ # device_fleet_name_contains: "NameContains",
13408
+ # sort_by: "NAME", # accepts NAME, DEVICE_FLEET_NAME, CREATION_TIME, LAST_MODIFIED_TIME
13409
+ # sort_order: "Ascending", # accepts Ascending, Descending
13410
+ # })
13411
+ #
13412
+ # @example Response structure
13413
+ #
13414
+ # resp.edge_deployment_plan_summaries #=> Array
13415
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_plan_arn #=> String
13416
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_plan_name #=> String
13417
+ # resp.edge_deployment_plan_summaries[0].device_fleet_name #=> String
13418
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_success #=> Integer
13419
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_pending #=> Integer
13420
+ # resp.edge_deployment_plan_summaries[0].edge_deployment_failed #=> Integer
13421
+ # resp.edge_deployment_plan_summaries[0].creation_time #=> Time
13422
+ # resp.edge_deployment_plan_summaries[0].last_modified_time #=> Time
13423
+ # resp.next_token #=> String
13424
+ #
13425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlans AWS API Documentation
13426
+ #
13427
+ # @overload list_edge_deployment_plans(params = {})
13428
+ # @param [Hash] params ({})
13429
+ def list_edge_deployment_plans(params = {}, options = {})
13430
+ req = build_request(:list_edge_deployment_plans, params)
13431
+ req.send_request(options)
13432
+ end
13433
+
13124
13434
  # Returns a list of edge packaging jobs.
13125
13435
  #
13126
13436
  # @option params [String] :next_token
@@ -15501,6 +15811,67 @@ module Aws::SageMaker
15501
15811
  req.send_request(options)
15502
15812
  end
15503
15813
 
15814
+ # Lists devices allocated to the stage, containing detailed device
15815
+ # information and deployment status.
15816
+ #
15817
+ # @option params [String] :next_token
15818
+ # The response from the last list when returning a list large enough to
15819
+ # neeed tokening.
15820
+ #
15821
+ # @option params [Integer] :max_results
15822
+ # The maximum number of requests to select.
15823
+ #
15824
+ # @option params [required, String] :edge_deployment_plan_name
15825
+ # The name of the edge deployment plan.
15826
+ #
15827
+ # @option params [Boolean] :exclude_devices_deployed_in_other_stage
15828
+ # Toggle for excluding devices deployed in other stages.
15829
+ #
15830
+ # @option params [required, String] :stage_name
15831
+ # The name of the stage in the deployment.
15832
+ #
15833
+ # @return [Types::ListStageDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15834
+ #
15835
+ # * {Types::ListStageDevicesResponse#device_deployment_summaries #device_deployment_summaries} => Array&lt;Types::DeviceDeploymentSummary&gt;
15836
+ # * {Types::ListStageDevicesResponse#next_token #next_token} => String
15837
+ #
15838
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
15839
+ #
15840
+ # @example Request syntax with placeholder values
15841
+ #
15842
+ # resp = client.list_stage_devices({
15843
+ # next_token: "NextToken",
15844
+ # max_results: 1,
15845
+ # edge_deployment_plan_name: "EntityName", # required
15846
+ # exclude_devices_deployed_in_other_stage: false,
15847
+ # stage_name: "EntityName", # required
15848
+ # })
15849
+ #
15850
+ # @example Response structure
15851
+ #
15852
+ # resp.device_deployment_summaries #=> Array
15853
+ # resp.device_deployment_summaries[0].edge_deployment_plan_arn #=> String
15854
+ # resp.device_deployment_summaries[0].edge_deployment_plan_name #=> String
15855
+ # resp.device_deployment_summaries[0].stage_name #=> String
15856
+ # resp.device_deployment_summaries[0].deployed_stage_name #=> String
15857
+ # resp.device_deployment_summaries[0].device_fleet_name #=> String
15858
+ # resp.device_deployment_summaries[0].device_name #=> String
15859
+ # resp.device_deployment_summaries[0].device_arn #=> String
15860
+ # resp.device_deployment_summaries[0].device_deployment_status #=> String, one of "READYTODEPLOY", "INPROGRESS", "DEPLOYED", "FAILED", "STOPPING", "STOPPED"
15861
+ # resp.device_deployment_summaries[0].device_deployment_status_message #=> String
15862
+ # resp.device_deployment_summaries[0].description #=> String
15863
+ # resp.device_deployment_summaries[0].deployment_start_time #=> Time
15864
+ # resp.next_token #=> String
15865
+ #
15866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevices AWS API Documentation
15867
+ #
15868
+ # @overload list_stage_devices(params = {})
15869
+ # @param [Hash] params ({})
15870
+ def list_stage_devices(params = {}, options = {})
15871
+ req = build_request(:list_stage_devices, params)
15872
+ req.send_request(options)
15873
+ end
15874
+
15504
15875
  # Lists the Studio Lifecycle Configurations in your Amazon Web Services
15505
15876
  # Account.
15506
15877
  #
@@ -17582,6 +17953,32 @@ module Aws::SageMaker
17582
17953
  req.send_request(options)
17583
17954
  end
17584
17955
 
17956
+ # Starts a stage in an edge deployment plan.
17957
+ #
17958
+ # @option params [required, String] :edge_deployment_plan_name
17959
+ # The name of the edge deployment plan to start.
17960
+ #
17961
+ # @option params [required, String] :stage_name
17962
+ # The name of the stage to start.
17963
+ #
17964
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
17965
+ #
17966
+ # @example Request syntax with placeholder values
17967
+ #
17968
+ # resp = client.start_edge_deployment_stage({
17969
+ # edge_deployment_plan_name: "EntityName", # required
17970
+ # stage_name: "EntityName", # required
17971
+ # })
17972
+ #
17973
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartEdgeDeploymentStage AWS API Documentation
17974
+ #
17975
+ # @overload start_edge_deployment_stage(params = {})
17976
+ # @param [Hash] params ({})
17977
+ def start_edge_deployment_stage(params = {}, options = {})
17978
+ req = build_request(:start_edge_deployment_stage, params)
17979
+ req.send_request(options)
17980
+ end
17981
+
17585
17982
  # Starts a previously stopped monitoring schedule.
17586
17983
  #
17587
17984
  # <note markdown="1"> By default, when you successfully create a new schedule, the status of
@@ -17749,6 +18146,32 @@ module Aws::SageMaker
17749
18146
  req.send_request(options)
17750
18147
  end
17751
18148
 
18149
+ # Stops a stage in an edge deployment plan.
18150
+ #
18151
+ # @option params [required, String] :edge_deployment_plan_name
18152
+ # The name of the edge deployment plan to stop.
18153
+ #
18154
+ # @option params [required, String] :stage_name
18155
+ # The name of the stage to stop.
18156
+ #
18157
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
18158
+ #
18159
+ # @example Request syntax with placeholder values
18160
+ #
18161
+ # resp = client.stop_edge_deployment_stage({
18162
+ # edge_deployment_plan_name: "EntityName", # required
18163
+ # stage_name: "EntityName", # required
18164
+ # })
18165
+ #
18166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgeDeploymentStage AWS API Documentation
18167
+ #
18168
+ # @overload stop_edge_deployment_stage(params = {})
18169
+ # @param [Hash] params ({})
18170
+ def stop_edge_deployment_stage(params = {}, options = {})
18171
+ req = build_request(:stop_edge_deployment_stage, params)
18172
+ req.send_request(options)
18173
+ end
18174
+
17752
18175
  # Request to stop an edge packaging job.
17753
18176
  #
17754
18177
  # @option params [required, String] :edge_packaging_job_name
@@ -19846,7 +20269,7 @@ module Aws::SageMaker
19846
20269
  params: params,
19847
20270
  config: config)
19848
20271
  context[:gem_name] = 'aws-sdk-sagemaker'
19849
- context[:gem_version] = '1.131.0'
20272
+ context[:gem_version] = '1.132.0'
19850
20273
  Seahorse::Client::Request.new(handlers, context)
19851
20274
  end
19852
20275