@aws-sdk/client-bedrock-data-automation 3.1022.0 → 3.1024.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 +70 -0
- package/dist-cjs/index.js +176 -3
- package/dist-cjs/schemas/schemas_0.js +381 -17
- package/dist-es/BedrockDataAutomation.js +26 -0
- package/dist-es/commands/CreateDataAutomationLibraryCommand.js +16 -0
- package/dist-es/commands/DeleteDataAutomationLibraryCommand.js +16 -0
- package/dist-es/commands/GetDataAutomationLibraryCommand.js +16 -0
- package/dist-es/commands/GetDataAutomationLibraryEntityCommand.js +16 -0
- package/dist-es/commands/GetDataAutomationLibraryIngestionJobCommand.js +16 -0
- package/dist-es/commands/InvokeDataAutomationLibraryIngestionJobCommand.js +16 -0
- package/dist-es/commands/ListDataAutomationLibrariesCommand.js +16 -0
- package/dist-es/commands/ListDataAutomationLibraryEntitiesCommand.js +16 -0
- package/dist-es/commands/ListDataAutomationLibraryIngestionJobsCommand.js +16 -0
- package/dist-es/commands/UpdateDataAutomationLibraryCommand.js +16 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/enums.js +20 -3
- package/dist-es/pagination/ListDataAutomationLibrariesPaginator.js +4 -0
- package/dist-es/pagination/ListDataAutomationLibraryEntitiesPaginator.js +4 -0
- package/dist-es/pagination/ListDataAutomationLibraryIngestionJobsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +377 -14
- package/dist-types/BedrockDataAutomation.d.ts +92 -0
- package/dist-types/BedrockDataAutomationClient.d.ts +12 -2
- package/dist-types/commands/CreateDataAutomationLibraryCommand.d.ts +107 -0
- package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +7 -0
- package/dist-types/commands/DeleteDataAutomationLibraryCommand.d.ts +93 -0
- package/dist-types/commands/GetDataAutomationLibraryCommand.d.ts +105 -0
- package/dist-types/commands/GetDataAutomationLibraryEntityCommand.d.ts +104 -0
- package/dist-types/commands/GetDataAutomationLibraryIngestionJobCommand.d.ts +102 -0
- package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +7 -0
- package/dist-types/commands/InvokeDataAutomationLibraryIngestionJobCommand.d.ts +140 -0
- package/dist-types/commands/ListDataAutomationLibrariesCommand.d.ts +98 -0
- package/dist-types/commands/ListDataAutomationLibraryEntitiesCommand.d.ts +103 -0
- package/dist-types/commands/ListDataAutomationLibraryIngestionJobsCommand.d.ts +101 -0
- package/dist-types/commands/ListDataAutomationProjectsCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDataAutomationLibraryCommand.d.ts +95 -0
- package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +7 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/enums.d.ts +53 -4
- package/dist-types/models/models_0.d.ts +897 -1
- package/dist-types/pagination/ListDataAutomationLibrariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataAutomationLibraryEntitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataAutomationLibraryIngestionJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +52 -1
- package/dist-types/ts3.4/BedrockDataAutomation.d.ts +216 -0
- package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/CreateDataAutomationLibraryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataAutomationLibraryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryEntityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataAutomationLibraryIngestionJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/InvokeDataAutomationLibraryIngestionJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataAutomationLibrariesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataAutomationLibraryEntitiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataAutomationLibraryIngestionJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataAutomationLibraryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/enums.d.ts +29 -5
- package/dist-types/ts3.4/models/models_0.d.ts +267 -0
- package/dist-types/ts3.4/pagination/ListDataAutomationLibrariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataAutomationLibraryEntitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataAutomationLibraryIngestionJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +52 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDataAutomationLibraryRequest,
|
|
10
|
+
DeleteDataAutomationLibraryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataAutomationLibraryCommandInput
|
|
15
|
+
extends DeleteDataAutomationLibraryRequest {}
|
|
16
|
+
export interface DeleteDataAutomationLibraryCommandOutput
|
|
17
|
+
extends DeleteDataAutomationLibraryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataAutomationLibraryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataAutomationLibraryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataAutomationLibraryCommandInput,
|
|
24
|
+
DeleteDataAutomationLibraryCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteDataAutomationLibraryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataAutomationLibraryCommandInput,
|
|
33
|
+
DeleteDataAutomationLibraryCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataAutomationLibraryCommand extends DeleteDataAutomationLibraryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataAutomationLibraryRequest;
|
|
44
|
+
output: DeleteDataAutomationLibraryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataAutomationLibraryCommandInput;
|
|
48
|
+
output: DeleteDataAutomationLibraryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDataAutomationLibraryRequest,
|
|
10
|
+
GetDataAutomationLibraryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataAutomationLibraryCommandInput
|
|
15
|
+
extends GetDataAutomationLibraryRequest {}
|
|
16
|
+
export interface GetDataAutomationLibraryCommandOutput
|
|
17
|
+
extends GetDataAutomationLibraryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataAutomationLibraryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataAutomationLibraryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataAutomationLibraryCommandInput,
|
|
24
|
+
GetDataAutomationLibraryCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDataAutomationLibraryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataAutomationLibraryCommandInput,
|
|
33
|
+
GetDataAutomationLibraryCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataAutomationLibraryCommand extends GetDataAutomationLibraryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataAutomationLibraryRequest;
|
|
44
|
+
output: GetDataAutomationLibraryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataAutomationLibraryCommandInput;
|
|
48
|
+
output: GetDataAutomationLibraryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDataAutomationLibraryEntityRequest,
|
|
10
|
+
GetDataAutomationLibraryEntityResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataAutomationLibraryEntityCommandInput
|
|
15
|
+
extends GetDataAutomationLibraryEntityRequest {}
|
|
16
|
+
export interface GetDataAutomationLibraryEntityCommandOutput
|
|
17
|
+
extends GetDataAutomationLibraryEntityResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataAutomationLibraryEntityCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataAutomationLibraryEntityCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataAutomationLibraryEntityCommandInput,
|
|
24
|
+
GetDataAutomationLibraryEntityCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDataAutomationLibraryEntityCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataAutomationLibraryEntityCommandInput,
|
|
33
|
+
GetDataAutomationLibraryEntityCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataAutomationLibraryEntityCommand extends GetDataAutomationLibraryEntityCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataAutomationLibraryEntityRequest;
|
|
44
|
+
output: GetDataAutomationLibraryEntityResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataAutomationLibraryEntityCommandInput;
|
|
48
|
+
output: GetDataAutomationLibraryEntityCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDataAutomationLibraryIngestionJobRequest,
|
|
10
|
+
GetDataAutomationLibraryIngestionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataAutomationLibraryIngestionJobCommandInput
|
|
15
|
+
extends GetDataAutomationLibraryIngestionJobRequest {}
|
|
16
|
+
export interface GetDataAutomationLibraryIngestionJobCommandOutput
|
|
17
|
+
extends GetDataAutomationLibraryIngestionJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataAutomationLibraryIngestionJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataAutomationLibraryIngestionJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
24
|
+
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDataAutomationLibraryIngestionJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
33
|
+
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataAutomationLibraryIngestionJobCommand extends GetDataAutomationLibraryIngestionJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataAutomationLibraryIngestionJobRequest;
|
|
44
|
+
output: GetDataAutomationLibraryIngestionJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataAutomationLibraryIngestionJobCommandInput;
|
|
48
|
+
output: GetDataAutomationLibraryIngestionJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
InvokeDataAutomationLibraryIngestionJobRequest,
|
|
10
|
+
InvokeDataAutomationLibraryIngestionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
15
|
+
extends InvokeDataAutomationLibraryIngestionJobRequest {}
|
|
16
|
+
export interface InvokeDataAutomationLibraryIngestionJobCommandOutput
|
|
17
|
+
extends InvokeDataAutomationLibraryIngestionJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const InvokeDataAutomationLibraryIngestionJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
24
|
+
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
33
|
+
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class InvokeDataAutomationLibraryIngestionJobCommand extends InvokeDataAutomationLibraryIngestionJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: InvokeDataAutomationLibraryIngestionJobRequest;
|
|
44
|
+
output: InvokeDataAutomationLibraryIngestionJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: InvokeDataAutomationLibraryIngestionJobCommandInput;
|
|
48
|
+
output: InvokeDataAutomationLibraryIngestionJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDataAutomationLibrariesRequest,
|
|
10
|
+
ListDataAutomationLibrariesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataAutomationLibrariesCommandInput
|
|
15
|
+
extends ListDataAutomationLibrariesRequest {}
|
|
16
|
+
export interface ListDataAutomationLibrariesCommandOutput
|
|
17
|
+
extends ListDataAutomationLibrariesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataAutomationLibrariesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataAutomationLibrariesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataAutomationLibrariesCommandInput,
|
|
24
|
+
ListDataAutomationLibrariesCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListDataAutomationLibrariesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataAutomationLibrariesCommandInput,
|
|
33
|
+
ListDataAutomationLibrariesCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataAutomationLibrariesCommand extends ListDataAutomationLibrariesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataAutomationLibrariesRequest;
|
|
44
|
+
output: ListDataAutomationLibrariesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataAutomationLibrariesCommandInput;
|
|
48
|
+
output: ListDataAutomationLibrariesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDataAutomationLibraryEntitiesRequest,
|
|
10
|
+
ListDataAutomationLibraryEntitiesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataAutomationLibraryEntitiesCommandInput
|
|
15
|
+
extends ListDataAutomationLibraryEntitiesRequest {}
|
|
16
|
+
export interface ListDataAutomationLibraryEntitiesCommandOutput
|
|
17
|
+
extends ListDataAutomationLibraryEntitiesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataAutomationLibraryEntitiesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataAutomationLibraryEntitiesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataAutomationLibraryEntitiesCommandInput,
|
|
24
|
+
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDataAutomationLibraryEntitiesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataAutomationLibraryEntitiesCommandInput,
|
|
33
|
+
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataAutomationLibraryEntitiesCommand extends ListDataAutomationLibraryEntitiesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataAutomationLibraryEntitiesRequest;
|
|
44
|
+
output: ListDataAutomationLibraryEntitiesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataAutomationLibraryEntitiesCommandInput;
|
|
48
|
+
output: ListDataAutomationLibraryEntitiesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDataAutomationLibraryIngestionJobsRequest,
|
|
10
|
+
ListDataAutomationLibraryIngestionJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataAutomationLibraryIngestionJobsCommandInput
|
|
15
|
+
extends ListDataAutomationLibraryIngestionJobsRequest {}
|
|
16
|
+
export interface ListDataAutomationLibraryIngestionJobsCommandOutput
|
|
17
|
+
extends ListDataAutomationLibraryIngestionJobsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataAutomationLibraryIngestionJobsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataAutomationLibraryIngestionJobsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
24
|
+
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDataAutomationLibraryIngestionJobsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
33
|
+
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataAutomationLibraryIngestionJobsCommand extends ListDataAutomationLibraryIngestionJobsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataAutomationLibraryIngestionJobsRequest;
|
|
44
|
+
output: ListDataAutomationLibraryIngestionJobsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataAutomationLibraryIngestionJobsCommandInput;
|
|
48
|
+
output: ListDataAutomationLibraryIngestionJobsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateDataAutomationLibraryRequest,
|
|
10
|
+
UpdateDataAutomationLibraryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateDataAutomationLibraryCommandInput
|
|
15
|
+
extends UpdateDataAutomationLibraryRequest {}
|
|
16
|
+
export interface UpdateDataAutomationLibraryCommandOutput
|
|
17
|
+
extends UpdateDataAutomationLibraryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateDataAutomationLibraryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateDataAutomationLibraryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateDataAutomationLibraryCommandInput,
|
|
24
|
+
UpdateDataAutomationLibraryCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateDataAutomationLibraryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateDataAutomationLibraryCommandInput,
|
|
33
|
+
UpdateDataAutomationLibraryCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateDataAutomationLibraryCommand extends UpdateDataAutomationLibraryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateDataAutomationLibraryRequest;
|
|
44
|
+
output: UpdateDataAutomationLibraryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateDataAutomationLibraryCommandInput;
|
|
48
|
+
output: UpdateDataAutomationLibraryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,17 +1,27 @@
|
|
|
1
1
|
export * from "./CopyBlueprintStageCommand";
|
|
2
2
|
export * from "./CreateBlueprintCommand";
|
|
3
3
|
export * from "./CreateBlueprintVersionCommand";
|
|
4
|
+
export * from "./CreateDataAutomationLibraryCommand";
|
|
4
5
|
export * from "./CreateDataAutomationProjectCommand";
|
|
5
6
|
export * from "./DeleteBlueprintCommand";
|
|
7
|
+
export * from "./DeleteDataAutomationLibraryCommand";
|
|
6
8
|
export * from "./DeleteDataAutomationProjectCommand";
|
|
7
9
|
export * from "./GetBlueprintCommand";
|
|
8
10
|
export * from "./GetBlueprintOptimizationStatusCommand";
|
|
11
|
+
export * from "./GetDataAutomationLibraryCommand";
|
|
12
|
+
export * from "./GetDataAutomationLibraryEntityCommand";
|
|
13
|
+
export * from "./GetDataAutomationLibraryIngestionJobCommand";
|
|
9
14
|
export * from "./GetDataAutomationProjectCommand";
|
|
10
15
|
export * from "./InvokeBlueprintOptimizationAsyncCommand";
|
|
16
|
+
export * from "./InvokeDataAutomationLibraryIngestionJobCommand";
|
|
11
17
|
export * from "./ListBlueprintsCommand";
|
|
18
|
+
export * from "./ListDataAutomationLibrariesCommand";
|
|
19
|
+
export * from "./ListDataAutomationLibraryEntitiesCommand";
|
|
20
|
+
export * from "./ListDataAutomationLibraryIngestionJobsCommand";
|
|
12
21
|
export * from "./ListDataAutomationProjectsCommand";
|
|
13
22
|
export * from "./ListTagsForResourceCommand";
|
|
14
23
|
export * from "./TagResourceCommand";
|
|
15
24
|
export * from "./UntagResourceCommand";
|
|
16
25
|
export * from "./UpdateBlueprintCommand";
|
|
26
|
+
export * from "./UpdateDataAutomationLibraryCommand";
|
|
17
27
|
export * from "./UpdateDataAutomationProjectCommand";
|
|
@@ -38,12 +38,24 @@ export declare const ResourceOwner: {
|
|
|
38
38
|
readonly SERVICE: "SERVICE";
|
|
39
39
|
};
|
|
40
40
|
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
41
|
-
export declare const
|
|
42
|
-
readonly
|
|
43
|
-
readonly EN: "EN";
|
|
41
|
+
export declare const EntityType: {
|
|
42
|
+
readonly VOCABULARY: "VOCABULARY";
|
|
44
43
|
};
|
|
45
|
-
export type
|
|
46
|
-
|
|
44
|
+
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
45
|
+
export declare const LibraryIngestionJobStatus: {
|
|
46
|
+
readonly COMPLETED: "COMPLETED";
|
|
47
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
48
|
+
readonly FAILED: "FAILED";
|
|
49
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
50
|
+
};
|
|
51
|
+
export type LibraryIngestionJobStatus =
|
|
52
|
+
(typeof LibraryIngestionJobStatus)[keyof typeof LibraryIngestionJobStatus];
|
|
53
|
+
export declare const LibraryIngestionJobOperationType: {
|
|
54
|
+
readonly DELETE: "DELETE";
|
|
55
|
+
readonly UPSERT: "UPSERT";
|
|
56
|
+
};
|
|
57
|
+
export type LibraryIngestionJobOperationType =
|
|
58
|
+
(typeof LibraryIngestionJobOperationType)[keyof typeof LibraryIngestionJobOperationType];
|
|
47
59
|
export declare const Language: {
|
|
48
60
|
readonly CN: "CN";
|
|
49
61
|
readonly DE: "DE";
|
|
@@ -58,6 +70,18 @@ export declare const Language: {
|
|
|
58
70
|
readonly TW: "TW";
|
|
59
71
|
};
|
|
60
72
|
export type Language = (typeof Language)[keyof typeof Language];
|
|
73
|
+
export declare const DataAutomationLibraryStatus: {
|
|
74
|
+
readonly ACTIVE: "ACTIVE";
|
|
75
|
+
readonly DELETING: "DELETING";
|
|
76
|
+
};
|
|
77
|
+
export type DataAutomationLibraryStatus =
|
|
78
|
+
(typeof DataAutomationLibraryStatus)[keyof typeof DataAutomationLibraryStatus];
|
|
79
|
+
export declare const AudioGenerativeOutputLanguage: {
|
|
80
|
+
readonly DEFAULT: "DEFAULT";
|
|
81
|
+
readonly EN: "EN";
|
|
82
|
+
};
|
|
83
|
+
export type AudioGenerativeOutputLanguage =
|
|
84
|
+
(typeof AudioGenerativeOutputLanguage)[keyof typeof AudioGenerativeOutputLanguage];
|
|
61
85
|
export declare const State: {
|
|
62
86
|
readonly DISABLED: "DISABLED";
|
|
63
87
|
readonly ENABLED: "ENABLED";
|