@aws-sdk/client-bedrock-agent-runtime 3.1070.0 → 3.1072.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.
- package/README.md +14 -0
- package/dist-cjs/index.js +93 -8
- package/dist-cjs/models/errors.js +42 -42
- package/dist-cjs/runtimeConfig.js +5 -2
- package/dist-cjs/schemas/schemas_0.js +567 -139
- package/dist-es/BedrockAgentRuntime.js +4 -0
- package/dist-es/commands/AgenticRetrieveStreamCommand.js +20 -0
- package/dist-es/commands/GetDocumentContentCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +50 -7
- package/dist-es/models/errors.js +42 -42
- package/dist-es/runtimeConfig.js +5 -2
- package/dist-es/schemas/schemas_0.js +521 -139
- package/dist-types/BedrockAgentRuntime.d.ts +14 -0
- package/dist-types/BedrockAgentRuntimeClient.d.ts +4 -2
- package/dist-types/commands/AgenticRetrieveStreamCommand.d.ts +338 -0
- package/dist-types/commands/GetDocumentContentCommand.d.ts +99 -0
- package/dist-types/commands/GetInvocationStepCommand.d.ts +1 -1
- package/dist-types/commands/InvokeAgentCommand.d.ts +55 -4
- package/dist-types/commands/InvokeFlowCommand.d.ts +14 -2
- package/dist-types/commands/InvokeInlineAgentCommand.d.ts +78 -8
- package/dist-types/commands/ListFlowExecutionEventsCommand.d.ts +14 -2
- package/dist-types/commands/ListInvocationStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvocationsCommand.d.ts +1 -1
- package/dist-types/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutInvocationStepCommand.d.ts +1 -1
- package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +45 -3
- package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +52 -4
- package/dist-types/commands/RetrieveCommand.d.ts +45 -2
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSessionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +163 -16
- package/dist-types/models/errors.d.ts +45 -45
- package/dist-types/models/models_0.d.ts +4105 -4355
- package/dist-types/models/models_1.d.ts +1396 -2
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +34 -0
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/AgenticRetrieveStreamCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDocumentContentCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +74 -11
- package/dist-types/ts3.4/models/errors.d.ts +28 -28
- package/dist-types/ts3.4/models/models_0.d.ts +448 -541
- package/dist-types/ts3.4/models/models_1.d.ts +602 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
- package/package.json +3 -3
|
@@ -7,6 +7,27 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
+
export declare class BadGatewayException extends __BaseException {
|
|
11
|
+
readonly name: "BadGatewayException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
resourceName?: string | undefined;
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<BadGatewayException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class ConflictException extends __BaseException {
|
|
19
|
+
readonly name: "ConflictException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
export declare class DependencyFailedException extends __BaseException {
|
|
24
|
+
readonly name: "DependencyFailedException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
resourceName?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
10
31
|
export declare class InternalServerException extends __BaseException {
|
|
11
32
|
readonly name: "InternalServerException";
|
|
12
33
|
readonly $fault: "server";
|
|
@@ -22,6 +43,13 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
22
43
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
44
|
);
|
|
24
45
|
}
|
|
46
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
47
|
+
readonly name: "ServiceQuotaExceededException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
constructor(
|
|
50
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
25
53
|
export declare class ThrottlingException extends __BaseException {
|
|
26
54
|
readonly name: "ThrottlingException";
|
|
27
55
|
readonly $fault: "client";
|
|
@@ -36,34 +64,6 @@ export declare class ValidationException extends __BaseException {
|
|
|
36
64
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
37
65
|
);
|
|
38
66
|
}
|
|
39
|
-
export declare class BadGatewayException extends __BaseException {
|
|
40
|
-
readonly name: "BadGatewayException";
|
|
41
|
-
readonly $fault: "server";
|
|
42
|
-
resourceName?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<BadGatewayException, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
|
-
export declare class ConflictException extends __BaseException {
|
|
48
|
-
readonly name: "ConflictException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
51
|
-
}
|
|
52
|
-
export declare class DependencyFailedException extends __BaseException {
|
|
53
|
-
readonly name: "DependencyFailedException";
|
|
54
|
-
readonly $fault: "client";
|
|
55
|
-
resourceName?: string | undefined;
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
61
|
-
readonly name: "ServiceQuotaExceededException";
|
|
62
|
-
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
67
|
export declare class ModelNotReadyException extends __BaseException {
|
|
68
68
|
readonly name: "ModelNotReadyException";
|
|
69
69
|
readonly $fault: "client";
|