@aws-sdk/client-bedrock-agent-runtime 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +114 -144
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +12 -43
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AgenticRetrieveStreamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DeleteAgentMemoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GenerateQueryCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAgentMemoryCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDocumentContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetExecutionFlowSnapshotCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetFlowExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListFlowExecutionEventsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListFlowExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/OptimizePromptCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RerankCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/StartFlowExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopFlowExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +29 -58
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/models/models_0.d.ts +23 -70
- package/dist-types/ts3.4/models/models_1.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/RerankPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/RetrievePaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import {
|
|
19
16
|
EventStreamSerdeInputConfig,
|
|
20
17
|
EventStreamSerdeResolvedConfig,
|
|
@@ -61,10 +58,7 @@ import {
|
|
|
61
58
|
DeleteSessionCommandInput,
|
|
62
59
|
DeleteSessionCommandOutput,
|
|
63
60
|
} from "./commands/DeleteSessionCommand";
|
|
64
|
-
import {
|
|
65
|
-
EndSessionCommandInput,
|
|
66
|
-
EndSessionCommandOutput,
|
|
67
|
-
} from "./commands/EndSessionCommand";
|
|
61
|
+
import { EndSessionCommandInput, EndSessionCommandOutput } from "./commands/EndSessionCommand";
|
|
68
62
|
import {
|
|
69
63
|
GenerateQueryCommandInput,
|
|
70
64
|
GenerateQueryCommandOutput,
|
|
@@ -89,18 +83,9 @@ import {
|
|
|
89
83
|
GetInvocationStepCommandInput,
|
|
90
84
|
GetInvocationStepCommandOutput,
|
|
91
85
|
} from "./commands/GetInvocationStepCommand";
|
|
92
|
-
import {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
} from "./commands/GetSessionCommand";
|
|
96
|
-
import {
|
|
97
|
-
InvokeAgentCommandInput,
|
|
98
|
-
InvokeAgentCommandOutput,
|
|
99
|
-
} from "./commands/InvokeAgentCommand";
|
|
100
|
-
import {
|
|
101
|
-
InvokeFlowCommandInput,
|
|
102
|
-
InvokeFlowCommandOutput,
|
|
103
|
-
} from "./commands/InvokeFlowCommand";
|
|
86
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
87
|
+
import { InvokeAgentCommandInput, InvokeAgentCommandOutput } from "./commands/InvokeAgentCommand";
|
|
88
|
+
import { InvokeFlowCommandInput, InvokeFlowCommandOutput } from "./commands/InvokeFlowCommand";
|
|
104
89
|
import {
|
|
105
90
|
InvokeInlineAgentCommandInput,
|
|
106
91
|
InvokeInlineAgentCommandOutput,
|
|
@@ -137,10 +122,7 @@ import {
|
|
|
137
122
|
PutInvocationStepCommandInput,
|
|
138
123
|
PutInvocationStepCommandOutput,
|
|
139
124
|
} from "./commands/PutInvocationStepCommand";
|
|
140
|
-
import {
|
|
141
|
-
RerankCommandInput,
|
|
142
|
-
RerankCommandOutput,
|
|
143
|
-
} from "./commands/RerankCommand";
|
|
125
|
+
import { RerankCommandInput, RerankCommandOutput } from "./commands/RerankCommand";
|
|
144
126
|
import {
|
|
145
127
|
RetrieveAndGenerateCommandInput,
|
|
146
128
|
RetrieveAndGenerateCommandOutput,
|
|
@@ -149,10 +131,7 @@ import {
|
|
|
149
131
|
RetrieveAndGenerateStreamCommandInput,
|
|
150
132
|
RetrieveAndGenerateStreamCommandOutput,
|
|
151
133
|
} from "./commands/RetrieveAndGenerateStreamCommand";
|
|
152
|
-
import {
|
|
153
|
-
RetrieveCommandInput,
|
|
154
|
-
RetrieveCommandOutput,
|
|
155
|
-
} from "./commands/RetrieveCommand";
|
|
134
|
+
import { RetrieveCommandInput, RetrieveCommandOutput } from "./commands/RetrieveCommand";
|
|
156
135
|
import {
|
|
157
136
|
StartFlowExecutionCommandInput,
|
|
158
137
|
StartFlowExecutionCommandOutput,
|
|
@@ -161,10 +140,7 @@ import {
|
|
|
161
140
|
StopFlowExecutionCommandInput,
|
|
162
141
|
StopFlowExecutionCommandOutput,
|
|
163
142
|
} from "./commands/StopFlowExecutionCommand";
|
|
164
|
-
import {
|
|
165
|
-
TagResourceCommandInput,
|
|
166
|
-
TagResourceCommandOutput,
|
|
167
|
-
} from "./commands/TagResourceCommand";
|
|
143
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
168
144
|
import {
|
|
169
145
|
UntagResourceCommandInput,
|
|
170
146
|
UntagResourceCommandOutput,
|
|
@@ -248,8 +224,7 @@ export type ServiceOutputTypes =
|
|
|
248
224
|
| TagResourceCommandOutput
|
|
249
225
|
| UntagResourceCommandOutput
|
|
250
226
|
| UpdateSessionCommandOutput;
|
|
251
|
-
export interface ClientDefaults
|
|
252
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
227
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
253
228
|
requestHandler?: __HttpHandlerUserInput;
|
|
254
229
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
255
230
|
urlParser?: __UrlParser;
|
|
@@ -287,8 +262,7 @@ export type BedrockAgentRuntimeClientConfigType = Partial<
|
|
|
287
262
|
EventStreamSerdeInputConfig &
|
|
288
263
|
HttpAuthSchemeInputConfig &
|
|
289
264
|
ClientInputEndpointParameters;
|
|
290
|
-
export interface BedrockAgentRuntimeClientConfig
|
|
291
|
-
extends BedrockAgentRuntimeClientConfigType {}
|
|
265
|
+
export interface BedrockAgentRuntimeClientConfig extends BedrockAgentRuntimeClientConfigType {}
|
|
292
266
|
export type BedrockAgentRuntimeClientResolvedConfigType =
|
|
293
267
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
294
268
|
Required<ClientDefaults> &
|
|
@@ -301,8 +275,7 @@ export type BedrockAgentRuntimeClientResolvedConfigType =
|
|
|
301
275
|
EventStreamSerdeResolvedConfig &
|
|
302
276
|
HttpAuthSchemeResolvedConfig &
|
|
303
277
|
ClientResolvedEndpointParameters;
|
|
304
|
-
export interface BedrockAgentRuntimeClientResolvedConfig
|
|
305
|
-
extends BedrockAgentRuntimeClientResolvedConfigType {}
|
|
278
|
+
export interface BedrockAgentRuntimeClientResolvedConfig extends BedrockAgentRuntimeClientResolvedConfigType {}
|
|
306
279
|
export declare class BedrockAgentRuntimeClient extends __Client<
|
|
307
280
|
__HttpHandlerOptions,
|
|
308
281
|
ServiceInputTypes,
|
|
@@ -310,10 +283,6 @@ export declare class BedrockAgentRuntimeClient extends __Client<
|
|
|
310
283
|
BedrockAgentRuntimeClientResolvedConfig
|
|
311
284
|
> {
|
|
312
285
|
readonly config: BedrockAgentRuntimeClientResolvedConfig;
|
|
313
|
-
constructor(
|
|
314
|
-
...[
|
|
315
|
-
configuration,
|
|
316
|
-
]: __CheckOptionalClientConfig<BedrockAgentRuntimeClientConfig>
|
|
317
|
-
);
|
|
286
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<BedrockAgentRuntimeClientConfig>);
|
|
318
287
|
destroy(): void;
|
|
319
288
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: BedrockAgentRuntimeHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: BedrockAgentRuntimeHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { BedrockAgentRuntimeClientResolvedConfig } from "../BedrockAgentRuntimeClient";
|
|
15
|
-
export interface BedrockAgentRuntimeHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface BedrockAgentRuntimeHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface BedrockAgentRuntimeHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface BedrockAgentRuntimeHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
BedrockAgentRuntimeClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
BedrockAgentRuntimeHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultBedrockAgentRuntimeHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: BedrockAgentRuntimeClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<BedrockAgentRuntimeHttpAuthSchemeParameters>;
|
|
31
|
-
export interface BedrockAgentRuntimeHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<BedrockAgentRuntimeHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface BedrockAgentRuntimeHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BedrockAgentRuntimeHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultBedrockAgentRuntimeHttpAuthSchemeProvider: BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./BedrockAgentRuntimeClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
BedrockAgentRuntimeClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,14 +2,12 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { AgenticRetrieveStreamResponse } from "../models/models_0";
|
|
3
3
|
import { AgenticRetrieveStreamRequest } from "../models/models_1";
|
|
4
4
|
export { __MetadataBearer };
|
|
5
|
-
export interface AgenticRetrieveStreamCommandInput
|
|
6
|
-
extends AgenticRetrieveStreamRequest {}
|
|
5
|
+
export interface AgenticRetrieveStreamCommandInput extends AgenticRetrieveStreamRequest {}
|
|
7
6
|
export interface AgenticRetrieveStreamCommandOutput
|
|
8
|
-
extends AgenticRetrieveStreamResponse,
|
|
9
|
-
__MetadataBearer {}
|
|
7
|
+
extends AgenticRetrieveStreamResponse, __MetadataBearer {}
|
|
10
8
|
declare const AgenticRetrieveStreamCommand_base: {
|
|
11
9
|
new (
|
|
12
|
-
input: AgenticRetrieveStreamCommandInput
|
|
10
|
+
input: AgenticRetrieveStreamCommandInput,
|
|
13
11
|
): import("@smithy/core/client").CommandImpl<
|
|
14
12
|
AgenticRetrieveStreamCommandInput,
|
|
15
13
|
AgenticRetrieveStreamCommandOutput,
|
|
@@ -18,7 +16,7 @@ declare const AgenticRetrieveStreamCommand_base: {
|
|
|
18
16
|
import("..").ServiceOutputTypes
|
|
19
17
|
>;
|
|
20
18
|
new (
|
|
21
|
-
input: AgenticRetrieveStreamCommandInput
|
|
19
|
+
input: AgenticRetrieveStreamCommandInput,
|
|
22
20
|
): import("@smithy/core/client").CommandImpl<
|
|
23
21
|
AgenticRetrieveStreamCommandInput,
|
|
24
22
|
AgenticRetrieveStreamCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateInvocationRequest,
|
|
4
|
-
CreateInvocationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateInvocationRequest, CreateInvocationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateInvocationCommandInput extends CreateInvocationRequest {}
|
|
8
|
-
export interface CreateInvocationCommandOutput
|
|
9
|
-
extends CreateInvocationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateInvocationCommandOutput extends CreateInvocationResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateInvocationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateInvocationCommandInput
|
|
8
|
+
input: CreateInvocationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateInvocationCommandInput,
|
|
16
11
|
CreateInvocationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateInvocationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateInvocationCommandInput
|
|
17
|
+
input: CreateInvocationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateInvocationCommandInput,
|
|
25
20
|
CreateInvocationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSessionRequest,
|
|
4
|
-
CreateSessionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSessionRequest, CreateSessionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateSessionCommandInput extends CreateSessionRequest {}
|
|
8
|
-
export interface CreateSessionCommandOutput
|
|
9
|
-
extends CreateSessionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateSessionCommandOutput extends CreateSessionResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateSessionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateSessionCommandInput
|
|
8
|
+
input: CreateSessionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateSessionCommandInput,
|
|
16
11
|
CreateSessionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAgentMemoryRequest,
|
|
4
|
-
DeleteAgentMemoryResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAgentMemoryRequest, DeleteAgentMemoryResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteAgentMemoryCommandInput
|
|
8
|
-
extends DeleteAgentMemoryRequest {}
|
|
4
|
+
export interface DeleteAgentMemoryCommandInput extends DeleteAgentMemoryRequest {}
|
|
9
5
|
export interface DeleteAgentMemoryCommandOutput
|
|
10
|
-
extends DeleteAgentMemoryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAgentMemoryResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteAgentMemoryCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteAgentMemoryCommandInput
|
|
9
|
+
input: DeleteAgentMemoryCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteAgentMemoryCommandInput,
|
|
17
12
|
DeleteAgentMemoryCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteAgentMemoryCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteAgentMemoryCommandInput
|
|
18
|
+
input: DeleteAgentMemoryCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteAgentMemoryCommandInput,
|
|
26
21
|
DeleteAgentMemoryCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSessionRequest,
|
|
4
|
-
DeleteSessionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
|
|
8
|
-
export interface DeleteSessionCommandOutput
|
|
9
|
-
extends DeleteSessionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteSessionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteSessionCommandInput
|
|
8
|
+
input: DeleteSessionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteSessionCommandInput,
|
|
16
11
|
DeleteSessionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteSessionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteSessionCommandInput
|
|
17
|
+
input: DeleteSessionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteSessionCommandInput,
|
|
25
20
|
DeleteSessionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { EndSessionRequest, EndSessionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface EndSessionCommandInput extends EndSessionRequest {}
|
|
5
|
-
export interface EndSessionCommandOutput
|
|
6
|
-
extends EndSessionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface EndSessionCommandOutput extends EndSessionResponse, __MetadataBearer {}
|
|
8
6
|
declare const EndSessionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: EndSessionCommandInput
|
|
8
|
+
input: EndSessionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
EndSessionCommandInput,
|
|
13
11
|
EndSessionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const EndSessionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: EndSessionCommandInput
|
|
17
|
+
input: EndSessionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
EndSessionCommandInput,
|
|
22
20
|
EndSessionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GenerateQueryRequest,
|
|
4
|
-
GenerateQueryResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GenerateQueryRequest, GenerateQueryResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GenerateQueryCommandInput extends GenerateQueryRequest {}
|
|
8
|
-
export interface GenerateQueryCommandOutput
|
|
9
|
-
extends GenerateQueryResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GenerateQueryCommandOutput extends GenerateQueryResponse, __MetadataBearer {}
|
|
11
6
|
declare const GenerateQueryCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GenerateQueryCommandInput
|
|
8
|
+
input: GenerateQueryCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GenerateQueryCommandInput,
|
|
16
11
|
GenerateQueryCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GenerateQueryCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GenerateQueryCommandInput
|
|
17
|
+
input: GenerateQueryCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GenerateQueryCommandInput,
|
|
25
20
|
GenerateQueryCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAgentMemoryRequest,
|
|
4
|
-
GetAgentMemoryResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAgentMemoryRequest, GetAgentMemoryResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetAgentMemoryCommandInput extends GetAgentMemoryRequest {}
|
|
8
|
-
export interface GetAgentMemoryCommandOutput
|
|
9
|
-
extends GetAgentMemoryResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAgentMemoryCommandOutput extends GetAgentMemoryResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetAgentMemoryCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetAgentMemoryCommandInput
|
|
8
|
+
input: GetAgentMemoryCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetAgentMemoryCommandInput,
|
|
16
11
|
GetAgentMemoryCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetAgentMemoryCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetAgentMemoryCommandInput
|
|
17
|
+
input: GetAgentMemoryCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetAgentMemoryCommandInput,
|
|
25
20
|
GetAgentMemoryCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDocumentContentRequest,
|
|
4
|
-
GetDocumentContentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDocumentContentRequest, GetDocumentContentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDocumentContentCommandInput
|
|
8
|
-
extends GetDocumentContentRequest {}
|
|
4
|
+
export interface GetDocumentContentCommandInput extends GetDocumentContentRequest {}
|
|
9
5
|
export interface GetDocumentContentCommandOutput
|
|
10
|
-
extends GetDocumentContentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDocumentContentResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDocumentContentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDocumentContentCommandInput
|
|
9
|
+
input: GetDocumentContentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDocumentContentCommandInput,
|
|
17
12
|
GetDocumentContentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDocumentContentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDocumentContentCommandInput
|
|
18
|
+
input: GetDocumentContentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDocumentContentCommandInput,
|
|
26
21
|
GetDocumentContentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetExecutionFlowSnapshotResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetExecutionFlowSnapshotCommandInput
|
|
8
|
-
extends GetExecutionFlowSnapshotRequest {}
|
|
7
|
+
export interface GetExecutionFlowSnapshotCommandInput extends GetExecutionFlowSnapshotRequest {}
|
|
9
8
|
export interface GetExecutionFlowSnapshotCommandOutput
|
|
10
|
-
extends GetExecutionFlowSnapshotResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetExecutionFlowSnapshotResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetExecutionFlowSnapshotCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetExecutionFlowSnapshotCommandInput
|
|
12
|
+
input: GetExecutionFlowSnapshotCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetExecutionFlowSnapshotCommandInput,
|
|
17
15
|
GetExecutionFlowSnapshotCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetExecutionFlowSnapshotCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetExecutionFlowSnapshotCommandInput
|
|
21
|
+
input: GetExecutionFlowSnapshotCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetExecutionFlowSnapshotCommandInput,
|
|
26
24
|
GetExecutionFlowSnapshotCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetFlowExecutionRequest,
|
|
4
|
-
GetFlowExecutionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetFlowExecutionRequest, GetFlowExecutionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetFlowExecutionCommandInput extends GetFlowExecutionRequest {}
|
|
8
|
-
export interface GetFlowExecutionCommandOutput
|
|
9
|
-
extends GetFlowExecutionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetFlowExecutionCommandOutput extends GetFlowExecutionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetFlowExecutionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetFlowExecutionCommandInput
|
|
8
|
+
input: GetFlowExecutionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetFlowExecutionCommandInput,
|
|
16
11
|
GetFlowExecutionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetFlowExecutionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetFlowExecutionCommandInput
|
|
17
|
+
input: GetFlowExecutionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetFlowExecutionCommandInput,
|
|
25
20
|
GetFlowExecutionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetInvocationStepRequest,
|
|
4
|
-
GetInvocationStepResponse,
|
|
5
|
-
} from "../models/models_1";
|
|
2
|
+
import { GetInvocationStepRequest, GetInvocationStepResponse } from "../models/models_1";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetInvocationStepCommandInput
|
|
8
|
-
extends GetInvocationStepRequest {}
|
|
4
|
+
export interface GetInvocationStepCommandInput extends GetInvocationStepRequest {}
|
|
9
5
|
export interface GetInvocationStepCommandOutput
|
|
10
|
-
extends GetInvocationStepResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetInvocationStepResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetInvocationStepCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetInvocationStepCommandInput
|
|
9
|
+
input: GetInvocationStepCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetInvocationStepCommandInput,
|
|
17
12
|
GetInvocationStepCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetInvocationStepCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetInvocationStepCommandInput
|
|
18
|
+
input: GetInvocationStepCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetInvocationStepCommandInput,
|
|
26
21
|
GetInvocationStepCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetSessionCommandInput extends GetSessionRequest {}
|
|
5
|
-
export interface GetSessionCommandOutput
|
|
6
|
-
extends GetSessionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetSessionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetSessionCommandInput
|
|
8
|
+
input: GetSessionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetSessionCommandInput,
|
|
13
11
|
GetSessionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetSessionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetSessionCommandInput
|
|
17
|
+
input: GetSessionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetSessionCommandInput,
|
|
22
20
|
GetSessionCommandOutput,
|
|
@@ -3,12 +3,10 @@ import { InvokeAgentResponse } from "../models/models_0";
|
|
|
3
3
|
import { InvokeAgentRequest } from "../models/models_1";
|
|
4
4
|
export { __MetadataBearer };
|
|
5
5
|
export interface InvokeAgentCommandInput extends InvokeAgentRequest {}
|
|
6
|
-
export interface InvokeAgentCommandOutput
|
|
7
|
-
extends InvokeAgentResponse,
|
|
8
|
-
__MetadataBearer {}
|
|
6
|
+
export interface InvokeAgentCommandOutput extends InvokeAgentResponse, __MetadataBearer {}
|
|
9
7
|
declare const InvokeAgentCommand_base: {
|
|
10
8
|
new (
|
|
11
|
-
input: InvokeAgentCommandInput
|
|
9
|
+
input: InvokeAgentCommandInput,
|
|
12
10
|
): import("@smithy/core/client").CommandImpl<
|
|
13
11
|
InvokeAgentCommandInput,
|
|
14
12
|
InvokeAgentCommandOutput,
|
|
@@ -17,7 +15,7 @@ declare const InvokeAgentCommand_base: {
|
|
|
17
15
|
import("..").ServiceOutputTypes
|
|
18
16
|
>;
|
|
19
17
|
new (
|
|
20
|
-
input: InvokeAgentCommandInput
|
|
18
|
+
input: InvokeAgentCommandInput,
|
|
21
19
|
): import("@smithy/core/client").CommandImpl<
|
|
22
20
|
InvokeAgentCommandInput,
|
|
23
21
|
InvokeAgentCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { InvokeFlowRequest, InvokeFlowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface InvokeFlowCommandInput extends InvokeFlowRequest {}
|
|
5
|
-
export interface InvokeFlowCommandOutput
|
|
6
|
-
extends InvokeFlowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface InvokeFlowCommandOutput extends InvokeFlowResponse, __MetadataBearer {}
|
|
8
6
|
declare const InvokeFlowCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: InvokeFlowCommandInput
|
|
8
|
+
input: InvokeFlowCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
InvokeFlowCommandInput,
|
|
13
11
|
InvokeFlowCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const InvokeFlowCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: InvokeFlowCommandInput
|
|
17
|
+
input: InvokeFlowCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
InvokeFlowCommandInput,
|
|
22
20
|
InvokeFlowCommandOutput,
|