aws-sdk-sagemaker 1.352.0 → 1.353.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +27 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +6 -0
- data/lib/aws-sdk-sagemaker/types.rb +41 -3
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +8 -2
- data/sig/types.rbs +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0be4780702f08a2e76c697e94cb3a7c73a60a175a45bff25c0e20ce38af111e
|
|
4
|
+
data.tar.gz: 5030027d22c467dc811023c55953810b10a89e963682eb1e55ea80f41a6139d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17921bcd075e05991c915377c0d50046771d50025e53b0d0121db748453f44f50d30e3ce078a174657e6e38b4eef1378a48f51e27083913c5da563b33fa3c42f
|
|
7
|
+
data.tar.gz: 26f8522eabb01a3558426efbb1b7f055b7511c23b84cd928cbf23ab5c74584a8f12dd05a53ee1af42a9c1b6aa3fe6d40bdac359dc4c88234ba3f417991519d55
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.353.0
|
|
@@ -6796,6 +6796,16 @@ module Aws::SageMaker
|
|
|
6796
6796
|
# Tags consisting of key-value pairs used to manage metadata for the
|
|
6797
6797
|
# tracking server.
|
|
6798
6798
|
#
|
|
6799
|
+
# @option params [String] :s3_bucket_owner_account_id
|
|
6800
|
+
# Expected Amazon Web Services account ID that owns the Amazon S3 bucket
|
|
6801
|
+
# for artifact storage. Defaults to caller's account ID if not
|
|
6802
|
+
# provided.
|
|
6803
|
+
#
|
|
6804
|
+
# @option params [Boolean] :s3_bucket_owner_verification
|
|
6805
|
+
# Enable Amazon S3 Ownership checks when interacting with Amazon S3
|
|
6806
|
+
# buckets from a SageMaker Managed MLflow Tracking Server. Defaults to
|
|
6807
|
+
# `True` if not provided.
|
|
6808
|
+
#
|
|
6799
6809
|
# @return [Types::CreateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6800
6810
|
#
|
|
6801
6811
|
# * {Types::CreateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
|
@@ -6816,6 +6826,8 @@ module Aws::SageMaker
|
|
|
6816
6826
|
# value: "TagValue", # required
|
|
6817
6827
|
# },
|
|
6818
6828
|
# ],
|
|
6829
|
+
# s3_bucket_owner_account_id: "AccountId",
|
|
6830
|
+
# s3_bucket_owner_verification: false,
|
|
6819
6831
|
# })
|
|
6820
6832
|
#
|
|
6821
6833
|
# @example Response structure
|
|
@@ -16930,6 +16942,8 @@ module Aws::SageMaker
|
|
|
16930
16942
|
# * {Types::DescribeMlflowTrackingServerResponse#created_by #created_by} => Types::UserContext
|
|
16931
16943
|
# * {Types::DescribeMlflowTrackingServerResponse#last_modified_time #last_modified_time} => Time
|
|
16932
16944
|
# * {Types::DescribeMlflowTrackingServerResponse#last_modified_by #last_modified_by} => Types::UserContext
|
|
16945
|
+
# * {Types::DescribeMlflowTrackingServerResponse#s3_bucket_owner_account_id #s3_bucket_owner_account_id} => String
|
|
16946
|
+
# * {Types::DescribeMlflowTrackingServerResponse#s3_bucket_owner_verification #s3_bucket_owner_verification} => Boolean
|
|
16933
16947
|
#
|
|
16934
16948
|
# @example Request syntax with placeholder values
|
|
16935
16949
|
#
|
|
@@ -16965,6 +16979,8 @@ module Aws::SageMaker
|
|
|
16965
16979
|
# resp.last_modified_by.iam_identity.arn #=> String
|
|
16966
16980
|
# resp.last_modified_by.iam_identity.principal_id #=> String
|
|
16967
16981
|
# resp.last_modified_by.iam_identity.source_identity #=> String
|
|
16982
|
+
# resp.s3_bucket_owner_account_id #=> String
|
|
16983
|
+
# resp.s3_bucket_owner_verification #=> Boolean
|
|
16968
16984
|
#
|
|
16969
16985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServer AWS API Documentation
|
|
16970
16986
|
#
|
|
@@ -30429,6 +30445,14 @@ module Aws::SageMaker
|
|
|
30429
30445
|
# maintenance window day and time should be in Coordinated Universal
|
|
30430
30446
|
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
|
30431
30447
|
#
|
|
30448
|
+
# @option params [String] :s3_bucket_owner_account_id
|
|
30449
|
+
# The new expected Amazon Web Services account ID that owns the Amazon
|
|
30450
|
+
# S3 bucket for artifact storage.
|
|
30451
|
+
#
|
|
30452
|
+
# @option params [Boolean] :s3_bucket_owner_verification
|
|
30453
|
+
# Whether to enable or disable Amazon S3 Bucket Owenrship Verifaction
|
|
30454
|
+
# whenever the MLflow Tracking Server interacts with Amazon Amazon S3.
|
|
30455
|
+
#
|
|
30432
30456
|
# @return [Types::UpdateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
30433
30457
|
#
|
|
30434
30458
|
# * {Types::UpdateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
|
|
@@ -30441,6 +30465,8 @@ module Aws::SageMaker
|
|
|
30441
30465
|
# tracking_server_size: "Small", # accepts Small, Medium, Large
|
|
30442
30466
|
# automatic_model_registration: false,
|
|
30443
30467
|
# weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
|
|
30468
|
+
# s3_bucket_owner_account_id: "AccountId",
|
|
30469
|
+
# s3_bucket_owner_verification: false,
|
|
30444
30470
|
# })
|
|
30445
30471
|
#
|
|
30446
30472
|
# @example Response structure
|
|
@@ -32347,7 +32373,7 @@ module Aws::SageMaker
|
|
|
32347
32373
|
tracer: tracer
|
|
32348
32374
|
)
|
|
32349
32375
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
32350
|
-
context[:gem_version] = '1.
|
|
32376
|
+
context[:gem_version] = '1.353.0'
|
|
32351
32377
|
Seahorse::Client::Request.new(handlers, context)
|
|
32352
32378
|
end
|
|
32353
32379
|
|
|
@@ -4526,6 +4526,8 @@ module Aws::SageMaker
|
|
|
4526
4526
|
CreateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
|
|
4527
4527
|
CreateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
|
|
4528
4528
|
CreateMlflowTrackingServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
4529
|
+
CreateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
|
|
4530
|
+
CreateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
|
|
4529
4531
|
CreateMlflowTrackingServerRequest.struct_class = Types::CreateMlflowTrackingServerRequest
|
|
4530
4532
|
|
|
4531
4533
|
CreateMlflowTrackingServerResponse.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: TrackingServerArn, location_name: "TrackingServerArn"))
|
|
@@ -6122,6 +6124,8 @@ module Aws::SageMaker
|
|
|
6122
6124
|
DescribeMlflowTrackingServerResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
|
6123
6125
|
DescribeMlflowTrackingServerResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
6124
6126
|
DescribeMlflowTrackingServerResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
|
6127
|
+
DescribeMlflowTrackingServerResponse.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
|
|
6128
|
+
DescribeMlflowTrackingServerResponse.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
|
|
6125
6129
|
DescribeMlflowTrackingServerResponse.struct_class = Types::DescribeMlflowTrackingServerResponse
|
|
6126
6130
|
|
|
6127
6131
|
DescribeModelBiasJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
|
|
@@ -12081,6 +12085,8 @@ module Aws::SageMaker
|
|
|
12081
12085
|
UpdateMlflowTrackingServerRequest.add_member(:tracking_server_size, Shapes::ShapeRef.new(shape: TrackingServerSize, location_name: "TrackingServerSize"))
|
|
12082
12086
|
UpdateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
|
|
12083
12087
|
UpdateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
|
|
12088
|
+
UpdateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
|
|
12089
|
+
UpdateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
|
|
12084
12090
|
UpdateMlflowTrackingServerRequest.struct_class = Types::UpdateMlflowTrackingServerRequest
|
|
12085
12091
|
|
|
12086
12092
|
UpdateMlflowTrackingServerResponse.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: TrackingServerArn, location_name: "TrackingServerArn"))
|
|
@@ -10700,6 +10700,18 @@ module Aws::SageMaker
|
|
|
10700
10700
|
# tracking server.
|
|
10701
10701
|
# @return [Array<Types::Tag>]
|
|
10702
10702
|
#
|
|
10703
|
+
# @!attribute [rw] s3_bucket_owner_account_id
|
|
10704
|
+
# Expected Amazon Web Services account ID that owns the Amazon S3
|
|
10705
|
+
# bucket for artifact storage. Defaults to caller's account ID if not
|
|
10706
|
+
# provided.
|
|
10707
|
+
# @return [String]
|
|
10708
|
+
#
|
|
10709
|
+
# @!attribute [rw] s3_bucket_owner_verification
|
|
10710
|
+
# Enable Amazon S3 Ownership checks when interacting with Amazon S3
|
|
10711
|
+
# buckets from a SageMaker Managed MLflow Tracking Server. Defaults to
|
|
10712
|
+
# `True` if not provided.
|
|
10713
|
+
# @return [Boolean]
|
|
10714
|
+
#
|
|
10703
10715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerRequest AWS API Documentation
|
|
10704
10716
|
#
|
|
10705
10717
|
class CreateMlflowTrackingServerRequest < Struct.new(
|
|
@@ -10710,7 +10722,9 @@ module Aws::SageMaker
|
|
|
10710
10722
|
:role_arn,
|
|
10711
10723
|
:automatic_model_registration,
|
|
10712
10724
|
:weekly_maintenance_window_start,
|
|
10713
|
-
:tags
|
|
10725
|
+
:tags,
|
|
10726
|
+
:s3_bucket_owner_account_id,
|
|
10727
|
+
:s3_bucket_owner_verification)
|
|
10714
10728
|
SENSITIVE = []
|
|
10715
10729
|
include Aws::Structure
|
|
10716
10730
|
end
|
|
@@ -19343,6 +19357,16 @@ module Aws::SageMaker
|
|
|
19343
19357
|
# resource.
|
|
19344
19358
|
# @return [Types::UserContext]
|
|
19345
19359
|
#
|
|
19360
|
+
# @!attribute [rw] s3_bucket_owner_account_id
|
|
19361
|
+
# Expected Amazon Web Services account ID that owns the Amazon S3
|
|
19362
|
+
# bucket for artifact storage.
|
|
19363
|
+
# @return [String]
|
|
19364
|
+
#
|
|
19365
|
+
# @!attribute [rw] s3_bucket_owner_verification
|
|
19366
|
+
# Whether Amazon S3 Bucket Ownership checks are enabled whenever the
|
|
19367
|
+
# tracking server interacts with Amazon Amazon S3.
|
|
19368
|
+
# @return [Boolean]
|
|
19369
|
+
#
|
|
19346
19370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
|
|
19347
19371
|
#
|
|
19348
19372
|
class DescribeMlflowTrackingServerResponse < Struct.new(
|
|
@@ -19361,7 +19385,9 @@ module Aws::SageMaker
|
|
|
19361
19385
|
:creation_time,
|
|
19362
19386
|
:created_by,
|
|
19363
19387
|
:last_modified_time,
|
|
19364
|
-
:last_modified_by
|
|
19388
|
+
:last_modified_by,
|
|
19389
|
+
:s3_bucket_owner_account_id,
|
|
19390
|
+
:s3_bucket_owner_verification)
|
|
19365
19391
|
SENSITIVE = []
|
|
19366
19392
|
include Aws::Structure
|
|
19367
19393
|
end
|
|
@@ -53942,6 +53968,16 @@ module Aws::SageMaker
|
|
|
53942
53968
|
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
|
53943
53969
|
# @return [String]
|
|
53944
53970
|
#
|
|
53971
|
+
# @!attribute [rw] s3_bucket_owner_account_id
|
|
53972
|
+
# The new expected Amazon Web Services account ID that owns the Amazon
|
|
53973
|
+
# S3 bucket for artifact storage.
|
|
53974
|
+
# @return [String]
|
|
53975
|
+
#
|
|
53976
|
+
# @!attribute [rw] s3_bucket_owner_verification
|
|
53977
|
+
# Whether to enable or disable Amazon S3 Bucket Owenrship Verifaction
|
|
53978
|
+
# whenever the MLflow Tracking Server interacts with Amazon Amazon S3.
|
|
53979
|
+
# @return [Boolean]
|
|
53980
|
+
#
|
|
53945
53981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerRequest AWS API Documentation
|
|
53946
53982
|
#
|
|
53947
53983
|
class UpdateMlflowTrackingServerRequest < Struct.new(
|
|
@@ -53949,7 +53985,9 @@ module Aws::SageMaker
|
|
|
53949
53985
|
:artifact_store_uri,
|
|
53950
53986
|
:tracking_server_size,
|
|
53951
53987
|
:automatic_model_registration,
|
|
53952
|
-
:weekly_maintenance_window_start
|
|
53988
|
+
:weekly_maintenance_window_start,
|
|
53989
|
+
:s3_bucket_owner_account_id,
|
|
53990
|
+
:s3_bucket_owner_verification)
|
|
53953
53991
|
SENSITIVE = []
|
|
53954
53992
|
include Aws::Structure
|
|
53955
53993
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2895,7 +2895,9 @@ module Aws
|
|
|
2895
2895
|
key: ::String,
|
|
2896
2896
|
value: ::String
|
|
2897
2897
|
},
|
|
2898
|
-
]
|
|
2898
|
+
],
|
|
2899
|
+
?s3_bucket_owner_account_id: ::String,
|
|
2900
|
+
?s3_bucket_owner_verification: bool
|
|
2899
2901
|
) -> _CreateMlflowTrackingServerResponseSuccess
|
|
2900
2902
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMlflowTrackingServerResponseSuccess
|
|
2901
2903
|
|
|
@@ -6352,6 +6354,8 @@ module Aws
|
|
|
6352
6354
|
def created_by: () -> Types::UserContext
|
|
6353
6355
|
def last_modified_time: () -> ::Time
|
|
6354
6356
|
def last_modified_by: () -> Types::UserContext
|
|
6357
|
+
def s3_bucket_owner_account_id: () -> ::String
|
|
6358
|
+
def s3_bucket_owner_verification: () -> bool
|
|
6355
6359
|
end
|
|
6356
6360
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_mlflow_tracking_server-instance_method
|
|
6357
6361
|
def describe_mlflow_tracking_server: (
|
|
@@ -10240,7 +10244,9 @@ module Aws
|
|
|
10240
10244
|
?artifact_store_uri: ::String,
|
|
10241
10245
|
?tracking_server_size: ("Small" | "Medium" | "Large"),
|
|
10242
10246
|
?automatic_model_registration: bool,
|
|
10243
|
-
?weekly_maintenance_window_start: ::String
|
|
10247
|
+
?weekly_maintenance_window_start: ::String,
|
|
10248
|
+
?s3_bucket_owner_account_id: ::String,
|
|
10249
|
+
?s3_bucket_owner_verification: bool
|
|
10244
10250
|
) -> _UpdateMlflowTrackingServerResponseSuccess
|
|
10245
10251
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMlflowTrackingServerResponseSuccess
|
|
10246
10252
|
|
data/sig/types.rbs
CHANGED
|
@@ -2033,6 +2033,8 @@ module Aws::SageMaker
|
|
|
2033
2033
|
attr_accessor automatic_model_registration: bool
|
|
2034
2034
|
attr_accessor weekly_maintenance_window_start: ::String
|
|
2035
2035
|
attr_accessor tags: ::Array[Types::Tag]
|
|
2036
|
+
attr_accessor s3_bucket_owner_account_id: ::String
|
|
2037
|
+
attr_accessor s3_bucket_owner_verification: bool
|
|
2036
2038
|
SENSITIVE: []
|
|
2037
2039
|
end
|
|
2038
2040
|
|
|
@@ -4101,6 +4103,8 @@ module Aws::SageMaker
|
|
|
4101
4103
|
attr_accessor created_by: Types::UserContext
|
|
4102
4104
|
attr_accessor last_modified_time: ::Time
|
|
4103
4105
|
attr_accessor last_modified_by: Types::UserContext
|
|
4106
|
+
attr_accessor s3_bucket_owner_account_id: ::String
|
|
4107
|
+
attr_accessor s3_bucket_owner_verification: bool
|
|
4104
4108
|
SENSITIVE: []
|
|
4105
4109
|
end
|
|
4106
4110
|
|
|
@@ -11342,6 +11346,8 @@ module Aws::SageMaker
|
|
|
11342
11346
|
attr_accessor tracking_server_size: ("Small" | "Medium" | "Large")
|
|
11343
11347
|
attr_accessor automatic_model_registration: bool
|
|
11344
11348
|
attr_accessor weekly_maintenance_window_start: ::String
|
|
11349
|
+
attr_accessor s3_bucket_owner_account_id: ::String
|
|
11350
|
+
attr_accessor s3_bucket_owner_verification: bool
|
|
11345
11351
|
SENSITIVE: []
|
|
11346
11352
|
end
|
|
11347
11353
|
|