aws-sdk-bedrockagentcorecontrol 1.15.0 → 1.16.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-bedrockagentcorecontrol/client.rb +2169 -52
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +1294 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +3803 -196
- data/lib/aws-sdk-bedrockagentcorecontrol/waiters.rb +279 -3
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +790 -6
- data/sig/types.rbs +956 -29
- data/sig/waiters.rbs +53 -0
- metadata +1 -1
data/sig/waiters.rbs
CHANGED
|
@@ -18,6 +18,59 @@ module Aws
|
|
|
18
18
|
) -> Client::_GetMemoryResponseSuccess
|
|
19
19
|
| (Hash[Symbol, untyped]) -> Client::_GetMemoryResponseSuccess
|
|
20
20
|
end
|
|
21
|
+
|
|
22
|
+
class PolicyActive
|
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
25
|
+
|
|
26
|
+
def wait: (
|
|
27
|
+
policy_engine_id: ::String,
|
|
28
|
+
policy_id: ::String
|
|
29
|
+
) -> Client::_GetPolicyResponseSuccess
|
|
30
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPolicyResponseSuccess
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class PolicyDeleted
|
|
34
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
35
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
36
|
+
|
|
37
|
+
def wait: (
|
|
38
|
+
policy_engine_id: ::String,
|
|
39
|
+
policy_id: ::String
|
|
40
|
+
) -> Client::_GetPolicyResponseSuccess
|
|
41
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPolicyResponseSuccess
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
class PolicyEngineActive
|
|
45
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
46
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
47
|
+
|
|
48
|
+
def wait: (
|
|
49
|
+
policy_engine_id: ::String
|
|
50
|
+
) -> Client::_GetPolicyEngineResponseSuccess
|
|
51
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPolicyEngineResponseSuccess
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
class PolicyEngineDeleted
|
|
55
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
56
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
57
|
+
|
|
58
|
+
def wait: (
|
|
59
|
+
policy_engine_id: ::String
|
|
60
|
+
) -> Client::_GetPolicyEngineResponseSuccess
|
|
61
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPolicyEngineResponseSuccess
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
class PolicyGenerationCompleted
|
|
65
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
66
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
67
|
+
|
|
68
|
+
def wait: (
|
|
69
|
+
policy_generation_id: ::String,
|
|
70
|
+
policy_engine_id: ::String
|
|
71
|
+
) -> Client::_GetPolicyGenerationResponseSuccess
|
|
72
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPolicyGenerationResponseSuccess
|
|
73
|
+
end
|
|
21
74
|
end
|
|
22
75
|
end
|
|
23
76
|
end
|