aws-sdk-cleanroomsml 1.25.0 → 1.30.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +235 -10
- data/lib/aws-sdk-cleanroomsml/client_api.rb +130 -0
- data/lib/aws-sdk-cleanroomsml/errors.rb +42 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +442 -22
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +56 -9
- data/sig/errors.rbs +8 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +76 -0
- metadata +4 -4
data/lib/aws-sdk-cleanroomsml.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -80,7 +81,8 @@ module Aws
|
|
80
81
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#cancel_trained_model-instance_method
|
81
82
|
def cancel_trained_model: (
|
82
83
|
membership_identifier: ::String,
|
83
|
-
trained_model_arn: ::String
|
84
|
+
trained_model_arn: ::String,
|
85
|
+
?version_identifier: ::String
|
84
86
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
85
87
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
86
88
|
|
@@ -184,6 +186,10 @@ module Aws
|
|
184
186
|
]?,
|
185
187
|
container_metrics: {
|
186
188
|
noise_level: ("HIGH" | "MEDIUM" | "LOW" | "NONE")
|
189
|
+
}?,
|
190
|
+
max_artifact_size: {
|
191
|
+
unit: ("GB"),
|
192
|
+
value: ::Float
|
187
193
|
}?
|
188
194
|
}?,
|
189
195
|
trained_model_exports: {
|
@@ -232,7 +238,8 @@ module Aws
|
|
232
238
|
type: ("CR.1X" | "CR.4X")?,
|
233
239
|
number: ::Integer?
|
234
240
|
}?
|
235
|
-
}
|
241
|
+
}?,
|
242
|
+
result_format: ("CSV" | "PARQUET")?
|
236
243
|
}?
|
237
244
|
},
|
238
245
|
role_arn: ::String
|
@@ -248,6 +255,7 @@ module Aws
|
|
248
255
|
interface _CreateTrainedModelResponseSuccess
|
249
256
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainedModelResponse]
|
250
257
|
def trained_model_arn: () -> ::String
|
258
|
+
def version_identifier: () -> ::String
|
251
259
|
end
|
252
260
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_trained_model-instance_method
|
253
261
|
def create_trained_model: (
|
@@ -264,12 +272,21 @@ module Aws
|
|
264
272
|
?stopping_condition: {
|
265
273
|
max_runtime_in_seconds: ::Integer?
|
266
274
|
},
|
275
|
+
?incremental_training_data_channels: Array[
|
276
|
+
{
|
277
|
+
trained_model_arn: ::String,
|
278
|
+
version_identifier: ::String?,
|
279
|
+
channel_name: ::String
|
280
|
+
},
|
281
|
+
],
|
267
282
|
data_channels: Array[
|
268
283
|
{
|
269
284
|
ml_input_channel_arn: ::String,
|
270
|
-
channel_name: ::String
|
285
|
+
channel_name: ::String,
|
286
|
+
s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")?
|
271
287
|
},
|
272
288
|
],
|
289
|
+
?training_input_mode: ("File" | "FastFile" | "Pipe"),
|
273
290
|
?description: ::String,
|
274
291
|
?kms_key_arn: ::String,
|
275
292
|
?tags: Hash[::String, ::String]
|
@@ -362,7 +379,8 @@ module Aws
|
|
362
379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_trained_model_output-instance_method
|
363
380
|
def delete_trained_model_output: (
|
364
381
|
trained_model_arn: ::String,
|
365
|
-
membership_identifier: ::String
|
382
|
+
membership_identifier: ::String,
|
383
|
+
?version_identifier: ::String
|
366
384
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
367
385
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
368
386
|
|
@@ -465,12 +483,15 @@ module Aws
|
|
465
483
|
def membership_identifier: () -> ::String
|
466
484
|
def collaboration_identifier: () -> ::String
|
467
485
|
def trained_model_arn: () -> ::String
|
486
|
+
def version_identifier: () -> ::String
|
487
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
468
488
|
def name: () -> ::String
|
469
489
|
def description: () -> ::String
|
470
490
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
471
491
|
def status_details: () -> Types::StatusDetails
|
472
492
|
def configured_model_algorithm_association_arn: () -> ::String
|
473
493
|
def resource_config: () -> Types::ResourceConfig
|
494
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
474
495
|
def stopping_condition: () -> Types::StoppingCondition
|
475
496
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
476
497
|
def metrics_status_details: () -> ::String
|
@@ -484,7 +505,8 @@ module Aws
|
|
484
505
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_trained_model-instance_method
|
485
506
|
def get_collaboration_trained_model: (
|
486
507
|
trained_model_arn: ::String,
|
487
|
-
collaboration_identifier: ::String
|
508
|
+
collaboration_identifier: ::String,
|
509
|
+
?version_identifier: ::String
|
488
510
|
) -> _GetCollaborationTrainedModelResponseSuccess
|
489
511
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationTrainedModelResponseSuccess
|
490
512
|
|
@@ -607,12 +629,15 @@ module Aws
|
|
607
629
|
def membership_identifier: () -> ::String
|
608
630
|
def collaboration_identifier: () -> ::String
|
609
631
|
def trained_model_arn: () -> ::String
|
632
|
+
def version_identifier: () -> ::String
|
633
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
610
634
|
def name: () -> ::String
|
611
635
|
def description: () -> ::String
|
612
636
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
613
637
|
def status_details: () -> Types::StatusDetails
|
614
638
|
def configured_model_algorithm_association_arn: () -> ::String
|
615
639
|
def resource_config: () -> Types::ResourceConfig
|
640
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
616
641
|
def stopping_condition: () -> Types::StoppingCondition
|
617
642
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
618
643
|
def metrics_status_details: () -> ::String
|
@@ -630,7 +655,8 @@ module Aws
|
|
630
655
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model-instance_method
|
631
656
|
def get_trained_model: (
|
632
657
|
trained_model_arn: ::String,
|
633
|
-
membership_identifier: ::String
|
658
|
+
membership_identifier: ::String,
|
659
|
+
?version_identifier: ::String
|
634
660
|
) -> _GetTrainedModelResponseSuccess
|
635
661
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainedModelResponseSuccess
|
636
662
|
|
@@ -643,6 +669,7 @@ module Aws
|
|
643
669
|
def name: () -> ::String
|
644
670
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
645
671
|
def trained_model_arn: () -> ::String
|
672
|
+
def trained_model_version_identifier: () -> ::String
|
646
673
|
def resource_config: () -> Types::InferenceResourceConfig
|
647
674
|
def output_configuration: () -> Types::InferenceOutputConfiguration
|
648
675
|
def membership_identifier: () -> ::String
|
@@ -759,7 +786,8 @@ module Aws
|
|
759
786
|
?next_token: ::String,
|
760
787
|
?max_results: ::Integer,
|
761
788
|
collaboration_identifier: ::String,
|
762
|
-
trained_model_arn: ::String
|
789
|
+
trained_model_arn: ::String,
|
790
|
+
?trained_model_version_identifier: ::String
|
763
791
|
) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
764
792
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
765
793
|
|
@@ -773,7 +801,8 @@ module Aws
|
|
773
801
|
?next_token: ::String,
|
774
802
|
?max_results: ::Integer,
|
775
803
|
collaboration_identifier: ::String,
|
776
|
-
?trained_model_arn: ::String
|
804
|
+
?trained_model_arn: ::String,
|
805
|
+
?trained_model_version_identifier: ::String
|
777
806
|
) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
778
807
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
779
808
|
|
@@ -860,10 +889,26 @@ module Aws
|
|
860
889
|
?next_token: ::String,
|
861
890
|
?max_results: ::Integer,
|
862
891
|
membership_identifier: ::String,
|
863
|
-
?trained_model_arn: ::String
|
892
|
+
?trained_model_arn: ::String,
|
893
|
+
?trained_model_version_identifier: ::String
|
864
894
|
) -> _ListTrainedModelInferenceJobsResponseSuccess
|
865
895
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelInferenceJobsResponseSuccess
|
866
896
|
|
897
|
+
interface _ListTrainedModelVersionsResponseSuccess
|
898
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelVersionsResponse]
|
899
|
+
def next_token: () -> ::String
|
900
|
+
def trained_models: () -> ::Array[Types::TrainedModelSummary]
|
901
|
+
end
|
902
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_trained_model_versions-instance_method
|
903
|
+
def list_trained_model_versions: (
|
904
|
+
?next_token: ::String,
|
905
|
+
?max_results: ::Integer,
|
906
|
+
membership_identifier: ::String,
|
907
|
+
trained_model_arn: ::String,
|
908
|
+
?status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
909
|
+
) -> _ListTrainedModelVersionsResponseSuccess
|
910
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelVersionsResponseSuccess
|
911
|
+
|
867
912
|
interface _ListTrainedModelsResponseSuccess
|
868
913
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelsResponse]
|
869
914
|
def next_token: () -> ::String
|
@@ -965,6 +1010,7 @@ module Aws
|
|
965
1010
|
def start_trained_model_export_job: (
|
966
1011
|
name: ::String,
|
967
1012
|
trained_model_arn: ::String,
|
1013
|
+
?trained_model_version_identifier: ::String,
|
968
1014
|
membership_identifier: ::String,
|
969
1015
|
output_configuration: {
|
970
1016
|
members: Array[
|
@@ -986,6 +1032,7 @@ module Aws
|
|
986
1032
|
membership_identifier: ::String,
|
987
1033
|
name: ::String,
|
988
1034
|
trained_model_arn: ::String,
|
1035
|
+
?trained_model_version_identifier: ::String,
|
989
1036
|
?configured_model_algorithm_association_arn: ::String,
|
990
1037
|
resource_config: {
|
991
1038
|
instance_type: ("ml.r7i.48xlarge" | "ml.r6i.16xlarge" | "ml.m6i.xlarge" | "ml.m5.4xlarge" | "ml.p2.xlarge" | "ml.m4.16xlarge" | "ml.r7i.16xlarge" | "ml.m7i.xlarge" | "ml.m6i.12xlarge" | "ml.r7i.8xlarge" | "ml.r7i.large" | "ml.m7i.12xlarge" | "ml.m6i.24xlarge" | "ml.m7i.24xlarge" | "ml.r6i.8xlarge" | "ml.r6i.large" | "ml.g5.2xlarge" | "ml.m5.large" | "ml.p3.16xlarge" | "ml.m7i.48xlarge" | "ml.m6i.16xlarge" | "ml.p2.16xlarge" | "ml.g5.4xlarge" | "ml.m7i.16xlarge" | "ml.c4.2xlarge" | "ml.c5.2xlarge" | "ml.c6i.32xlarge" | "ml.c4.4xlarge" | "ml.g5.8xlarge" | "ml.c6i.xlarge" | "ml.c5.4xlarge" | "ml.g4dn.xlarge" | "ml.c7i.xlarge" | "ml.c6i.12xlarge" | "ml.g4dn.12xlarge" | "ml.c7i.12xlarge" | "ml.c6i.24xlarge" | "ml.g4dn.2xlarge" | "ml.c7i.24xlarge" | "ml.c7i.2xlarge" | "ml.c4.8xlarge" | "ml.c6i.2xlarge" | "ml.g4dn.4xlarge" | "ml.c7i.48xlarge" | "ml.c7i.4xlarge" | "ml.c6i.16xlarge" | "ml.c5.9xlarge" | "ml.g4dn.16xlarge" | "ml.c7i.16xlarge" | "ml.c6i.4xlarge" | "ml.c5.xlarge" | "ml.c4.xlarge" | "ml.g4dn.8xlarge" | "ml.c7i.8xlarge" | "ml.c7i.large" | "ml.g5.xlarge" | "ml.c6i.8xlarge" | "ml.c6i.large" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.m7i.2xlarge" | "ml.c5.18xlarge" | "ml.g5.48xlarge" | "ml.m6i.2xlarge" | "ml.g5.16xlarge" | "ml.m7i.4xlarge" | "ml.p3.2xlarge" | "ml.r6i.32xlarge" | "ml.m6i.4xlarge" | "ml.m5.xlarge" | "ml.m4.10xlarge" | "ml.r6i.xlarge" | "ml.m5.12xlarge" | "ml.m4.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.xlarge" | "ml.r6i.12xlarge" | "ml.m5.24xlarge" | "ml.r7i.12xlarge" | "ml.m7i.8xlarge" | "ml.m7i.large" | "ml.r6i.24xlarge" | "ml.r6i.2xlarge" | "ml.m4.2xlarge" | "ml.r7i.24xlarge" | "ml.r7i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.large" | "ml.m5.2xlarge" | "ml.p2.8xlarge" | "ml.r6i.4xlarge" | "ml.m6i.32xlarge" | "ml.p3.8xlarge" | "ml.m4.4xlarge"),
|
data/sig/errors.rbs
CHANGED
@@ -17,11 +17,19 @@ module Aws
|
|
17
17
|
class ConflictException < ::Aws::Errors::ServiceError
|
18
18
|
def message: () -> ::String
|
19
19
|
end
|
20
|
+
class InternalServiceException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
20
23
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
21
24
|
def message: () -> ::String
|
22
25
|
end
|
23
26
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
24
27
|
def message: () -> ::String
|
28
|
+
def quota_name: () -> ::String
|
29
|
+
def quota_value: () -> ::String
|
30
|
+
end
|
31
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
32
|
+
def message: () -> ::String
|
25
33
|
end
|
26
34
|
class ValidationException < ::Aws::Errors::ServiceError
|
27
35
|
def message: () -> ::String
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -90,6 +90,7 @@ module Aws::CleanRoomsML
|
|
90
90
|
class CancelTrainedModelRequest
|
91
91
|
attr_accessor membership_identifier: ::String
|
92
92
|
attr_accessor trained_model_arn: ::String
|
93
|
+
attr_accessor version_identifier: ::String
|
93
94
|
SENSITIVE: []
|
94
95
|
end
|
95
96
|
|
@@ -130,6 +131,7 @@ module Aws::CleanRoomsML
|
|
130
131
|
attr_accessor description: ::String
|
131
132
|
attr_accessor creator_account_id: ::String
|
132
133
|
attr_accessor trained_model_arn: ::String
|
134
|
+
attr_accessor trained_model_version_identifier: ::String
|
133
135
|
attr_accessor membership_identifier: ::String
|
134
136
|
attr_accessor collaboration_identifier: ::String
|
135
137
|
SENSITIVE: []
|
@@ -140,6 +142,7 @@ module Aws::CleanRoomsML
|
|
140
142
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
141
143
|
attr_accessor membership_identifier: ::String
|
142
144
|
attr_accessor trained_model_arn: ::String
|
145
|
+
attr_accessor trained_model_version_identifier: ::String
|
143
146
|
attr_accessor collaboration_identifier: ::String
|
144
147
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
145
148
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -160,6 +163,8 @@ module Aws::CleanRoomsML
|
|
160
163
|
attr_accessor update_time: ::Time
|
161
164
|
attr_accessor trained_model_arn: ::String
|
162
165
|
attr_accessor name: ::String
|
166
|
+
attr_accessor version_identifier: ::String
|
167
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
163
168
|
attr_accessor description: ::String
|
164
169
|
attr_accessor membership_identifier: ::String
|
165
170
|
attr_accessor collaboration_identifier: ::String
|
@@ -328,7 +333,9 @@ module Aws::CleanRoomsML
|
|
328
333
|
attr_accessor environment: ::Hash[::String, ::String]
|
329
334
|
attr_accessor resource_config: Types::ResourceConfig
|
330
335
|
attr_accessor stopping_condition: Types::StoppingCondition
|
336
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannel]
|
331
337
|
attr_accessor data_channels: ::Array[Types::ModelTrainingDataChannel]
|
338
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
332
339
|
attr_accessor description: ::String
|
333
340
|
attr_accessor kms_key_arn: ::String
|
334
341
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -337,6 +344,7 @@ module Aws::CleanRoomsML
|
|
337
344
|
|
338
345
|
class CreateTrainedModelResponse
|
339
346
|
attr_accessor trained_model_arn: ::String
|
347
|
+
attr_accessor version_identifier: ::String
|
340
348
|
SENSITIVE: []
|
341
349
|
end
|
342
350
|
|
@@ -416,6 +424,7 @@ module Aws::CleanRoomsML
|
|
416
424
|
class DeleteTrainedModelOutputRequest
|
417
425
|
attr_accessor trained_model_arn: ::String
|
418
426
|
attr_accessor membership_identifier: ::String
|
427
|
+
attr_accessor version_identifier: ::String
|
419
428
|
SENSITIVE: []
|
420
429
|
end
|
421
430
|
|
@@ -520,6 +529,7 @@ module Aws::CleanRoomsML
|
|
520
529
|
class GetCollaborationTrainedModelRequest
|
521
530
|
attr_accessor trained_model_arn: ::String
|
522
531
|
attr_accessor collaboration_identifier: ::String
|
532
|
+
attr_accessor version_identifier: ::String
|
523
533
|
SENSITIVE: []
|
524
534
|
end
|
525
535
|
|
@@ -527,12 +537,15 @@ module Aws::CleanRoomsML
|
|
527
537
|
attr_accessor membership_identifier: ::String
|
528
538
|
attr_accessor collaboration_identifier: ::String
|
529
539
|
attr_accessor trained_model_arn: ::String
|
540
|
+
attr_accessor version_identifier: ::String
|
541
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
530
542
|
attr_accessor name: ::String
|
531
543
|
attr_accessor description: ::String
|
532
544
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
533
545
|
attr_accessor status_details: Types::StatusDetails
|
534
546
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
535
547
|
attr_accessor resource_config: Types::ResourceConfig
|
548
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
536
549
|
attr_accessor stopping_condition: Types::StoppingCondition
|
537
550
|
attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
538
551
|
attr_accessor metrics_status_details: ::String
|
@@ -673,6 +686,7 @@ module Aws::CleanRoomsML
|
|
673
686
|
attr_accessor name: ::String
|
674
687
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
675
688
|
attr_accessor trained_model_arn: ::String
|
689
|
+
attr_accessor trained_model_version_identifier: ::String
|
676
690
|
attr_accessor resource_config: Types::InferenceResourceConfig
|
677
691
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
678
692
|
attr_accessor membership_identifier: ::String
|
@@ -694,6 +708,7 @@ module Aws::CleanRoomsML
|
|
694
708
|
class GetTrainedModelRequest
|
695
709
|
attr_accessor trained_model_arn: ::String
|
696
710
|
attr_accessor membership_identifier: ::String
|
711
|
+
attr_accessor version_identifier: ::String
|
697
712
|
SENSITIVE: []
|
698
713
|
end
|
699
714
|
|
@@ -701,12 +716,15 @@ module Aws::CleanRoomsML
|
|
701
716
|
attr_accessor membership_identifier: ::String
|
702
717
|
attr_accessor collaboration_identifier: ::String
|
703
718
|
attr_accessor trained_model_arn: ::String
|
719
|
+
attr_accessor version_identifier: ::String
|
720
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
704
721
|
attr_accessor name: ::String
|
705
722
|
attr_accessor description: ::String
|
706
723
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
707
724
|
attr_accessor status_details: Types::StatusDetails
|
708
725
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
709
726
|
attr_accessor resource_config: Types::ResourceConfig
|
727
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
710
728
|
attr_accessor stopping_condition: Types::StoppingCondition
|
711
729
|
attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
712
730
|
attr_accessor metrics_status_details: ::String
|
@@ -748,6 +766,20 @@ module Aws::CleanRoomsML
|
|
748
766
|
SENSITIVE: []
|
749
767
|
end
|
750
768
|
|
769
|
+
class IncrementalTrainingDataChannel
|
770
|
+
attr_accessor trained_model_arn: ::String
|
771
|
+
attr_accessor version_identifier: ::String
|
772
|
+
attr_accessor channel_name: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class IncrementalTrainingDataChannelOutput
|
777
|
+
attr_accessor channel_name: ::String
|
778
|
+
attr_accessor version_identifier: ::String
|
779
|
+
attr_accessor model_name: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
751
783
|
class InferenceContainerConfig
|
752
784
|
attr_accessor image_uri: ::String
|
753
785
|
SENSITIVE: []
|
@@ -792,6 +824,11 @@ module Aws::CleanRoomsML
|
|
792
824
|
end
|
793
825
|
end
|
794
826
|
|
827
|
+
class InternalServiceException
|
828
|
+
attr_accessor message: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
795
832
|
class ListAudienceExportJobsRequest
|
796
833
|
attr_accessor next_token: ::String
|
797
834
|
attr_accessor max_results: ::Integer
|
@@ -862,6 +899,7 @@ module Aws::CleanRoomsML
|
|
862
899
|
attr_accessor max_results: ::Integer
|
863
900
|
attr_accessor collaboration_identifier: ::String
|
864
901
|
attr_accessor trained_model_arn: ::String
|
902
|
+
attr_accessor trained_model_version_identifier: ::String
|
865
903
|
SENSITIVE: []
|
866
904
|
end
|
867
905
|
|
@@ -876,6 +914,7 @@ module Aws::CleanRoomsML
|
|
876
914
|
attr_accessor max_results: ::Integer
|
877
915
|
attr_accessor collaboration_identifier: ::String
|
878
916
|
attr_accessor trained_model_arn: ::String
|
917
|
+
attr_accessor trained_model_version_identifier: ::String
|
879
918
|
SENSITIVE: []
|
880
919
|
end
|
881
920
|
|
@@ -963,6 +1002,7 @@ module Aws::CleanRoomsML
|
|
963
1002
|
attr_accessor max_results: ::Integer
|
964
1003
|
attr_accessor membership_identifier: ::String
|
965
1004
|
attr_accessor trained_model_arn: ::String
|
1005
|
+
attr_accessor trained_model_version_identifier: ::String
|
966
1006
|
SENSITIVE: []
|
967
1007
|
end
|
968
1008
|
|
@@ -972,6 +1012,21 @@ module Aws::CleanRoomsML
|
|
972
1012
|
SENSITIVE: []
|
973
1013
|
end
|
974
1014
|
|
1015
|
+
class ListTrainedModelVersionsRequest
|
1016
|
+
attr_accessor next_token: ::String
|
1017
|
+
attr_accessor max_results: ::Integer
|
1018
|
+
attr_accessor membership_identifier: ::String
|
1019
|
+
attr_accessor trained_model_arn: ::String
|
1020
|
+
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
1021
|
+
SENSITIVE: []
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class ListTrainedModelVersionsResponse
|
1025
|
+
attr_accessor next_token: ::String
|
1026
|
+
attr_accessor trained_models: ::Array[Types::TrainedModelSummary]
|
1027
|
+
SENSITIVE: []
|
1028
|
+
end
|
1029
|
+
|
975
1030
|
class ListTrainedModelsRequest
|
976
1031
|
attr_accessor next_token: ::String
|
977
1032
|
attr_accessor max_results: ::Integer
|
@@ -1042,6 +1097,7 @@ module Aws::CleanRoomsML
|
|
1042
1097
|
class ModelTrainingDataChannel
|
1043
1098
|
attr_accessor ml_input_channel_arn: ::String
|
1044
1099
|
attr_accessor channel_name: ::String
|
1100
|
+
attr_accessor s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")
|
1045
1101
|
SENSITIVE: []
|
1046
1102
|
end
|
1047
1103
|
|
@@ -1060,6 +1116,7 @@ module Aws::CleanRoomsML
|
|
1060
1116
|
class ProtectedQueryInputParameters
|
1061
1117
|
attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
|
1062
1118
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
1119
|
+
attr_accessor result_format: ("CSV" | "PARQUET")
|
1063
1120
|
SENSITIVE: [:sql_parameters]
|
1064
1121
|
end
|
1065
1122
|
|
@@ -1115,6 +1172,8 @@ module Aws::CleanRoomsML
|
|
1115
1172
|
|
1116
1173
|
class ServiceQuotaExceededException
|
1117
1174
|
attr_accessor message: ::String
|
1175
|
+
attr_accessor quota_name: ::String
|
1176
|
+
attr_accessor quota_value: ::Float
|
1118
1177
|
SENSITIVE: []
|
1119
1178
|
end
|
1120
1179
|
|
@@ -1145,6 +1204,7 @@ module Aws::CleanRoomsML
|
|
1145
1204
|
class StartTrainedModelExportJobRequest
|
1146
1205
|
attr_accessor name: ::String
|
1147
1206
|
attr_accessor trained_model_arn: ::String
|
1207
|
+
attr_accessor trained_model_version_identifier: ::String
|
1148
1208
|
attr_accessor membership_identifier: ::String
|
1149
1209
|
attr_accessor output_configuration: Types::TrainedModelExportOutputConfiguration
|
1150
1210
|
attr_accessor description: ::String
|
@@ -1155,6 +1215,7 @@ module Aws::CleanRoomsML
|
|
1155
1215
|
attr_accessor membership_identifier: ::String
|
1156
1216
|
attr_accessor name: ::String
|
1157
1217
|
attr_accessor trained_model_arn: ::String
|
1218
|
+
attr_accessor trained_model_version_identifier: ::String
|
1158
1219
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1159
1220
|
attr_accessor resource_config: Types::InferenceResourceConfig
|
1160
1221
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1192,6 +1253,17 @@ module Aws::CleanRoomsML
|
|
1192
1253
|
class TagResourceResponse < Aws::EmptyStructure
|
1193
1254
|
end
|
1194
1255
|
|
1256
|
+
class ThrottlingException
|
1257
|
+
attr_accessor message: ::String
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class TrainedModelArtifactMaxSize
|
1262
|
+
attr_accessor unit: ("GB")
|
1263
|
+
attr_accessor value: ::Float
|
1264
|
+
SENSITIVE: []
|
1265
|
+
end
|
1266
|
+
|
1195
1267
|
class TrainedModelExportOutputConfiguration
|
1196
1268
|
attr_accessor members: ::Array[Types::TrainedModelExportReceiverMember]
|
1197
1269
|
SENSITIVE: []
|
@@ -1219,6 +1291,7 @@ module Aws::CleanRoomsML
|
|
1219
1291
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1220
1292
|
attr_accessor membership_identifier: ::String
|
1221
1293
|
attr_accessor trained_model_arn: ::String
|
1294
|
+
attr_accessor trained_model_version_identifier: ::String
|
1222
1295
|
attr_accessor collaboration_identifier: ::String
|
1223
1296
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
1224
1297
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1249,6 +1322,8 @@ module Aws::CleanRoomsML
|
|
1249
1322
|
attr_accessor create_time: ::Time
|
1250
1323
|
attr_accessor update_time: ::Time
|
1251
1324
|
attr_accessor trained_model_arn: ::String
|
1325
|
+
attr_accessor version_identifier: ::String
|
1326
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
1252
1327
|
attr_accessor name: ::String
|
1253
1328
|
attr_accessor description: ::String
|
1254
1329
|
attr_accessor membership_identifier: ::String
|
@@ -1261,6 +1336,7 @@ module Aws::CleanRoomsML
|
|
1261
1336
|
class TrainedModelsConfigurationPolicy
|
1262
1337
|
attr_accessor container_logs: ::Array[Types::LogsConfigurationPolicy]
|
1263
1338
|
attr_accessor container_metrics: Types::MetricsConfigurationPolicy
|
1339
|
+
attr_accessor max_artifact_size: Types::TrainedModelArtifactMaxSize
|
1264
1340
|
SENSITIVE: []
|
1265
1341
|
end
|
1266
1342
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanroomsml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
84
|
requirements:
|
85
85
|
- - ">="
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version: '2.
|
87
|
+
version: '2.7'
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
90
|
- - ">="
|