aws-sdk-bedrock 1.13.0 → 1.14.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-bedrock/client.rb +306 -40
- data/lib/aws-sdk-bedrock/client_api.rb +116 -1
- data/lib/aws-sdk-bedrock/endpoints.rb +42 -0
- data/lib/aws-sdk-bedrock/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-bedrock/types.rb +351 -19
- data/lib/aws-sdk-bedrock.rb +1 -1
- data/sig/client.rbs +61 -1
- data/sig/types.rbs +71 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -85,6 +85,20 @@ module Aws::Bedrock
|
|
85
85
|
SENSITIVE: []
|
86
86
|
end
|
87
87
|
|
88
|
+
class CreateModelCopyJobRequest
|
89
|
+
attr_accessor source_model_arn: ::String
|
90
|
+
attr_accessor target_model_name: ::String
|
91
|
+
attr_accessor model_kms_key_id: ::String
|
92
|
+
attr_accessor target_model_tags: ::Array[Types::Tag]
|
93
|
+
attr_accessor client_request_token: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateModelCopyJobResponse
|
98
|
+
attr_accessor job_arn: ::String
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
88
102
|
class CreateModelCustomizationJobRequest
|
89
103
|
attr_accessor job_name: ::String
|
90
104
|
attr_accessor custom_model_name: ::String
|
@@ -130,6 +144,7 @@ module Aws::Bedrock
|
|
130
144
|
attr_accessor base_model_arn: ::String
|
131
145
|
attr_accessor base_model_name: ::String
|
132
146
|
attr_accessor customization_type: ("FINE_TUNING" | "CONTINUED_PRE_TRAINING")
|
147
|
+
attr_accessor owner_account_id: ::String
|
133
148
|
SENSITIVE: []
|
134
149
|
end
|
135
150
|
|
@@ -362,6 +377,26 @@ module Aws::Bedrock
|
|
362
377
|
SENSITIVE: [:name, :description, :blocked_input_messaging, :blocked_outputs_messaging]
|
363
378
|
end
|
364
379
|
|
380
|
+
class GetModelCopyJobRequest
|
381
|
+
attr_accessor job_arn: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class GetModelCopyJobResponse
|
386
|
+
attr_accessor job_arn: ::String
|
387
|
+
attr_accessor status: ("InProgress" | "Completed" | "Failed")
|
388
|
+
attr_accessor creation_time: ::Time
|
389
|
+
attr_accessor target_model_arn: ::String
|
390
|
+
attr_accessor target_model_name: ::String
|
391
|
+
attr_accessor source_account_id: ::String
|
392
|
+
attr_accessor source_model_arn: ::String
|
393
|
+
attr_accessor target_model_kms_key_arn: ::String
|
394
|
+
attr_accessor target_model_tags: ::Array[Types::Tag]
|
395
|
+
attr_accessor failure_message: ::String
|
396
|
+
attr_accessor source_model_name: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
365
400
|
class GetModelCustomizationJobRequest
|
366
401
|
attr_accessor job_identifier: ::String
|
367
402
|
SENSITIVE: []
|
@@ -613,6 +648,7 @@ module Aws::Bedrock
|
|
613
648
|
attr_accessor next_token: ::String
|
614
649
|
attr_accessor sort_by: ("CreationTime")
|
615
650
|
attr_accessor sort_order: ("Ascending" | "Descending")
|
651
|
+
attr_accessor is_owned: bool
|
616
652
|
SENSITIVE: []
|
617
653
|
end
|
618
654
|
|
@@ -666,6 +702,26 @@ module Aws::Bedrock
|
|
666
702
|
SENSITIVE: []
|
667
703
|
end
|
668
704
|
|
705
|
+
class ListModelCopyJobsRequest
|
706
|
+
attr_accessor creation_time_after: ::Time
|
707
|
+
attr_accessor creation_time_before: ::Time
|
708
|
+
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed")
|
709
|
+
attr_accessor source_account_equals: ::String
|
710
|
+
attr_accessor source_model_arn_equals: ::String
|
711
|
+
attr_accessor target_model_name_contains: ::String
|
712
|
+
attr_accessor max_results: ::Integer
|
713
|
+
attr_accessor next_token: ::String
|
714
|
+
attr_accessor sort_by: ("CreationTime")
|
715
|
+
attr_accessor sort_order: ("Ascending" | "Descending")
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class ListModelCopyJobsResponse
|
720
|
+
attr_accessor next_token: ::String
|
721
|
+
attr_accessor model_copy_job_summaries: ::Array[Types::ModelCopyJobSummary]
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
669
725
|
class ListModelCustomizationJobsRequest
|
670
726
|
attr_accessor creation_time_after: ::Time
|
671
727
|
attr_accessor creation_time_before: ::Time
|
@@ -722,6 +778,21 @@ module Aws::Bedrock
|
|
722
778
|
SENSITIVE: []
|
723
779
|
end
|
724
780
|
|
781
|
+
class ModelCopyJobSummary
|
782
|
+
attr_accessor job_arn: ::String
|
783
|
+
attr_accessor status: ("InProgress" | "Completed" | "Failed")
|
784
|
+
attr_accessor creation_time: ::Time
|
785
|
+
attr_accessor target_model_arn: ::String
|
786
|
+
attr_accessor target_model_name: ::String
|
787
|
+
attr_accessor source_account_id: ::String
|
788
|
+
attr_accessor source_model_arn: ::String
|
789
|
+
attr_accessor target_model_kms_key_arn: ::String
|
790
|
+
attr_accessor target_model_tags: ::Array[Types::Tag]
|
791
|
+
attr_accessor failure_message: ::String
|
792
|
+
attr_accessor source_model_name: ::String
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
725
796
|
class ModelCustomizationJobSummary
|
726
797
|
attr_accessor job_arn: ::String
|
727
798
|
attr_accessor base_model_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Bedrock. This gem is part of the AWS
|
48
48
|
SDK for Ruby.
|
49
49
|
email:
|