@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,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataAutomationLibrariesCommandInput, ListDataAutomationLibrariesCommandOutput } from "../commands/ListDataAutomationLibrariesCommand";
|
|
3
|
+
import type { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataAutomationLibraries: (config: BedrockDataAutomationPaginationConfiguration, input: ListDataAutomationLibrariesCommandInput, ...rest: any[]) => Paginator<ListDataAutomationLibrariesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataAutomationLibraryEntitiesCommandInput, ListDataAutomationLibraryEntitiesCommandOutput } from "../commands/ListDataAutomationLibraryEntitiesCommand";
|
|
3
|
+
import type { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataAutomationLibraryEntities: (config: BedrockDataAutomationPaginationConfiguration, input: ListDataAutomationLibraryEntitiesCommandInput, ...rest: any[]) => Paginator<ListDataAutomationLibraryEntitiesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataAutomationLibraryIngestionJobsCommandInput, ListDataAutomationLibraryIngestionJobsCommandOutput } from "../commands/ListDataAutomationLibraryIngestionJobsCommand";
|
|
3
|
+
import type { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataAutomationLibraryIngestionJobs: (config: BedrockDataAutomationPaginationConfiguration, input: ListDataAutomationLibraryIngestionJobsCommandInput, ...rest: any[]) => Paginator<ListDataAutomationLibraryIngestionJobsCommandOutput>;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListBlueprintsPaginator";
|
|
3
|
+
export * from "./ListDataAutomationLibrariesPaginator";
|
|
4
|
+
export * from "./ListDataAutomationLibraryEntitiesPaginator";
|
|
5
|
+
export * from "./ListDataAutomationLibraryIngestionJobsPaginator";
|
|
3
6
|
export * from "./ListDataAutomationProjectsPaginator";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
3
|
export declare var BedrockDataAutomationServiceException$: StaticErrorSchema;
|
|
4
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
5
|
export declare var ConflictException$: StaticErrorSchema;
|
|
@@ -35,16 +35,28 @@ export declare var CreateBlueprintRequest$: StaticStructureSchema;
|
|
|
35
35
|
export declare var CreateBlueprintResponse$: StaticStructureSchema;
|
|
36
36
|
export declare var CreateBlueprintVersionRequest$: StaticStructureSchema;
|
|
37
37
|
export declare var CreateBlueprintVersionResponse$: StaticStructureSchema;
|
|
38
|
+
export declare var CreateDataAutomationLibraryRequest$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateDataAutomationLibraryResponse$: StaticStructureSchema;
|
|
38
40
|
export declare var CreateDataAutomationProjectRequest$: StaticStructureSchema;
|
|
39
41
|
export declare var CreateDataAutomationProjectResponse$: StaticStructureSchema;
|
|
40
42
|
export declare var CustomOutputConfiguration$: StaticStructureSchema;
|
|
43
|
+
export declare var DataAutomationLibrary$: StaticStructureSchema;
|
|
44
|
+
export declare var DataAutomationLibraryConfiguration$: StaticStructureSchema;
|
|
45
|
+
export declare var DataAutomationLibraryFilter$: StaticStructureSchema;
|
|
46
|
+
export declare var DataAutomationLibraryIngestionJob$: StaticStructureSchema;
|
|
47
|
+
export declare var DataAutomationLibraryIngestionJobSummary$: StaticStructureSchema;
|
|
48
|
+
export declare var DataAutomationLibraryItem$: StaticStructureSchema;
|
|
49
|
+
export declare var DataAutomationLibrarySummary$: StaticStructureSchema;
|
|
41
50
|
export declare var DataAutomationProject$: StaticStructureSchema;
|
|
42
51
|
export declare var DataAutomationProjectFilter$: StaticStructureSchema;
|
|
43
52
|
export declare var DataAutomationProjectSummary$: StaticStructureSchema;
|
|
44
53
|
export declare var DeleteBlueprintRequest$: StaticStructureSchema;
|
|
45
54
|
export declare var DeleteBlueprintResponse$: StaticStructureSchema;
|
|
55
|
+
export declare var DeleteDataAutomationLibraryRequest$: StaticStructureSchema;
|
|
56
|
+
export declare var DeleteDataAutomationLibraryResponse$: StaticStructureSchema;
|
|
46
57
|
export declare var DeleteDataAutomationProjectRequest$: StaticStructureSchema;
|
|
47
58
|
export declare var DeleteDataAutomationProjectResponse$: StaticStructureSchema;
|
|
59
|
+
export declare var DeleteEntitiesInfo$: StaticStructureSchema;
|
|
48
60
|
export declare var DocumentBoundingBox$: StaticStructureSchema;
|
|
49
61
|
export declare var DocumentExtractionGranularity$: StaticStructureSchema;
|
|
50
62
|
export declare var DocumentOutputAdditionalFileFormat$: StaticStructureSchema;
|
|
@@ -55,10 +67,18 @@ export declare var DocumentStandardExtraction$: StaticStructureSchema;
|
|
|
55
67
|
export declare var DocumentStandardGenerativeField$: StaticStructureSchema;
|
|
56
68
|
export declare var DocumentStandardOutputConfiguration$: StaticStructureSchema;
|
|
57
69
|
export declare var EncryptionConfiguration$: StaticStructureSchema;
|
|
70
|
+
export declare var EntityTypeInfo$: StaticStructureSchema;
|
|
71
|
+
export declare var EventBridgeConfiguration$: StaticStructureSchema;
|
|
58
72
|
export declare var GetBlueprintOptimizationStatusRequest$: StaticStructureSchema;
|
|
59
73
|
export declare var GetBlueprintOptimizationStatusResponse$: StaticStructureSchema;
|
|
60
74
|
export declare var GetBlueprintRequest$: StaticStructureSchema;
|
|
61
75
|
export declare var GetBlueprintResponse$: StaticStructureSchema;
|
|
76
|
+
export declare var GetDataAutomationLibraryEntityRequest$: StaticStructureSchema;
|
|
77
|
+
export declare var GetDataAutomationLibraryEntityResponse$: StaticStructureSchema;
|
|
78
|
+
export declare var GetDataAutomationLibraryIngestionJobRequest$: StaticStructureSchema;
|
|
79
|
+
export declare var GetDataAutomationLibraryIngestionJobResponse$: StaticStructureSchema;
|
|
80
|
+
export declare var GetDataAutomationLibraryRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var GetDataAutomationLibraryResponse$: StaticStructureSchema;
|
|
62
82
|
export declare var GetDataAutomationProjectRequest$: StaticStructureSchema;
|
|
63
83
|
export declare var GetDataAutomationProjectResponse$: StaticStructureSchema;
|
|
64
84
|
export declare var ImageBoundingBox$: StaticStructureSchema;
|
|
@@ -67,17 +87,29 @@ export declare var ImageOverrideConfiguration$: StaticStructureSchema;
|
|
|
67
87
|
export declare var ImageStandardExtraction$: StaticStructureSchema;
|
|
68
88
|
export declare var ImageStandardGenerativeField$: StaticStructureSchema;
|
|
69
89
|
export declare var ImageStandardOutputConfiguration$: StaticStructureSchema;
|
|
90
|
+
export declare var InputConfiguration$: StaticStructureSchema;
|
|
70
91
|
export declare var InvokeBlueprintOptimizationAsyncRequest$: StaticStructureSchema;
|
|
71
92
|
export declare var InvokeBlueprintOptimizationAsyncResponse$: StaticStructureSchema;
|
|
93
|
+
export declare var InvokeDataAutomationLibraryIngestionJobRequest$: StaticStructureSchema;
|
|
94
|
+
export declare var InvokeDataAutomationLibraryIngestionJobResponse$: StaticStructureSchema;
|
|
72
95
|
export declare var ListBlueprintsRequest$: StaticStructureSchema;
|
|
73
96
|
export declare var ListBlueprintsResponse$: StaticStructureSchema;
|
|
97
|
+
export declare var ListDataAutomationLibrariesRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var ListDataAutomationLibrariesResponse$: StaticStructureSchema;
|
|
99
|
+
export declare var ListDataAutomationLibraryEntitiesRequest$: StaticStructureSchema;
|
|
100
|
+
export declare var ListDataAutomationLibraryEntitiesResponse$: StaticStructureSchema;
|
|
101
|
+
export declare var ListDataAutomationLibraryIngestionJobsRequest$: StaticStructureSchema;
|
|
102
|
+
export declare var ListDataAutomationLibraryIngestionJobsResponse$: StaticStructureSchema;
|
|
74
103
|
export declare var ListDataAutomationProjectsRequest$: StaticStructureSchema;
|
|
75
104
|
export declare var ListDataAutomationProjectsResponse$: StaticStructureSchema;
|
|
76
105
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
77
106
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
78
107
|
export declare var ModalityProcessingConfiguration$: StaticStructureSchema;
|
|
79
108
|
export declare var ModalityRoutingConfiguration$: StaticStructureSchema;
|
|
109
|
+
export declare var NotificationConfiguration$: StaticStructureSchema;
|
|
110
|
+
export declare var OutputConfiguration$: StaticStructureSchema;
|
|
80
111
|
export declare var OverrideConfiguration$: StaticStructureSchema;
|
|
112
|
+
export declare var Phrase$: StaticStructureSchema;
|
|
81
113
|
export declare var PIIEntitiesConfiguration$: StaticStructureSchema;
|
|
82
114
|
export declare var S3Object$: StaticStructureSchema;
|
|
83
115
|
export declare var SensitiveDataConfiguration$: StaticStructureSchema;
|
|
@@ -92,6 +124,8 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
92
124
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
93
125
|
export declare var UpdateBlueprintRequest$: StaticStructureSchema;
|
|
94
126
|
export declare var UpdateBlueprintResponse$: StaticStructureSchema;
|
|
127
|
+
export declare var UpdateDataAutomationLibraryRequest$: StaticStructureSchema;
|
|
128
|
+
export declare var UpdateDataAutomationLibraryResponse$: StaticStructureSchema;
|
|
95
129
|
export declare var UpdateDataAutomationProjectRequest$: StaticStructureSchema;
|
|
96
130
|
export declare var UpdateDataAutomationProjectResponse$: StaticStructureSchema;
|
|
97
131
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
@@ -101,20 +135,37 @@ export declare var VideoOverrideConfiguration$: StaticStructureSchema;
|
|
|
101
135
|
export declare var VideoStandardExtraction$: StaticStructureSchema;
|
|
102
136
|
export declare var VideoStandardGenerativeField$: StaticStructureSchema;
|
|
103
137
|
export declare var VideoStandardOutputConfiguration$: StaticStructureSchema;
|
|
138
|
+
export declare var VocabularyEntity$: StaticStructureSchema;
|
|
139
|
+
export declare var VocabularyEntityInfo$: StaticStructureSchema;
|
|
140
|
+
export declare var VocabularyEntitySummary$: StaticStructureSchema;
|
|
141
|
+
export declare var DataAutomationLibraryEntitySummary$: StaticUnionSchema;
|
|
142
|
+
export declare var EntityDetails$: StaticUnionSchema;
|
|
143
|
+
export declare var InlinePayload$: StaticUnionSchema;
|
|
144
|
+
export declare var UpsertEntityInfo$: StaticUnionSchema;
|
|
104
145
|
export declare var CopyBlueprintStage$: StaticOperationSchema;
|
|
105
146
|
export declare var CreateBlueprint$: StaticOperationSchema;
|
|
106
147
|
export declare var CreateBlueprintVersion$: StaticOperationSchema;
|
|
148
|
+
export declare var CreateDataAutomationLibrary$: StaticOperationSchema;
|
|
107
149
|
export declare var CreateDataAutomationProject$: StaticOperationSchema;
|
|
108
150
|
export declare var DeleteBlueprint$: StaticOperationSchema;
|
|
151
|
+
export declare var DeleteDataAutomationLibrary$: StaticOperationSchema;
|
|
109
152
|
export declare var DeleteDataAutomationProject$: StaticOperationSchema;
|
|
110
153
|
export declare var GetBlueprint$: StaticOperationSchema;
|
|
111
154
|
export declare var GetBlueprintOptimizationStatus$: StaticOperationSchema;
|
|
155
|
+
export declare var GetDataAutomationLibrary$: StaticOperationSchema;
|
|
156
|
+
export declare var GetDataAutomationLibraryEntity$: StaticOperationSchema;
|
|
157
|
+
export declare var GetDataAutomationLibraryIngestionJob$: StaticOperationSchema;
|
|
112
158
|
export declare var GetDataAutomationProject$: StaticOperationSchema;
|
|
113
159
|
export declare var InvokeBlueprintOptimizationAsync$: StaticOperationSchema;
|
|
160
|
+
export declare var InvokeDataAutomationLibraryIngestionJob$: StaticOperationSchema;
|
|
114
161
|
export declare var ListBlueprints$: StaticOperationSchema;
|
|
162
|
+
export declare var ListDataAutomationLibraries$: StaticOperationSchema;
|
|
163
|
+
export declare var ListDataAutomationLibraryEntities$: StaticOperationSchema;
|
|
164
|
+
export declare var ListDataAutomationLibraryIngestionJobs$: StaticOperationSchema;
|
|
115
165
|
export declare var ListDataAutomationProjects$: StaticOperationSchema;
|
|
116
166
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
117
167
|
export declare var TagResource$: StaticOperationSchema;
|
|
118
168
|
export declare var UntagResource$: StaticOperationSchema;
|
|
119
169
|
export declare var UpdateBlueprint$: StaticOperationSchema;
|
|
170
|
+
export declare var UpdateDataAutomationLibrary$: StaticOperationSchema;
|
|
120
171
|
export declare var UpdateDataAutomationProject$: StaticOperationSchema;
|
|
@@ -16,6 +16,10 @@ import {
|
|
|
16
16
|
CreateBlueprintVersionCommandInput,
|
|
17
17
|
CreateBlueprintVersionCommandOutput,
|
|
18
18
|
} from "./commands/CreateBlueprintVersionCommand";
|
|
19
|
+
import {
|
|
20
|
+
CreateDataAutomationLibraryCommandInput,
|
|
21
|
+
CreateDataAutomationLibraryCommandOutput,
|
|
22
|
+
} from "./commands/CreateDataAutomationLibraryCommand";
|
|
19
23
|
import {
|
|
20
24
|
CreateDataAutomationProjectCommandInput,
|
|
21
25
|
CreateDataAutomationProjectCommandOutput,
|
|
@@ -24,6 +28,10 @@ import {
|
|
|
24
28
|
DeleteBlueprintCommandInput,
|
|
25
29
|
DeleteBlueprintCommandOutput,
|
|
26
30
|
} from "./commands/DeleteBlueprintCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeleteDataAutomationLibraryCommandInput,
|
|
33
|
+
DeleteDataAutomationLibraryCommandOutput,
|
|
34
|
+
} from "./commands/DeleteDataAutomationLibraryCommand";
|
|
27
35
|
import {
|
|
28
36
|
DeleteDataAutomationProjectCommandInput,
|
|
29
37
|
DeleteDataAutomationProjectCommandOutput,
|
|
@@ -36,6 +44,18 @@ import {
|
|
|
36
44
|
GetBlueprintOptimizationStatusCommandInput,
|
|
37
45
|
GetBlueprintOptimizationStatusCommandOutput,
|
|
38
46
|
} from "./commands/GetBlueprintOptimizationStatusCommand";
|
|
47
|
+
import {
|
|
48
|
+
GetDataAutomationLibraryCommandInput,
|
|
49
|
+
GetDataAutomationLibraryCommandOutput,
|
|
50
|
+
} from "./commands/GetDataAutomationLibraryCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetDataAutomationLibraryEntityCommandInput,
|
|
53
|
+
GetDataAutomationLibraryEntityCommandOutput,
|
|
54
|
+
} from "./commands/GetDataAutomationLibraryEntityCommand";
|
|
55
|
+
import {
|
|
56
|
+
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
57
|
+
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
58
|
+
} from "./commands/GetDataAutomationLibraryIngestionJobCommand";
|
|
39
59
|
import {
|
|
40
60
|
GetDataAutomationProjectCommandInput,
|
|
41
61
|
GetDataAutomationProjectCommandOutput,
|
|
@@ -44,10 +64,26 @@ import {
|
|
|
44
64
|
InvokeBlueprintOptimizationAsyncCommandInput,
|
|
45
65
|
InvokeBlueprintOptimizationAsyncCommandOutput,
|
|
46
66
|
} from "./commands/InvokeBlueprintOptimizationAsyncCommand";
|
|
67
|
+
import {
|
|
68
|
+
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
69
|
+
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
70
|
+
} from "./commands/InvokeDataAutomationLibraryIngestionJobCommand";
|
|
47
71
|
import {
|
|
48
72
|
ListBlueprintsCommandInput,
|
|
49
73
|
ListBlueprintsCommandOutput,
|
|
50
74
|
} from "./commands/ListBlueprintsCommand";
|
|
75
|
+
import {
|
|
76
|
+
ListDataAutomationLibrariesCommandInput,
|
|
77
|
+
ListDataAutomationLibrariesCommandOutput,
|
|
78
|
+
} from "./commands/ListDataAutomationLibrariesCommand";
|
|
79
|
+
import {
|
|
80
|
+
ListDataAutomationLibraryEntitiesCommandInput,
|
|
81
|
+
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
82
|
+
} from "./commands/ListDataAutomationLibraryEntitiesCommand";
|
|
83
|
+
import {
|
|
84
|
+
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
85
|
+
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
86
|
+
} from "./commands/ListDataAutomationLibraryIngestionJobsCommand";
|
|
51
87
|
import {
|
|
52
88
|
ListDataAutomationProjectsCommandInput,
|
|
53
89
|
ListDataAutomationProjectsCommandOutput,
|
|
@@ -68,6 +104,10 @@ import {
|
|
|
68
104
|
UpdateBlueprintCommandInput,
|
|
69
105
|
UpdateBlueprintCommandOutput,
|
|
70
106
|
} from "./commands/UpdateBlueprintCommand";
|
|
107
|
+
import {
|
|
108
|
+
UpdateDataAutomationLibraryCommandInput,
|
|
109
|
+
UpdateDataAutomationLibraryCommandOutput,
|
|
110
|
+
} from "./commands/UpdateDataAutomationLibraryCommand";
|
|
71
111
|
import {
|
|
72
112
|
UpdateDataAutomationProjectCommandInput,
|
|
73
113
|
UpdateDataAutomationProjectCommandOutput,
|
|
@@ -112,6 +152,19 @@ export interface BedrockDataAutomation {
|
|
|
112
152
|
options: __HttpHandlerOptions,
|
|
113
153
|
cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void
|
|
114
154
|
): void;
|
|
155
|
+
createDataAutomationLibrary(
|
|
156
|
+
args: CreateDataAutomationLibraryCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<CreateDataAutomationLibraryCommandOutput>;
|
|
159
|
+
createDataAutomationLibrary(
|
|
160
|
+
args: CreateDataAutomationLibraryCommandInput,
|
|
161
|
+
cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
createDataAutomationLibrary(
|
|
164
|
+
args: CreateDataAutomationLibraryCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void
|
|
167
|
+
): void;
|
|
115
168
|
createDataAutomationProject(
|
|
116
169
|
args: CreateDataAutomationProjectCommandInput,
|
|
117
170
|
options?: __HttpHandlerOptions
|
|
@@ -138,6 +191,19 @@ export interface BedrockDataAutomation {
|
|
|
138
191
|
options: __HttpHandlerOptions,
|
|
139
192
|
cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
|
|
140
193
|
): void;
|
|
194
|
+
deleteDataAutomationLibrary(
|
|
195
|
+
args: DeleteDataAutomationLibraryCommandInput,
|
|
196
|
+
options?: __HttpHandlerOptions
|
|
197
|
+
): Promise<DeleteDataAutomationLibraryCommandOutput>;
|
|
198
|
+
deleteDataAutomationLibrary(
|
|
199
|
+
args: DeleteDataAutomationLibraryCommandInput,
|
|
200
|
+
cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void
|
|
201
|
+
): void;
|
|
202
|
+
deleteDataAutomationLibrary(
|
|
203
|
+
args: DeleteDataAutomationLibraryCommandInput,
|
|
204
|
+
options: __HttpHandlerOptions,
|
|
205
|
+
cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void
|
|
206
|
+
): void;
|
|
141
207
|
deleteDataAutomationProject(
|
|
142
208
|
args: DeleteDataAutomationProjectCommandInput,
|
|
143
209
|
options?: __HttpHandlerOptions
|
|
@@ -177,6 +243,51 @@ export interface BedrockDataAutomation {
|
|
|
177
243
|
options: __HttpHandlerOptions,
|
|
178
244
|
cb: (err: any, data?: GetBlueprintOptimizationStatusCommandOutput) => void
|
|
179
245
|
): void;
|
|
246
|
+
getDataAutomationLibrary(
|
|
247
|
+
args: GetDataAutomationLibraryCommandInput,
|
|
248
|
+
options?: __HttpHandlerOptions
|
|
249
|
+
): Promise<GetDataAutomationLibraryCommandOutput>;
|
|
250
|
+
getDataAutomationLibrary(
|
|
251
|
+
args: GetDataAutomationLibraryCommandInput,
|
|
252
|
+
cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
getDataAutomationLibrary(
|
|
255
|
+
args: GetDataAutomationLibraryCommandInput,
|
|
256
|
+
options: __HttpHandlerOptions,
|
|
257
|
+
cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void
|
|
258
|
+
): void;
|
|
259
|
+
getDataAutomationLibraryEntity(
|
|
260
|
+
args: GetDataAutomationLibraryEntityCommandInput,
|
|
261
|
+
options?: __HttpHandlerOptions
|
|
262
|
+
): Promise<GetDataAutomationLibraryEntityCommandOutput>;
|
|
263
|
+
getDataAutomationLibraryEntity(
|
|
264
|
+
args: GetDataAutomationLibraryEntityCommandInput,
|
|
265
|
+
cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void
|
|
266
|
+
): void;
|
|
267
|
+
getDataAutomationLibraryEntity(
|
|
268
|
+
args: GetDataAutomationLibraryEntityCommandInput,
|
|
269
|
+
options: __HttpHandlerOptions,
|
|
270
|
+
cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void
|
|
271
|
+
): void;
|
|
272
|
+
getDataAutomationLibraryIngestionJob(
|
|
273
|
+
args: GetDataAutomationLibraryIngestionJobCommandInput,
|
|
274
|
+
options?: __HttpHandlerOptions
|
|
275
|
+
): Promise<GetDataAutomationLibraryIngestionJobCommandOutput>;
|
|
276
|
+
getDataAutomationLibraryIngestionJob(
|
|
277
|
+
args: GetDataAutomationLibraryIngestionJobCommandInput,
|
|
278
|
+
cb: (
|
|
279
|
+
err: any,
|
|
280
|
+
data?: GetDataAutomationLibraryIngestionJobCommandOutput
|
|
281
|
+
) => void
|
|
282
|
+
): void;
|
|
283
|
+
getDataAutomationLibraryIngestionJob(
|
|
284
|
+
args: GetDataAutomationLibraryIngestionJobCommandInput,
|
|
285
|
+
options: __HttpHandlerOptions,
|
|
286
|
+
cb: (
|
|
287
|
+
err: any,
|
|
288
|
+
data?: GetDataAutomationLibraryIngestionJobCommandOutput
|
|
289
|
+
) => void
|
|
290
|
+
): void;
|
|
180
291
|
getDataAutomationProject(
|
|
181
292
|
args: GetDataAutomationProjectCommandInput,
|
|
182
293
|
options?: __HttpHandlerOptions
|
|
@@ -203,6 +314,25 @@ export interface BedrockDataAutomation {
|
|
|
203
314
|
options: __HttpHandlerOptions,
|
|
204
315
|
cb: (err: any, data?: InvokeBlueprintOptimizationAsyncCommandOutput) => void
|
|
205
316
|
): void;
|
|
317
|
+
invokeDataAutomationLibraryIngestionJob(
|
|
318
|
+
args: InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
319
|
+
options?: __HttpHandlerOptions
|
|
320
|
+
): Promise<InvokeDataAutomationLibraryIngestionJobCommandOutput>;
|
|
321
|
+
invokeDataAutomationLibraryIngestionJob(
|
|
322
|
+
args: InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
323
|
+
cb: (
|
|
324
|
+
err: any,
|
|
325
|
+
data?: InvokeDataAutomationLibraryIngestionJobCommandOutput
|
|
326
|
+
) => void
|
|
327
|
+
): void;
|
|
328
|
+
invokeDataAutomationLibraryIngestionJob(
|
|
329
|
+
args: InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
330
|
+
options: __HttpHandlerOptions,
|
|
331
|
+
cb: (
|
|
332
|
+
err: any,
|
|
333
|
+
data?: InvokeDataAutomationLibraryIngestionJobCommandOutput
|
|
334
|
+
) => void
|
|
335
|
+
): void;
|
|
206
336
|
listBlueprints(): Promise<ListBlueprintsCommandOutput>;
|
|
207
337
|
listBlueprints(
|
|
208
338
|
args: ListBlueprintsCommandInput,
|
|
@@ -217,6 +347,58 @@ export interface BedrockDataAutomation {
|
|
|
217
347
|
options: __HttpHandlerOptions,
|
|
218
348
|
cb: (err: any, data?: ListBlueprintsCommandOutput) => void
|
|
219
349
|
): void;
|
|
350
|
+
listDataAutomationLibraries(): Promise<ListDataAutomationLibrariesCommandOutput>;
|
|
351
|
+
listDataAutomationLibraries(
|
|
352
|
+
args: ListDataAutomationLibrariesCommandInput,
|
|
353
|
+
options?: __HttpHandlerOptions
|
|
354
|
+
): Promise<ListDataAutomationLibrariesCommandOutput>;
|
|
355
|
+
listDataAutomationLibraries(
|
|
356
|
+
args: ListDataAutomationLibrariesCommandInput,
|
|
357
|
+
cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void
|
|
358
|
+
): void;
|
|
359
|
+
listDataAutomationLibraries(
|
|
360
|
+
args: ListDataAutomationLibrariesCommandInput,
|
|
361
|
+
options: __HttpHandlerOptions,
|
|
362
|
+
cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
listDataAutomationLibraryEntities(
|
|
365
|
+
args: ListDataAutomationLibraryEntitiesCommandInput,
|
|
366
|
+
options?: __HttpHandlerOptions
|
|
367
|
+
): Promise<ListDataAutomationLibraryEntitiesCommandOutput>;
|
|
368
|
+
listDataAutomationLibraryEntities(
|
|
369
|
+
args: ListDataAutomationLibraryEntitiesCommandInput,
|
|
370
|
+
cb: (
|
|
371
|
+
err: any,
|
|
372
|
+
data?: ListDataAutomationLibraryEntitiesCommandOutput
|
|
373
|
+
) => void
|
|
374
|
+
): void;
|
|
375
|
+
listDataAutomationLibraryEntities(
|
|
376
|
+
args: ListDataAutomationLibraryEntitiesCommandInput,
|
|
377
|
+
options: __HttpHandlerOptions,
|
|
378
|
+
cb: (
|
|
379
|
+
err: any,
|
|
380
|
+
data?: ListDataAutomationLibraryEntitiesCommandOutput
|
|
381
|
+
) => void
|
|
382
|
+
): void;
|
|
383
|
+
listDataAutomationLibraryIngestionJobs(
|
|
384
|
+
args: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
385
|
+
options?: __HttpHandlerOptions
|
|
386
|
+
): Promise<ListDataAutomationLibraryIngestionJobsCommandOutput>;
|
|
387
|
+
listDataAutomationLibraryIngestionJobs(
|
|
388
|
+
args: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
389
|
+
cb: (
|
|
390
|
+
err: any,
|
|
391
|
+
data?: ListDataAutomationLibraryIngestionJobsCommandOutput
|
|
392
|
+
) => void
|
|
393
|
+
): void;
|
|
394
|
+
listDataAutomationLibraryIngestionJobs(
|
|
395
|
+
args: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
396
|
+
options: __HttpHandlerOptions,
|
|
397
|
+
cb: (
|
|
398
|
+
err: any,
|
|
399
|
+
data?: ListDataAutomationLibraryIngestionJobsCommandOutput
|
|
400
|
+
) => void
|
|
401
|
+
): void;
|
|
220
402
|
listDataAutomationProjects(): Promise<ListDataAutomationProjectsCommandOutput>;
|
|
221
403
|
listDataAutomationProjects(
|
|
222
404
|
args: ListDataAutomationProjectsCommandInput,
|
|
@@ -283,6 +465,19 @@ export interface BedrockDataAutomation {
|
|
|
283
465
|
options: __HttpHandlerOptions,
|
|
284
466
|
cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
|
|
285
467
|
): void;
|
|
468
|
+
updateDataAutomationLibrary(
|
|
469
|
+
args: UpdateDataAutomationLibraryCommandInput,
|
|
470
|
+
options?: __HttpHandlerOptions
|
|
471
|
+
): Promise<UpdateDataAutomationLibraryCommandOutput>;
|
|
472
|
+
updateDataAutomationLibrary(
|
|
473
|
+
args: UpdateDataAutomationLibraryCommandInput,
|
|
474
|
+
cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void
|
|
475
|
+
): void;
|
|
476
|
+
updateDataAutomationLibrary(
|
|
477
|
+
args: UpdateDataAutomationLibraryCommandInput,
|
|
478
|
+
options: __HttpHandlerOptions,
|
|
479
|
+
cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void
|
|
480
|
+
): void;
|
|
286
481
|
updateDataAutomationProject(
|
|
287
482
|
args: UpdateDataAutomationProjectCommandInput,
|
|
288
483
|
options?: __HttpHandlerOptions
|
|
@@ -303,6 +498,27 @@ export interface BedrockDataAutomation {
|
|
|
303
498
|
Exclude<keyof PaginationConfiguration, "client">
|
|
304
499
|
>
|
|
305
500
|
): Paginator<ListBlueprintsCommandOutput>;
|
|
501
|
+
paginateListDataAutomationLibraries(
|
|
502
|
+
args?: ListDataAutomationLibrariesCommandInput,
|
|
503
|
+
paginationConfig?: Pick<
|
|
504
|
+
PaginationConfiguration,
|
|
505
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
506
|
+
>
|
|
507
|
+
): Paginator<ListDataAutomationLibrariesCommandOutput>;
|
|
508
|
+
paginateListDataAutomationLibraryEntities(
|
|
509
|
+
args: ListDataAutomationLibraryEntitiesCommandInput,
|
|
510
|
+
paginationConfig?: Pick<
|
|
511
|
+
PaginationConfiguration,
|
|
512
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
513
|
+
>
|
|
514
|
+
): Paginator<ListDataAutomationLibraryEntitiesCommandOutput>;
|
|
515
|
+
paginateListDataAutomationLibraryIngestionJobs(
|
|
516
|
+
args: ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
517
|
+
paginationConfig?: Pick<
|
|
518
|
+
PaginationConfiguration,
|
|
519
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
520
|
+
>
|
|
521
|
+
): Paginator<ListDataAutomationLibraryIngestionJobsCommandOutput>;
|
|
306
522
|
paginateListDataAutomationProjects(
|
|
307
523
|
args?: ListDataAutomationProjectsCommandInput,
|
|
308
524
|
paginationConfig?: Pick<
|
|
@@ -56,6 +56,10 @@ import {
|
|
|
56
56
|
CreateBlueprintVersionCommandInput,
|
|
57
57
|
CreateBlueprintVersionCommandOutput,
|
|
58
58
|
} from "./commands/CreateBlueprintVersionCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateDataAutomationLibraryCommandInput,
|
|
61
|
+
CreateDataAutomationLibraryCommandOutput,
|
|
62
|
+
} from "./commands/CreateDataAutomationLibraryCommand";
|
|
59
63
|
import {
|
|
60
64
|
CreateDataAutomationProjectCommandInput,
|
|
61
65
|
CreateDataAutomationProjectCommandOutput,
|
|
@@ -64,6 +68,10 @@ import {
|
|
|
64
68
|
DeleteBlueprintCommandInput,
|
|
65
69
|
DeleteBlueprintCommandOutput,
|
|
66
70
|
} from "./commands/DeleteBlueprintCommand";
|
|
71
|
+
import {
|
|
72
|
+
DeleteDataAutomationLibraryCommandInput,
|
|
73
|
+
DeleteDataAutomationLibraryCommandOutput,
|
|
74
|
+
} from "./commands/DeleteDataAutomationLibraryCommand";
|
|
67
75
|
import {
|
|
68
76
|
DeleteDataAutomationProjectCommandInput,
|
|
69
77
|
DeleteDataAutomationProjectCommandOutput,
|
|
@@ -76,6 +84,18 @@ import {
|
|
|
76
84
|
GetBlueprintOptimizationStatusCommandInput,
|
|
77
85
|
GetBlueprintOptimizationStatusCommandOutput,
|
|
78
86
|
} from "./commands/GetBlueprintOptimizationStatusCommand";
|
|
87
|
+
import {
|
|
88
|
+
GetDataAutomationLibraryCommandInput,
|
|
89
|
+
GetDataAutomationLibraryCommandOutput,
|
|
90
|
+
} from "./commands/GetDataAutomationLibraryCommand";
|
|
91
|
+
import {
|
|
92
|
+
GetDataAutomationLibraryEntityCommandInput,
|
|
93
|
+
GetDataAutomationLibraryEntityCommandOutput,
|
|
94
|
+
} from "./commands/GetDataAutomationLibraryEntityCommand";
|
|
95
|
+
import {
|
|
96
|
+
GetDataAutomationLibraryIngestionJobCommandInput,
|
|
97
|
+
GetDataAutomationLibraryIngestionJobCommandOutput,
|
|
98
|
+
} from "./commands/GetDataAutomationLibraryIngestionJobCommand";
|
|
79
99
|
import {
|
|
80
100
|
GetDataAutomationProjectCommandInput,
|
|
81
101
|
GetDataAutomationProjectCommandOutput,
|
|
@@ -84,10 +104,26 @@ import {
|
|
|
84
104
|
InvokeBlueprintOptimizationAsyncCommandInput,
|
|
85
105
|
InvokeBlueprintOptimizationAsyncCommandOutput,
|
|
86
106
|
} from "./commands/InvokeBlueprintOptimizationAsyncCommand";
|
|
107
|
+
import {
|
|
108
|
+
InvokeDataAutomationLibraryIngestionJobCommandInput,
|
|
109
|
+
InvokeDataAutomationLibraryIngestionJobCommandOutput,
|
|
110
|
+
} from "./commands/InvokeDataAutomationLibraryIngestionJobCommand";
|
|
87
111
|
import {
|
|
88
112
|
ListBlueprintsCommandInput,
|
|
89
113
|
ListBlueprintsCommandOutput,
|
|
90
114
|
} from "./commands/ListBlueprintsCommand";
|
|
115
|
+
import {
|
|
116
|
+
ListDataAutomationLibrariesCommandInput,
|
|
117
|
+
ListDataAutomationLibrariesCommandOutput,
|
|
118
|
+
} from "./commands/ListDataAutomationLibrariesCommand";
|
|
119
|
+
import {
|
|
120
|
+
ListDataAutomationLibraryEntitiesCommandInput,
|
|
121
|
+
ListDataAutomationLibraryEntitiesCommandOutput,
|
|
122
|
+
} from "./commands/ListDataAutomationLibraryEntitiesCommand";
|
|
123
|
+
import {
|
|
124
|
+
ListDataAutomationLibraryIngestionJobsCommandInput,
|
|
125
|
+
ListDataAutomationLibraryIngestionJobsCommandOutput,
|
|
126
|
+
} from "./commands/ListDataAutomationLibraryIngestionJobsCommand";
|
|
91
127
|
import {
|
|
92
128
|
ListDataAutomationProjectsCommandInput,
|
|
93
129
|
ListDataAutomationProjectsCommandOutput,
|
|
@@ -108,6 +144,10 @@ import {
|
|
|
108
144
|
UpdateBlueprintCommandInput,
|
|
109
145
|
UpdateBlueprintCommandOutput,
|
|
110
146
|
} from "./commands/UpdateBlueprintCommand";
|
|
147
|
+
import {
|
|
148
|
+
UpdateDataAutomationLibraryCommandInput,
|
|
149
|
+
UpdateDataAutomationLibraryCommandOutput,
|
|
150
|
+
} from "./commands/UpdateDataAutomationLibraryCommand";
|
|
111
151
|
import {
|
|
112
152
|
UpdateDataAutomationProjectCommandInput,
|
|
113
153
|
UpdateDataAutomationProjectCommandOutput,
|
|
@@ -123,37 +163,57 @@ export type ServiceInputTypes =
|
|
|
123
163
|
| CopyBlueprintStageCommandInput
|
|
124
164
|
| CreateBlueprintCommandInput
|
|
125
165
|
| CreateBlueprintVersionCommandInput
|
|
166
|
+
| CreateDataAutomationLibraryCommandInput
|
|
126
167
|
| CreateDataAutomationProjectCommandInput
|
|
127
168
|
| DeleteBlueprintCommandInput
|
|
169
|
+
| DeleteDataAutomationLibraryCommandInput
|
|
128
170
|
| DeleteDataAutomationProjectCommandInput
|
|
129
171
|
| GetBlueprintCommandInput
|
|
130
172
|
| GetBlueprintOptimizationStatusCommandInput
|
|
173
|
+
| GetDataAutomationLibraryCommandInput
|
|
174
|
+
| GetDataAutomationLibraryEntityCommandInput
|
|
175
|
+
| GetDataAutomationLibraryIngestionJobCommandInput
|
|
131
176
|
| GetDataAutomationProjectCommandInput
|
|
132
177
|
| InvokeBlueprintOptimizationAsyncCommandInput
|
|
178
|
+
| InvokeDataAutomationLibraryIngestionJobCommandInput
|
|
133
179
|
| ListBlueprintsCommandInput
|
|
180
|
+
| ListDataAutomationLibrariesCommandInput
|
|
181
|
+
| ListDataAutomationLibraryEntitiesCommandInput
|
|
182
|
+
| ListDataAutomationLibraryIngestionJobsCommandInput
|
|
134
183
|
| ListDataAutomationProjectsCommandInput
|
|
135
184
|
| ListTagsForResourceCommandInput
|
|
136
185
|
| TagResourceCommandInput
|
|
137
186
|
| UntagResourceCommandInput
|
|
138
187
|
| UpdateBlueprintCommandInput
|
|
188
|
+
| UpdateDataAutomationLibraryCommandInput
|
|
139
189
|
| UpdateDataAutomationProjectCommandInput;
|
|
140
190
|
export type ServiceOutputTypes =
|
|
141
191
|
| CopyBlueprintStageCommandOutput
|
|
142
192
|
| CreateBlueprintCommandOutput
|
|
143
193
|
| CreateBlueprintVersionCommandOutput
|
|
194
|
+
| CreateDataAutomationLibraryCommandOutput
|
|
144
195
|
| CreateDataAutomationProjectCommandOutput
|
|
145
196
|
| DeleteBlueprintCommandOutput
|
|
197
|
+
| DeleteDataAutomationLibraryCommandOutput
|
|
146
198
|
| DeleteDataAutomationProjectCommandOutput
|
|
147
199
|
| GetBlueprintCommandOutput
|
|
148
200
|
| GetBlueprintOptimizationStatusCommandOutput
|
|
201
|
+
| GetDataAutomationLibraryCommandOutput
|
|
202
|
+
| GetDataAutomationLibraryEntityCommandOutput
|
|
203
|
+
| GetDataAutomationLibraryIngestionJobCommandOutput
|
|
149
204
|
| GetDataAutomationProjectCommandOutput
|
|
150
205
|
| InvokeBlueprintOptimizationAsyncCommandOutput
|
|
206
|
+
| InvokeDataAutomationLibraryIngestionJobCommandOutput
|
|
151
207
|
| ListBlueprintsCommandOutput
|
|
208
|
+
| ListDataAutomationLibrariesCommandOutput
|
|
209
|
+
| ListDataAutomationLibraryEntitiesCommandOutput
|
|
210
|
+
| ListDataAutomationLibraryIngestionJobsCommandOutput
|
|
152
211
|
| ListDataAutomationProjectsCommandOutput
|
|
153
212
|
| ListTagsForResourceCommandOutput
|
|
154
213
|
| TagResourceCommandOutput
|
|
155
214
|
| UntagResourceCommandOutput
|
|
156
215
|
| UpdateBlueprintCommandOutput
|
|
216
|
+
| UpdateDataAutomationLibraryCommandOutput
|
|
157
217
|
| UpdateDataAutomationProjectCommandOutput;
|
|
158
218
|
export interface ClientDefaults
|
|
159
219
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -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
|
+
CreateDataAutomationLibraryRequest,
|
|
10
|
+
CreateDataAutomationLibraryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDataAutomationLibraryCommandInput
|
|
15
|
+
extends CreateDataAutomationLibraryRequest {}
|
|
16
|
+
export interface CreateDataAutomationLibraryCommandOutput
|
|
17
|
+
extends CreateDataAutomationLibraryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataAutomationLibraryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataAutomationLibraryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataAutomationLibraryCommandInput,
|
|
24
|
+
CreateDataAutomationLibraryCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateDataAutomationLibraryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataAutomationLibraryCommandInput,
|
|
33
|
+
CreateDataAutomationLibraryCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataAutomationLibraryCommand extends CreateDataAutomationLibraryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataAutomationLibraryRequest;
|
|
44
|
+
output: CreateDataAutomationLibraryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataAutomationLibraryCommandInput;
|
|
48
|
+
output: CreateDataAutomationLibraryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|