aws-sdk-sagemaker 1.126.0 → 1.129.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +222 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +136 -0
- data/lib/aws-sdk-sagemaker/types.rb +485 -20
- data/lib/aws-sdk-sagemaker.rb +1 -1
- 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: 1ec16adf8956ba5ef4e6e00570dda97a4e832130923819babebf398a7f964704
|
4
|
+
data.tar.gz: 7466f9459bb8c7804449ca646e3bbdec29e733f15b233f56be3f77522ff8ca2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 495b3d371892e8fd22d2bf2ee8e7a0d08bd834c11104ae844d2c60f93507c6187e99c5c62649ab324f4e847e666c59a0a7d54d36575869f22d7ef9e368e9512f
|
7
|
+
data.tar.gz: f94cd55eeb847fd3fc7ea001becd52b6269f0089d8adaa697ac18aa7aa5a2c4ff47402755db1e5845d2f30c809a4c9b523989b6d3563d59d1616cf350d4b609c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.129.0 (2022-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds: UpdateFeatureGroup, UpdateFeatureMetadata, DescribeFeatureMetadata APIs; FeatureMetadata type in Search API; LastModifiedTime, LastUpdateStatus, OnlineStoreTotalSizeBytes in DescribeFeatureGroup API.
|
8
|
+
|
9
|
+
1.128.0 (2022-06-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - SageMaker Ground Truth now supports Virtual Private Cloud. Customers can launch labeling jobs and access to their private workforce in VPC mode.
|
13
|
+
|
14
|
+
1.127.0 (2022-05-31)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon SageMaker Notebook Instances now support Jupyter Lab 3.
|
18
|
+
|
4
19
|
1.126.0 (2022-05-27)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.129.0
|
@@ -959,6 +959,15 @@ module Aws::SageMaker
|
|
959
959
|
# The instance type and the Amazon Resource Name (ARN) of the SageMaker
|
960
960
|
# image created on the instance.
|
961
961
|
#
|
962
|
+
# <note markdown="1"> The value of `InstanceType` passed as part of the `ResourceSpec` in
|
963
|
+
# the `CreateApp` call overrides the value passed as part of the
|
964
|
+
# `ResourceSpec` configured for the user profile or the domain. If
|
965
|
+
# `InstanceType` is not specified in any of those three `ResourceSpec`
|
966
|
+
# values for a `KernelGateway` app, the `CreateApp` call fails with a
|
967
|
+
# request validation error.
|
968
|
+
#
|
969
|
+
# </note>
|
970
|
+
#
|
962
971
|
# @return [Types::CreateAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
963
972
|
#
|
964
973
|
# * {Types::CreateAppResponse#app_arn #app_arn} => String
|
@@ -3638,6 +3647,10 @@ module Aws::SageMaker
|
|
3638
3647
|
# initial_active_learning_model_arn: "ModelArn",
|
3639
3648
|
# labeling_job_resource_config: {
|
3640
3649
|
# volume_kms_key_id: "KmsKeyId",
|
3650
|
+
# vpc_config: {
|
3651
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
3652
|
+
# subnets: ["SubnetId"], # required
|
3653
|
+
# },
|
3641
3654
|
# },
|
3642
3655
|
# },
|
3643
3656
|
# human_task_config: { # required
|
@@ -3701,8 +3714,8 @@ module Aws::SageMaker
|
|
3701
3714
|
# that you defined for the model in the hosting environment.
|
3702
3715
|
#
|
3703
3716
|
# For an example that calls this method when deploying a model to
|
3704
|
-
# SageMaker hosting services, see [
|
3705
|
-
#
|
3717
|
+
# SageMaker hosting services, see [Create a Model (Amazon Web Services
|
3718
|
+
# SDK for Python (Boto 3)).][1]
|
3706
3719
|
#
|
3707
3720
|
# To run a batch transform using your model, you start a job with the
|
3708
3721
|
# `CreateTransformJob` API. SageMaker uses your model and your dataset
|
@@ -3717,7 +3730,7 @@ module Aws::SageMaker
|
|
3717
3730
|
#
|
3718
3731
|
#
|
3719
3732
|
#
|
3720
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
3733
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model
|
3721
3734
|
#
|
3722
3735
|
# @option params [required, String] :model_name
|
3723
3736
|
# The name of the new model.
|
@@ -6634,6 +6647,9 @@ module Aws::SageMaker
|
|
6634
6647
|
# categorize and organize our workforce. Each tag consists of a key and
|
6635
6648
|
# a value, both of which you define.
|
6636
6649
|
#
|
6650
|
+
# @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
|
6651
|
+
# Use this parameter to configure a workforce using VPC.
|
6652
|
+
#
|
6637
6653
|
# @return [Types::CreateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6638
6654
|
#
|
6639
6655
|
# * {Types::CreateWorkforceResponse#workforce_arn #workforce_arn} => String
|
@@ -6665,6 +6681,11 @@ module Aws::SageMaker
|
|
6665
6681
|
# value: "TagValue", # required
|
6666
6682
|
# },
|
6667
6683
|
# ],
|
6684
|
+
# workforce_vpc_config: {
|
6685
|
+
# vpc_id: "WorkforceVpcId",
|
6686
|
+
# security_group_ids: ["WorkforceSecurityGroupId"],
|
6687
|
+
# subnets: ["WorkforceSubnetId"],
|
6688
|
+
# },
|
6668
6689
|
# })
|
6669
6690
|
#
|
6670
6691
|
# @example Response structure
|
@@ -9127,14 +9148,17 @@ module Aws::SageMaker
|
|
9127
9148
|
# * {Types::DescribeFeatureGroupResponse#event_time_feature_name #event_time_feature_name} => String
|
9128
9149
|
# * {Types::DescribeFeatureGroupResponse#feature_definitions #feature_definitions} => Array<Types::FeatureDefinition>
|
9129
9150
|
# * {Types::DescribeFeatureGroupResponse#creation_time #creation_time} => Time
|
9151
|
+
# * {Types::DescribeFeatureGroupResponse#last_modified_time #last_modified_time} => Time
|
9130
9152
|
# * {Types::DescribeFeatureGroupResponse#online_store_config #online_store_config} => Types::OnlineStoreConfig
|
9131
9153
|
# * {Types::DescribeFeatureGroupResponse#offline_store_config #offline_store_config} => Types::OfflineStoreConfig
|
9132
9154
|
# * {Types::DescribeFeatureGroupResponse#role_arn #role_arn} => String
|
9133
9155
|
# * {Types::DescribeFeatureGroupResponse#feature_group_status #feature_group_status} => String
|
9134
9156
|
# * {Types::DescribeFeatureGroupResponse#offline_store_status #offline_store_status} => Types::OfflineStoreStatus
|
9157
|
+
# * {Types::DescribeFeatureGroupResponse#last_update_status #last_update_status} => Types::LastUpdateStatus
|
9135
9158
|
# * {Types::DescribeFeatureGroupResponse#failure_reason #failure_reason} => String
|
9136
9159
|
# * {Types::DescribeFeatureGroupResponse#description #description} => String
|
9137
9160
|
# * {Types::DescribeFeatureGroupResponse#next_token #next_token} => String
|
9161
|
+
# * {Types::DescribeFeatureGroupResponse#online_store_total_size_bytes #online_store_total_size_bytes} => Integer
|
9138
9162
|
#
|
9139
9163
|
# @example Request syntax with placeholder values
|
9140
9164
|
#
|
@@ -9153,6 +9177,7 @@ module Aws::SageMaker
|
|
9153
9177
|
# resp.feature_definitions[0].feature_name #=> String
|
9154
9178
|
# resp.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
|
9155
9179
|
# resp.creation_time #=> Time
|
9180
|
+
# resp.last_modified_time #=> Time
|
9156
9181
|
# resp.online_store_config.security_config.kms_key_id #=> String
|
9157
9182
|
# resp.online_store_config.enable_online_store #=> Boolean
|
9158
9183
|
# resp.offline_store_config.s3_storage_config.s3_uri #=> String
|
@@ -9166,9 +9191,12 @@ module Aws::SageMaker
|
|
9166
9191
|
# resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
|
9167
9192
|
# resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
|
9168
9193
|
# resp.offline_store_status.blocked_reason #=> String
|
9194
|
+
# resp.last_update_status.status #=> String, one of "Successful", "Failed", "InProgress"
|
9195
|
+
# resp.last_update_status.failure_reason #=> String
|
9169
9196
|
# resp.failure_reason #=> String
|
9170
9197
|
# resp.description #=> String
|
9171
9198
|
# resp.next_token #=> String
|
9199
|
+
# resp.online_store_total_size_bytes #=> Integer
|
9172
9200
|
#
|
9173
9201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureGroup AWS API Documentation
|
9174
9202
|
#
|
@@ -9179,6 +9207,54 @@ module Aws::SageMaker
|
|
9179
9207
|
req.send_request(options)
|
9180
9208
|
end
|
9181
9209
|
|
9210
|
+
# Shows the metadata for a feature within a feature group.
|
9211
|
+
#
|
9212
|
+
# @option params [required, String] :feature_group_name
|
9213
|
+
# The name of the feature group containing the feature.
|
9214
|
+
#
|
9215
|
+
# @option params [required, String] :feature_name
|
9216
|
+
# The name of the feature.
|
9217
|
+
#
|
9218
|
+
# @return [Types::DescribeFeatureMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9219
|
+
#
|
9220
|
+
# * {Types::DescribeFeatureMetadataResponse#feature_group_arn #feature_group_arn} => String
|
9221
|
+
# * {Types::DescribeFeatureMetadataResponse#feature_group_name #feature_group_name} => String
|
9222
|
+
# * {Types::DescribeFeatureMetadataResponse#feature_name #feature_name} => String
|
9223
|
+
# * {Types::DescribeFeatureMetadataResponse#feature_type #feature_type} => String
|
9224
|
+
# * {Types::DescribeFeatureMetadataResponse#creation_time #creation_time} => Time
|
9225
|
+
# * {Types::DescribeFeatureMetadataResponse#last_modified_time #last_modified_time} => Time
|
9226
|
+
# * {Types::DescribeFeatureMetadataResponse#description #description} => String
|
9227
|
+
# * {Types::DescribeFeatureMetadataResponse#parameters #parameters} => Array<Types::FeatureParameter>
|
9228
|
+
#
|
9229
|
+
# @example Request syntax with placeholder values
|
9230
|
+
#
|
9231
|
+
# resp = client.describe_feature_metadata({
|
9232
|
+
# feature_group_name: "FeatureGroupName", # required
|
9233
|
+
# feature_name: "FeatureName", # required
|
9234
|
+
# })
|
9235
|
+
#
|
9236
|
+
# @example Response structure
|
9237
|
+
#
|
9238
|
+
# resp.feature_group_arn #=> String
|
9239
|
+
# resp.feature_group_name #=> String
|
9240
|
+
# resp.feature_name #=> String
|
9241
|
+
# resp.feature_type #=> String, one of "Integral", "Fractional", "String"
|
9242
|
+
# resp.creation_time #=> Time
|
9243
|
+
# resp.last_modified_time #=> Time
|
9244
|
+
# resp.description #=> String
|
9245
|
+
# resp.parameters #=> Array
|
9246
|
+
# resp.parameters[0].key #=> String
|
9247
|
+
# resp.parameters[0].value #=> String
|
9248
|
+
#
|
9249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureMetadata AWS API Documentation
|
9250
|
+
#
|
9251
|
+
# @overload describe_feature_metadata(params = {})
|
9252
|
+
# @param [Hash] params ({})
|
9253
|
+
def describe_feature_metadata(params = {}, options = {})
|
9254
|
+
req = build_request(:describe_feature_metadata, params)
|
9255
|
+
req.send_request(options)
|
9256
|
+
end
|
9257
|
+
|
9182
9258
|
# Returns information about the specified flow definition.
|
9183
9259
|
#
|
9184
9260
|
# @option params [required, String] :flow_definition_name
|
@@ -9760,6 +9836,10 @@ module Aws::SageMaker
|
|
9760
9836
|
# resp.labeling_job_algorithms_config.labeling_job_algorithm_specification_arn #=> String
|
9761
9837
|
# resp.labeling_job_algorithms_config.initial_active_learning_model_arn #=> String
|
9762
9838
|
# resp.labeling_job_algorithms_config.labeling_job_resource_config.volume_kms_key_id #=> String
|
9839
|
+
# resp.labeling_job_algorithms_config.labeling_job_resource_config.vpc_config.security_group_ids #=> Array
|
9840
|
+
# resp.labeling_job_algorithms_config.labeling_job_resource_config.vpc_config.security_group_ids[0] #=> String
|
9841
|
+
# resp.labeling_job_algorithms_config.labeling_job_resource_config.vpc_config.subnets #=> Array
|
9842
|
+
# resp.labeling_job_algorithms_config.labeling_job_resource_config.vpc_config.subnets[0] #=> String
|
9763
9843
|
# resp.human_task_config.workteam_arn #=> String
|
9764
9844
|
# resp.human_task_config.ui_config.ui_template_s3_uri #=> String
|
9765
9845
|
# resp.human_task_config.ui_config.human_task_ui_arn #=> String
|
@@ -11565,6 +11645,14 @@ module Aws::SageMaker
|
|
11565
11645
|
# resp.workforce.oidc_config.logout_endpoint #=> String
|
11566
11646
|
# resp.workforce.oidc_config.jwks_uri #=> String
|
11567
11647
|
# resp.workforce.create_date #=> Time
|
11648
|
+
# resp.workforce.workforce_vpc_config.vpc_id #=> String
|
11649
|
+
# resp.workforce.workforce_vpc_config.security_group_ids #=> Array
|
11650
|
+
# resp.workforce.workforce_vpc_config.security_group_ids[0] #=> String
|
11651
|
+
# resp.workforce.workforce_vpc_config.subnets #=> Array
|
11652
|
+
# resp.workforce.workforce_vpc_config.subnets[0] #=> String
|
11653
|
+
# resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
|
11654
|
+
# resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
11655
|
+
# resp.workforce.failure_reason #=> String
|
11568
11656
|
#
|
11569
11657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeWorkforce AWS API Documentation
|
11570
11658
|
#
|
@@ -11848,7 +11936,7 @@ module Aws::SageMaker
|
|
11848
11936
|
# @example Request syntax with placeholder values
|
11849
11937
|
#
|
11850
11938
|
# resp = client.get_search_suggestions({
|
11851
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
11939
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
|
11852
11940
|
# suggestion_query: {
|
11853
11941
|
# property_name_query: {
|
11854
11942
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -16092,6 +16180,14 @@ module Aws::SageMaker
|
|
16092
16180
|
# resp.workforces[0].oidc_config.logout_endpoint #=> String
|
16093
16181
|
# resp.workforces[0].oidc_config.jwks_uri #=> String
|
16094
16182
|
# resp.workforces[0].create_date #=> Time
|
16183
|
+
# resp.workforces[0].workforce_vpc_config.vpc_id #=> String
|
16184
|
+
# resp.workforces[0].workforce_vpc_config.security_group_ids #=> Array
|
16185
|
+
# resp.workforces[0].workforce_vpc_config.security_group_ids[0] #=> String
|
16186
|
+
# resp.workforces[0].workforce_vpc_config.subnets #=> Array
|
16187
|
+
# resp.workforces[0].workforce_vpc_config.subnets[0] #=> String
|
16188
|
+
# resp.workforces[0].workforce_vpc_config.vpc_endpoint_id #=> String
|
16189
|
+
# resp.workforces[0].status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
16190
|
+
# resp.workforces[0].failure_reason #=> String
|
16095
16191
|
# resp.next_token #=> String
|
16096
16192
|
#
|
16097
16193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListWorkforces AWS API Documentation
|
@@ -16503,7 +16599,7 @@ module Aws::SageMaker
|
|
16503
16599
|
# @example Request syntax with placeholder values
|
16504
16600
|
#
|
16505
16601
|
# resp = client.search({
|
16506
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
16602
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
|
16507
16603
|
# search_expression: {
|
16508
16604
|
# filters: [
|
16509
16605
|
# {
|
@@ -17259,6 +17355,7 @@ module Aws::SageMaker
|
|
17259
17355
|
# resp.results[0].feature_group.feature_definitions[0].feature_name #=> String
|
17260
17356
|
# resp.results[0].feature_group.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
|
17261
17357
|
# resp.results[0].feature_group.creation_time #=> Time
|
17358
|
+
# resp.results[0].feature_group.last_modified_time #=> Time
|
17262
17359
|
# resp.results[0].feature_group.online_store_config.security_config.kms_key_id #=> String
|
17263
17360
|
# resp.results[0].feature_group.online_store_config.enable_online_store #=> Boolean
|
17264
17361
|
# resp.results[0].feature_group.offline_store_config.s3_storage_config.s3_uri #=> String
|
@@ -17272,6 +17369,8 @@ module Aws::SageMaker
|
|
17272
17369
|
# resp.results[0].feature_group.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
|
17273
17370
|
# resp.results[0].feature_group.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
|
17274
17371
|
# resp.results[0].feature_group.offline_store_status.blocked_reason #=> String
|
17372
|
+
# resp.results[0].feature_group.last_update_status.status #=> String, one of "Successful", "Failed", "InProgress"
|
17373
|
+
# resp.results[0].feature_group.last_update_status.failure_reason #=> String
|
17275
17374
|
# resp.results[0].feature_group.failure_reason #=> String
|
17276
17375
|
# resp.results[0].feature_group.description #=> String
|
17277
17376
|
# resp.results[0].feature_group.tags #=> Array
|
@@ -17301,6 +17400,16 @@ module Aws::SageMaker
|
|
17301
17400
|
# resp.results[0].project.last_modified_by.user_profile_arn #=> String
|
17302
17401
|
# resp.results[0].project.last_modified_by.user_profile_name #=> String
|
17303
17402
|
# resp.results[0].project.last_modified_by.domain_id #=> String
|
17403
|
+
# resp.results[0].feature_metadata.feature_group_arn #=> String
|
17404
|
+
# resp.results[0].feature_metadata.feature_group_name #=> String
|
17405
|
+
# resp.results[0].feature_metadata.feature_name #=> String
|
17406
|
+
# resp.results[0].feature_metadata.feature_type #=> String, one of "Integral", "Fractional", "String"
|
17407
|
+
# resp.results[0].feature_metadata.creation_time #=> Time
|
17408
|
+
# resp.results[0].feature_metadata.last_modified_time #=> Time
|
17409
|
+
# resp.results[0].feature_metadata.description #=> String
|
17410
|
+
# resp.results[0].feature_metadata.parameters #=> Array
|
17411
|
+
# resp.results[0].feature_metadata.parameters[0].key #=> String
|
17412
|
+
# resp.results[0].feature_metadata.parameters[0].value #=> String
|
17304
17413
|
# resp.next_token #=> String
|
17305
17414
|
#
|
17306
17415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
|
@@ -18460,6 +18569,89 @@ module Aws::SageMaker
|
|
18460
18569
|
req.send_request(options)
|
18461
18570
|
end
|
18462
18571
|
|
18572
|
+
# Updates the feature group.
|
18573
|
+
#
|
18574
|
+
# @option params [required, String] :feature_group_name
|
18575
|
+
# The name of the feature group that you're updating.
|
18576
|
+
#
|
18577
|
+
# @option params [Array<Types::FeatureDefinition>] :feature_additions
|
18578
|
+
# A list of the features that you're adding to the feature group.
|
18579
|
+
#
|
18580
|
+
# @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18581
|
+
#
|
18582
|
+
# * {Types::UpdateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
|
18583
|
+
#
|
18584
|
+
# @example Request syntax with placeholder values
|
18585
|
+
#
|
18586
|
+
# resp = client.update_feature_group({
|
18587
|
+
# feature_group_name: "FeatureGroupName", # required
|
18588
|
+
# feature_additions: [
|
18589
|
+
# {
|
18590
|
+
# feature_name: "FeatureName",
|
18591
|
+
# feature_type: "Integral", # accepts Integral, Fractional, String
|
18592
|
+
# },
|
18593
|
+
# ],
|
18594
|
+
# })
|
18595
|
+
#
|
18596
|
+
# @example Response structure
|
18597
|
+
#
|
18598
|
+
# resp.feature_group_arn #=> String
|
18599
|
+
#
|
18600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroup AWS API Documentation
|
18601
|
+
#
|
18602
|
+
# @overload update_feature_group(params = {})
|
18603
|
+
# @param [Hash] params ({})
|
18604
|
+
def update_feature_group(params = {}, options = {})
|
18605
|
+
req = build_request(:update_feature_group, params)
|
18606
|
+
req.send_request(options)
|
18607
|
+
end
|
18608
|
+
|
18609
|
+
# Updates the description and parameters of the feature group.
|
18610
|
+
#
|
18611
|
+
# @option params [required, String] :feature_group_name
|
18612
|
+
# The name of the feature group containing the feature that you're
|
18613
|
+
# updating.
|
18614
|
+
#
|
18615
|
+
# @option params [required, String] :feature_name
|
18616
|
+
# The name of the feature that you're updating.
|
18617
|
+
#
|
18618
|
+
# @option params [String] :description
|
18619
|
+
# A description that you can write to better describe the feature.
|
18620
|
+
#
|
18621
|
+
# @option params [Array<Types::FeatureParameter>] :parameter_additions
|
18622
|
+
# A list of key-value pairs that you can add to better describe the
|
18623
|
+
# feature.
|
18624
|
+
#
|
18625
|
+
# @option params [Array<String>] :parameter_removals
|
18626
|
+
# A list of parameter keys that you can specify to remove parameters
|
18627
|
+
# that describe your feature.
|
18628
|
+
#
|
18629
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18630
|
+
#
|
18631
|
+
# @example Request syntax with placeholder values
|
18632
|
+
#
|
18633
|
+
# resp = client.update_feature_metadata({
|
18634
|
+
# feature_group_name: "FeatureGroupName", # required
|
18635
|
+
# feature_name: "FeatureName", # required
|
18636
|
+
# description: "FeatureDescription",
|
18637
|
+
# parameter_additions: [
|
18638
|
+
# {
|
18639
|
+
# key: "FeatureParameterKey",
|
18640
|
+
# value: "FeatureParameterValue",
|
18641
|
+
# },
|
18642
|
+
# ],
|
18643
|
+
# parameter_removals: ["FeatureParameterKey"],
|
18644
|
+
# })
|
18645
|
+
#
|
18646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureMetadata AWS API Documentation
|
18647
|
+
#
|
18648
|
+
# @overload update_feature_metadata(params = {})
|
18649
|
+
# @param [Hash] params ({})
|
18650
|
+
def update_feature_metadata(params = {}, options = {})
|
18651
|
+
req = build_request(:update_feature_metadata, params)
|
18652
|
+
req.send_request(options)
|
18653
|
+
end
|
18654
|
+
|
18463
18655
|
# Updates the properties of a SageMaker image. To change the image's
|
18464
18656
|
# tags, use the AddTags and DeleteTags APIs.
|
18465
18657
|
#
|
@@ -19357,6 +19549,8 @@ module Aws::SageMaker
|
|
19357
19549
|
# tasks and to update your OpenID Connect (OIDC) Identity Provider (IdP)
|
19358
19550
|
# workforce configuration.
|
19359
19551
|
#
|
19552
|
+
# The worker portal is now supported in VPC and public internet.
|
19553
|
+
#
|
19360
19554
|
# Use `SourceIpConfig` to restrict worker access to tasks to a specific
|
19361
19555
|
# range of IP addresses. You specify allowed IP addresses by creating a
|
19362
19556
|
# list of up to ten [CIDRs][1]. By default, a workforce isn't
|
@@ -19365,6 +19559,12 @@ module Aws::SageMaker
|
|
19365
19559
|
# outside the specified range are denied and get a `Not Found` error
|
19366
19560
|
# message on the worker portal.
|
19367
19561
|
#
|
19562
|
+
# To restrict access to all the workers in public internet, add the
|
19563
|
+
# `SourceIpConfig` CIDR value as "0.0.0.0/0".
|
19564
|
+
#
|
19565
|
+
# Amazon SageMaker does not support Source Ip restriction for worker
|
19566
|
+
# portals in VPC.
|
19567
|
+
#
|
19368
19568
|
# Use `OidcConfig` to update the configuration of a workforce created
|
19369
19569
|
# using your own OIDC IdP.
|
19370
19570
|
#
|
@@ -19400,6 +19600,9 @@ module Aws::SageMaker
|
|
19400
19600
|
# Use this parameter to update your OIDC Identity Provider (IdP)
|
19401
19601
|
# configuration for a workforce made using your own IdP.
|
19402
19602
|
#
|
19603
|
+
# @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
|
19604
|
+
# Use this parameter to update your VPC configuration for a workforce.
|
19605
|
+
#
|
19403
19606
|
# @return [Types::UpdateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19404
19607
|
#
|
19405
19608
|
# * {Types::UpdateWorkforceResponse#workforce #workforce} => Types::Workforce
|
@@ -19421,6 +19624,11 @@ module Aws::SageMaker
|
|
19421
19624
|
# logout_endpoint: "OidcEndpoint", # required
|
19422
19625
|
# jwks_uri: "OidcEndpoint", # required
|
19423
19626
|
# },
|
19627
|
+
# workforce_vpc_config: {
|
19628
|
+
# vpc_id: "WorkforceVpcId",
|
19629
|
+
# security_group_ids: ["WorkforceSecurityGroupId"],
|
19630
|
+
# subnets: ["WorkforceSubnetId"],
|
19631
|
+
# },
|
19424
19632
|
# })
|
19425
19633
|
#
|
19426
19634
|
# @example Response structure
|
@@ -19441,6 +19649,14 @@ module Aws::SageMaker
|
|
19441
19649
|
# resp.workforce.oidc_config.logout_endpoint #=> String
|
19442
19650
|
# resp.workforce.oidc_config.jwks_uri #=> String
|
19443
19651
|
# resp.workforce.create_date #=> Time
|
19652
|
+
# resp.workforce.workforce_vpc_config.vpc_id #=> String
|
19653
|
+
# resp.workforce.workforce_vpc_config.security_group_ids #=> Array
|
19654
|
+
# resp.workforce.workforce_vpc_config.security_group_ids[0] #=> String
|
19655
|
+
# resp.workforce.workforce_vpc_config.subnets #=> Array
|
19656
|
+
# resp.workforce.workforce_vpc_config.subnets[0] #=> String
|
19657
|
+
# resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
|
19658
|
+
# resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
19659
|
+
# resp.workforce.failure_reason #=> String
|
19444
19660
|
#
|
19445
19661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforce AWS API Documentation
|
19446
19662
|
#
|
@@ -19562,7 +19778,7 @@ module Aws::SageMaker
|
|
19562
19778
|
params: params,
|
19563
19779
|
config: config)
|
19564
19780
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
19565
|
-
context[:gem_version] = '1.
|
19781
|
+
context[:gem_version] = '1.129.0'
|
19566
19782
|
Seahorse::Client::Request.new(handlers, context)
|
19567
19783
|
end
|
19568
19784
|
|