@aws-sdk/client-bedrock-agent-runtime 3.1110.0 → 3.1112.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 +15 -1
- package/dist-cjs/index.js +302 -85
- package/dist-es/BedrockAgentRuntime.js +4 -0
- package/dist-es/commands/CheckIngestedDocumentAclCommand.js +4 -0
- package/dist-es/commands/GetIngestedDocumentAclCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +26 -0
- package/dist-es/schemas/schemas_0.js +243 -84
- package/dist-types/BedrockAgentRuntime.d.ts +15 -1
- package/dist-types/BedrockAgentRuntimeClient.d.ts +5 -3
- package/dist-types/commands/AgenticRetrieveStreamCommand.d.ts +44 -2
- package/dist-types/commands/CheckIngestedDocumentAclCommand.d.ts +91 -0
- package/dist-types/commands/CreateInvocationCommand.d.ts +1 -1
- package/dist-types/commands/CreateSessionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSessionCommand.d.ts +1 -1
- package/dist-types/commands/EndSessionCommand.d.ts +1 -1
- package/dist-types/commands/GetIngestedDocumentAclCommand.d.ts +129 -0
- package/dist-types/commands/GetSessionCommand.d.ts +1 -1
- package/dist-types/commands/InvokeAgentCommand.d.ts +1 -1
- package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +1 -2
- package/dist-types/commands/RetrieveCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +100 -0
- package/dist-types/models/models_0.d.ts +454 -607
- package/dist-types/models/models_1.d.ts +582 -6
- package/dist-types/runtimeConfig.browser.d.ts +39 -39
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +38 -38
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +19 -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/CheckIngestedDocumentAclCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIngestedDocumentAclCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +34 -0
- package/dist-types/ts3.4/models/models_0.d.ts +155 -302
- package/dist-types/ts3.4/models/models_1.d.ts +320 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +55 -57
- package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +59 -61
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/package.json +5 -5
|
@@ -4,50 +4,14 @@ import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClien
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig) => {
|
|
7
|
-
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
15
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
16
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
22
|
-
protocolSettings: {
|
|
23
|
-
defaultNamespace?: string;
|
|
24
|
-
[setting: string]: unknown;
|
|
25
|
-
};
|
|
26
|
-
apiVersion: string;
|
|
27
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
31
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
|
-
disableHostPrefix: boolean;
|
|
34
|
-
serviceId: string;
|
|
35
|
-
profile?: string;
|
|
36
|
-
logger: import("@smithy/types").Logger;
|
|
37
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
38
8
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
39
9
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
40
|
-
|
|
41
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
-
logger?: import("@smithy/types").Logger;
|
|
44
|
-
}) => import("@smithy/types").EndpointV2;
|
|
10
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
45
11
|
tls?: boolean;
|
|
46
12
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
47
13
|
serviceConfiguredEndpoint?: never;
|
|
48
|
-
|
|
49
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
50
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
51
15
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
52
16
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
53
17
|
signingEscapePath?: boolean;
|
|
@@ -55,4 +19,40 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
|
|
|
55
19
|
signingRegion?: string;
|
|
56
20
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
57
21
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
28
|
+
logger?: import("@smithy/types").Logger;
|
|
29
|
+
}) => import("@smithy/types").EndpointV2;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
32
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
35
|
+
protocolSettings: {
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
};
|
|
39
|
+
serviceId: string;
|
|
40
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
profile?: string;
|
|
45
|
+
runtime: string;
|
|
46
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
47
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
48
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
49
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
50
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
51
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
52
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
53
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
54
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
55
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
56
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
57
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
58
58
|
};
|
|
@@ -4,11 +4,46 @@ import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClien
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
9
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
10
|
+
tls?: boolean;
|
|
11
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
12
|
+
serviceConfiguredEndpoint?: never;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
42
|
runtime: string;
|
|
8
43
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
44
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
45
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
46
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
47
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
48
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
14
49
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -19,40 +54,5 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
|
|
|
19
54
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
55
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
56
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
24
|
-
protocolSettings: {
|
|
25
|
-
defaultNamespace?: string;
|
|
26
|
-
[setting: string]: unknown;
|
|
27
|
-
};
|
|
28
|
-
apiVersion: string;
|
|
29
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
30
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
31
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
33
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
35
|
-
disableHostPrefix: boolean;
|
|
36
|
-
serviceId: string;
|
|
37
57
|
profile?: string;
|
|
38
|
-
logger: import("@smithy/types").Logger;
|
|
39
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
42
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
43
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
44
|
-
logger?: import("@smithy/types").Logger;
|
|
45
|
-
}) => import("@smithy/types").EndpointV2;
|
|
46
|
-
tls?: boolean;
|
|
47
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
48
|
-
serviceConfiguredEndpoint?: never;
|
|
49
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
50
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
51
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
52
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
53
|
-
signingEscapePath?: boolean;
|
|
54
|
-
systemClockOffset?: number;
|
|
55
|
-
signingRegion?: string;
|
|
56
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
57
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
58
58
|
};
|
|
@@ -3,50 +3,14 @@ import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClien
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
|
-
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
|
-
[setting: string]: unknown;
|
|
13
|
-
};
|
|
14
|
-
apiVersion: string;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
-
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
logger: import("@smithy/types").Logger;
|
|
34
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
36
|
-
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
37
7
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
8
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
-
|
|
40
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
41
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
|
-
logger?: import("@smithy/types").Logger;
|
|
43
|
-
}) => import("@smithy/types").EndpointV2;
|
|
9
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
44
10
|
tls?: boolean;
|
|
45
11
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
12
|
serviceConfiguredEndpoint?: never;
|
|
47
|
-
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
14
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
15
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
16
|
signingEscapePath?: boolean;
|
|
@@ -54,4 +18,40 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
|
|
|
54
18
|
signingRegion?: string;
|
|
55
19
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
20
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
37
|
+
};
|
|
38
|
+
serviceId: string;
|
|
39
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
40
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
43
|
+
profile?: string;
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
46
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
47
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
48
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
49
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
50
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
51
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
52
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
53
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
54
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
55
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
56
|
+
runtime: string;
|
|
57
57
|
};
|
|
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentRuntimeHttpAuthSchemeProvider;
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
|
-
protocol: import("@smithy/types")
|
|
18
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
19
|
protocolSettings: {
|
|
20
20
|
[setting: string]: unknown;
|
|
21
21
|
defaultNamespace?: string;
|
|
@@ -36,6 +36,11 @@ export declare var AgenticRetrieveFailure$: StaticStructureSchema;
|
|
|
36
36
|
export declare var AgenticRetrieveFullDocExpansionDetails$: StaticStructureSchema;
|
|
37
37
|
export declare var AgenticRetrieveGeneratedResponse$: StaticStructureSchema;
|
|
38
38
|
export declare var AgenticRetrieveGuardrailWarning$: StaticStructureSchema;
|
|
39
|
+
export declare var AgenticRetrieveMemoryConfiguration$: StaticStructureSchema;
|
|
40
|
+
export declare var AgenticRetrieveMemoryMetadataFilter$: StaticStructureSchema;
|
|
41
|
+
export declare var AgenticRetrieveMemoryRetrievalConfig$: StaticStructureSchema;
|
|
42
|
+
export declare var AgenticRetrieveMemoryRetrieveDetails$: StaticStructureSchema;
|
|
43
|
+
export declare var AgenticRetrieveMemorySessionBinding$: StaticStructureSchema;
|
|
39
44
|
export declare var AgenticRetrieveMessage$: StaticStructureSchema;
|
|
40
45
|
export declare var AgenticRetrieveMessageContent$: StaticStructureSchema;
|
|
41
46
|
export declare var AgenticRetrievePolicyConfiguration$: StaticStructureSchema;
|
|
@@ -66,6 +71,8 @@ export declare var BedrockRerankingConfiguration$: StaticStructureSchema;
|
|
|
66
71
|
export declare var BedrockRerankingModelConfiguration$: StaticStructureSchema;
|
|
67
72
|
export declare var ByteContentDoc$: StaticStructureSchema;
|
|
68
73
|
export declare var ByteContentFile$: StaticStructureSchema;
|
|
74
|
+
export declare var CheckIngestedDocumentAclRequest$: StaticStructureSchema;
|
|
75
|
+
export declare var CheckIngestedDocumentAclResponse$: StaticStructureSchema;
|
|
69
76
|
export declare var Citation$: StaticStructureSchema;
|
|
70
77
|
export declare var CitationEvent$: StaticStructureSchema;
|
|
71
78
|
export declare var CodeInterpreterInvocationInput$: StaticStructureSchema;
|
|
@@ -86,6 +93,11 @@ export declare var DeleteAgentMemoryRequest$: StaticStructureSchema;
|
|
|
86
93
|
export declare var DeleteAgentMemoryResponse$: StaticStructureSchema;
|
|
87
94
|
export declare var DeleteSessionRequest$: StaticStructureSchema;
|
|
88
95
|
export declare var DeleteSessionResponse$: StaticStructureSchema;
|
|
96
|
+
export declare var DocumentAcl$: StaticStructureSchema;
|
|
97
|
+
export declare var DocumentAclCondition$: StaticStructureSchema;
|
|
98
|
+
export declare var DocumentAclGroup$: StaticStructureSchema;
|
|
99
|
+
export declare var DocumentAclMembership$: StaticStructureSchema;
|
|
100
|
+
export declare var DocumentAclUser$: StaticStructureSchema;
|
|
89
101
|
export declare var EndSessionRequest$: StaticStructureSchema;
|
|
90
102
|
export declare var EndSessionResponse$: StaticStructureSchema;
|
|
91
103
|
export declare var ExternalSource$: StaticStructureSchema;
|
|
@@ -138,6 +150,8 @@ export declare var GetExecutionFlowSnapshotRequest$: StaticStructureSchema;
|
|
|
138
150
|
export declare var GetExecutionFlowSnapshotResponse$: StaticStructureSchema;
|
|
139
151
|
export declare var GetFlowExecutionRequest$: StaticStructureSchema;
|
|
140
152
|
export declare var GetFlowExecutionResponse$: StaticStructureSchema;
|
|
153
|
+
export declare var GetIngestedDocumentAclRequest$: StaticStructureSchema;
|
|
154
|
+
export declare var GetIngestedDocumentAclResponse$: StaticStructureSchema;
|
|
141
155
|
export declare var GetInvocationStepRequest$: StaticStructureSchema;
|
|
142
156
|
export declare var GetInvocationStepResponse$: StaticStructureSchema;
|
|
143
157
|
export declare var GetSessionRequest$: StaticStructureSchema;
|
|
@@ -323,6 +337,9 @@ export declare var VectorSearchBedrockRerankingModelConfiguration$: StaticStruct
|
|
|
323
337
|
export declare var VectorSearchRerankingConfiguration$: StaticStructureSchema;
|
|
324
338
|
export declare var VideoSegment$: StaticStructureSchema;
|
|
325
339
|
export declare var ActionGroupExecutor$: StaticUnionSchema;
|
|
340
|
+
export declare var AgenticRetrieveMemoryMetadataFilterLeft$: StaticUnionSchema;
|
|
341
|
+
export declare var AgenticRetrieveMemoryMetadataFilterRight$: StaticUnionSchema;
|
|
342
|
+
export declare var AgenticRetrieveMemoryMetadataValue$: StaticUnionSchema;
|
|
326
343
|
export declare var AgenticRetrieveStreamResponseOutput$: StaticUnionSchema;
|
|
327
344
|
export declare var AgenticRetrieveWarning$: StaticUnionSchema;
|
|
328
345
|
export declare var APISchema$: StaticUnionSchema;
|
|
@@ -365,6 +382,7 @@ export declare var RoutingClassifierTrace$: StaticUnionSchema;
|
|
|
365
382
|
export declare var Trace$: StaticUnionSchema;
|
|
366
383
|
export declare var TraceElements$: StaticUnionSchema;
|
|
367
384
|
export declare var AgenticRetrieveStream$: StaticOperationSchema;
|
|
385
|
+
export declare var CheckIngestedDocumentAcl$: StaticOperationSchema;
|
|
368
386
|
export declare var CreateInvocation$: StaticOperationSchema;
|
|
369
387
|
export declare var CreateSession$: StaticOperationSchema;
|
|
370
388
|
export declare var DeleteAgentMemory$: StaticOperationSchema;
|
|
@@ -375,6 +393,7 @@ export declare var GetAgentMemory$: StaticOperationSchema;
|
|
|
375
393
|
export declare var GetDocumentContent$: StaticOperationSchema;
|
|
376
394
|
export declare var GetExecutionFlowSnapshot$: StaticOperationSchema;
|
|
377
395
|
export declare var GetFlowExecution$: StaticOperationSchema;
|
|
396
|
+
export declare var GetIngestedDocumentAcl$: StaticOperationSchema;
|
|
378
397
|
export declare var GetInvocationStep$: StaticOperationSchema;
|
|
379
398
|
export declare var GetSession$: StaticOperationSchema;
|
|
380
399
|
export declare var InvokeAgent$: StaticOperationSchema;
|
|
@@ -8,6 +8,10 @@ import {
|
|
|
8
8
|
AgenticRetrieveStreamCommandInput,
|
|
9
9
|
AgenticRetrieveStreamCommandOutput,
|
|
10
10
|
} from "./commands/AgenticRetrieveStreamCommand";
|
|
11
|
+
import {
|
|
12
|
+
CheckIngestedDocumentAclCommandInput,
|
|
13
|
+
CheckIngestedDocumentAclCommandOutput,
|
|
14
|
+
} from "./commands/CheckIngestedDocumentAclCommand";
|
|
11
15
|
import {
|
|
12
16
|
CreateInvocationCommandInput,
|
|
13
17
|
CreateInvocationCommandOutput,
|
|
@@ -45,6 +49,10 @@ import {
|
|
|
45
49
|
GetFlowExecutionCommandInput,
|
|
46
50
|
GetFlowExecutionCommandOutput,
|
|
47
51
|
} from "./commands/GetFlowExecutionCommand";
|
|
52
|
+
import {
|
|
53
|
+
GetIngestedDocumentAclCommandInput,
|
|
54
|
+
GetIngestedDocumentAclCommandOutput,
|
|
55
|
+
} from "./commands/GetIngestedDocumentAclCommand";
|
|
48
56
|
import {
|
|
49
57
|
GetInvocationStepCommandInput,
|
|
50
58
|
GetInvocationStepCommandOutput,
|
|
@@ -129,6 +137,19 @@ export interface BedrockAgentRuntime {
|
|
|
129
137
|
options: __HttpHandlerOptions,
|
|
130
138
|
cb: (err: any, data?: AgenticRetrieveStreamCommandOutput) => void,
|
|
131
139
|
): void;
|
|
140
|
+
checkIngestedDocumentAcl(
|
|
141
|
+
args: CheckIngestedDocumentAclCommandInput,
|
|
142
|
+
options?: __HttpHandlerOptions,
|
|
143
|
+
): Promise<CheckIngestedDocumentAclCommandOutput>;
|
|
144
|
+
checkIngestedDocumentAcl(
|
|
145
|
+
args: CheckIngestedDocumentAclCommandInput,
|
|
146
|
+
cb: (err: any, data?: CheckIngestedDocumentAclCommandOutput) => void,
|
|
147
|
+
): void;
|
|
148
|
+
checkIngestedDocumentAcl(
|
|
149
|
+
args: CheckIngestedDocumentAclCommandInput,
|
|
150
|
+
options: __HttpHandlerOptions,
|
|
151
|
+
cb: (err: any, data?: CheckIngestedDocumentAclCommandOutput) => void,
|
|
152
|
+
): void;
|
|
132
153
|
createInvocation(
|
|
133
154
|
args: CreateInvocationCommandInput,
|
|
134
155
|
options?: __HttpHandlerOptions,
|
|
@@ -260,6 +281,19 @@ export interface BedrockAgentRuntime {
|
|
|
260
281
|
options: __HttpHandlerOptions,
|
|
261
282
|
cb: (err: any, data?: GetFlowExecutionCommandOutput) => void,
|
|
262
283
|
): void;
|
|
284
|
+
getIngestedDocumentAcl(
|
|
285
|
+
args: GetIngestedDocumentAclCommandInput,
|
|
286
|
+
options?: __HttpHandlerOptions,
|
|
287
|
+
): Promise<GetIngestedDocumentAclCommandOutput>;
|
|
288
|
+
getIngestedDocumentAcl(
|
|
289
|
+
args: GetIngestedDocumentAclCommandInput,
|
|
290
|
+
cb: (err: any, data?: GetIngestedDocumentAclCommandOutput) => void,
|
|
291
|
+
): void;
|
|
292
|
+
getIngestedDocumentAcl(
|
|
293
|
+
args: GetIngestedDocumentAclCommandInput,
|
|
294
|
+
options: __HttpHandlerOptions,
|
|
295
|
+
cb: (err: any, data?: GetIngestedDocumentAclCommandOutput) => void,
|
|
296
|
+
): void;
|
|
263
297
|
getInvocationStep(
|
|
264
298
|
args: GetInvocationStepCommandInput,
|
|
265
299
|
options?: __HttpHandlerOptions,
|
|
@@ -42,6 +42,10 @@ import {
|
|
|
42
42
|
AgenticRetrieveStreamCommandInput,
|
|
43
43
|
AgenticRetrieveStreamCommandOutput,
|
|
44
44
|
} from "./commands/AgenticRetrieveStreamCommand";
|
|
45
|
+
import {
|
|
46
|
+
CheckIngestedDocumentAclCommandInput,
|
|
47
|
+
CheckIngestedDocumentAclCommandOutput,
|
|
48
|
+
} from "./commands/CheckIngestedDocumentAclCommand";
|
|
45
49
|
import {
|
|
46
50
|
CreateInvocationCommandInput,
|
|
47
51
|
CreateInvocationCommandOutput,
|
|
@@ -79,6 +83,10 @@ import {
|
|
|
79
83
|
GetFlowExecutionCommandInput,
|
|
80
84
|
GetFlowExecutionCommandOutput,
|
|
81
85
|
} from "./commands/GetFlowExecutionCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetIngestedDocumentAclCommandInput,
|
|
88
|
+
GetIngestedDocumentAclCommandOutput,
|
|
89
|
+
} from "./commands/GetIngestedDocumentAclCommand";
|
|
82
90
|
import {
|
|
83
91
|
GetInvocationStepCommandInput,
|
|
84
92
|
GetInvocationStepCommandOutput,
|
|
@@ -158,6 +166,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
158
166
|
export { __Client };
|
|
159
167
|
export type ServiceInputTypes =
|
|
160
168
|
| AgenticRetrieveStreamCommandInput
|
|
169
|
+
| CheckIngestedDocumentAclCommandInput
|
|
161
170
|
| CreateInvocationCommandInput
|
|
162
171
|
| CreateSessionCommandInput
|
|
163
172
|
| DeleteAgentMemoryCommandInput
|
|
@@ -168,6 +177,7 @@ export type ServiceInputTypes =
|
|
|
168
177
|
| GetDocumentContentCommandInput
|
|
169
178
|
| GetExecutionFlowSnapshotCommandInput
|
|
170
179
|
| GetFlowExecutionCommandInput
|
|
180
|
+
| GetIngestedDocumentAclCommandInput
|
|
171
181
|
| GetInvocationStepCommandInput
|
|
172
182
|
| GetSessionCommandInput
|
|
173
183
|
| InvokeAgentCommandInput
|
|
@@ -192,6 +202,7 @@ export type ServiceInputTypes =
|
|
|
192
202
|
| UpdateSessionCommandInput;
|
|
193
203
|
export type ServiceOutputTypes =
|
|
194
204
|
| AgenticRetrieveStreamCommandOutput
|
|
205
|
+
| CheckIngestedDocumentAclCommandOutput
|
|
195
206
|
| CreateInvocationCommandOutput
|
|
196
207
|
| CreateSessionCommandOutput
|
|
197
208
|
| DeleteAgentMemoryCommandOutput
|
|
@@ -202,6 +213,7 @@ export type ServiceOutputTypes =
|
|
|
202
213
|
| GetDocumentContentCommandOutput
|
|
203
214
|
| GetExecutionFlowSnapshotCommandOutput
|
|
204
215
|
| GetFlowExecutionCommandOutput
|
|
216
|
+
| GetIngestedDocumentAclCommandOutput
|
|
205
217
|
| GetInvocationStepCommandOutput
|
|
206
218
|
| GetSessionCommandOutput
|
|
207
219
|
| InvokeAgentCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CheckIngestedDocumentAclRequest,
|
|
4
|
+
CheckIngestedDocumentAclResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface CheckIngestedDocumentAclCommandInput extends CheckIngestedDocumentAclRequest {}
|
|
8
|
+
export interface CheckIngestedDocumentAclCommandOutput
|
|
9
|
+
extends CheckIngestedDocumentAclResponse, __MetadataBearer {}
|
|
10
|
+
declare const CheckIngestedDocumentAclCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: CheckIngestedDocumentAclCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
CheckIngestedDocumentAclCommandInput,
|
|
15
|
+
CheckIngestedDocumentAclCommandOutput,
|
|
16
|
+
import("..").BedrockAgentRuntimeClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: CheckIngestedDocumentAclCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CheckIngestedDocumentAclCommandInput,
|
|
24
|
+
CheckIngestedDocumentAclCommandOutput,
|
|
25
|
+
import("..").BedrockAgentRuntimeClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class CheckIngestedDocumentAclCommand extends CheckIngestedDocumentAclCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: CheckIngestedDocumentAclRequest;
|
|
35
|
+
output: CheckIngestedDocumentAclResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: CheckIngestedDocumentAclCommandInput;
|
|
39
|
+
output: CheckIngestedDocumentAclCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { CreateInvocationRequest, CreateInvocationResponse } from "../models/
|
|
2
|
+
import { CreateInvocationRequest, CreateInvocationResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateInvocationCommandInput extends CreateInvocationRequest {}
|
|
5
5
|
export interface CreateInvocationCommandOutput extends CreateInvocationResponse, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { CreateSessionRequest, CreateSessionResponse } from "../models/
|
|
2
|
+
import { CreateSessionRequest, CreateSessionResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateSessionCommandInput extends CreateSessionRequest {}
|
|
5
5
|
export interface CreateSessionCommandOutput extends CreateSessionResponse, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { DeleteSessionRequest, DeleteSessionResponse } from "../models/
|
|
2
|
+
import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
|
|
5
5
|
export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { EndSessionRequest, EndSessionResponse } from "../models/
|
|
2
|
+
import { EndSessionRequest, EndSessionResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface EndSessionCommandInput extends EndSessionRequest {}
|
|
5
5
|
export interface EndSessionCommandOutput extends EndSessionResponse, __MetadataBearer {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetIngestedDocumentAclRequest, GetIngestedDocumentAclResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetIngestedDocumentAclCommandInput extends GetIngestedDocumentAclRequest {}
|
|
5
|
+
export interface GetIngestedDocumentAclCommandOutput
|
|
6
|
+
extends GetIngestedDocumentAclResponse, __MetadataBearer {}
|
|
7
|
+
declare const GetIngestedDocumentAclCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: GetIngestedDocumentAclCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
GetIngestedDocumentAclCommandInput,
|
|
12
|
+
GetIngestedDocumentAclCommandOutput,
|
|
13
|
+
import("..").BedrockAgentRuntimeClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: GetIngestedDocumentAclCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
GetIngestedDocumentAclCommandInput,
|
|
21
|
+
GetIngestedDocumentAclCommandOutput,
|
|
22
|
+
import("..").BedrockAgentRuntimeClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class GetIngestedDocumentAclCommand extends GetIngestedDocumentAclCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: GetIngestedDocumentAclRequest;
|
|
32
|
+
output: GetIngestedDocumentAclResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: GetIngestedDocumentAclCommandInput;
|
|
36
|
+
output: GetIngestedDocumentAclCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { GetSessionRequest, GetSessionResponse } from "../models/
|
|
2
|
+
import { GetSessionRequest, GetSessionResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetSessionCommandInput extends GetSessionRequest {}
|
|
5
5
|
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
RetrieveAndGenerateStreamRequest,
|
|
4
|
+
RetrieveAndGenerateStreamResponse,
|
|
5
|
+
} from "../models/models_1";
|
|
4
6
|
export { __MetadataBearer };
|
|
5
7
|
export interface RetrieveAndGenerateStreamCommandInput extends RetrieveAndGenerateStreamRequest {}
|
|
6
8
|
export interface RetrieveAndGenerateStreamCommandOutput
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { RetrieveResponse } from "../models/
|
|
3
|
-
import { RetrieveRequest } from "../models/models_1";
|
|
2
|
+
import { RetrieveRequest, RetrieveResponse } from "../models/models_1";
|
|
4
3
|
export { __MetadataBearer };
|
|
5
4
|
export interface RetrieveCommandInput extends RetrieveRequest {}
|
|
6
5
|
export interface RetrieveCommandOutput extends RetrieveResponse, __MetadataBearer {}
|