@aws-sdk/client-datazone 3.883.0 → 3.885.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 +24 -0
- package/dist-cjs/index.js +209 -11
- package/dist-es/DataZone.js +6 -0
- package/dist-es/commands/CreateEnvironmentBlueprintCommand.js +23 -0
- package/dist-es/commands/DeleteEnvironmentBlueprintCommand.js +22 -0
- package/dist-es/commands/UpdateEnvironmentBlueprintCommand.js +23 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +16 -4
- package/dist-es/models/models_1.js +4 -3
- package/dist-es/models/models_2.js +18 -0
- package/dist-es/protocols/Aws_restJson1.js +101 -0
- package/dist-types/DataZone.d.ts +21 -0
- package/dist-types/DataZoneClient.d.ts +5 -2
- package/dist-types/commands/CancelMetadataGenerationRunCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetRevisionCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetTypeCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataProductCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataProductRevisionCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentBlueprintCommand.d.ts +142 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/CreateEnvironmentProfileCommand.d.ts +1 -0
- package/dist-types/commands/CreateFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/CreateGlossaryCommand.d.ts +1 -1
- package/dist-types/commands/CreateGlossaryTermCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssetTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentBlueprintCommand.d.ts +92 -0
- package/dist-types/commands/DeleteFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGlossaryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGlossaryTermCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetDataProductCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentBlueprintCommand.d.ts +1 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/GetEnvironmentProfileCommand.d.ts +1 -0
- package/dist-types/commands/GetFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetGlossaryCommand.d.ts +1 -1
- package/dist-types/commands/GetGlossaryTermCommand.d.ts +1 -1
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +3 -2
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataProductRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +1 -1
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/SearchCommand.d.ts +1 -1
- package/dist-types/commands/SearchTypesCommand.d.ts +1 -1
- package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentBlueprintCommand.d.ts +142 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/UpdateEnvironmentProfileCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGlossaryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGlossaryTermCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +99 -29
- package/dist-types/models/models_1.d.ts +50 -79
- package/dist-types/models/models_2.d.ts +172 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/DataZone.d.ts +51 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentBlueprintCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentBlueprintCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateEnvironmentBlueprintCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -9
- package/dist-types/ts3.4/models/models_1.d.ts +14 -22
- package/dist-types/ts3.4/models/models_2.d.ts +47 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -79,6 +79,10 @@ import {
|
|
|
79
79
|
CreateEnvironmentActionCommandInput,
|
|
80
80
|
CreateEnvironmentActionCommandOutput,
|
|
81
81
|
} from "./commands/CreateEnvironmentActionCommand";
|
|
82
|
+
import {
|
|
83
|
+
CreateEnvironmentBlueprintCommandInput,
|
|
84
|
+
CreateEnvironmentBlueprintCommandOutput,
|
|
85
|
+
} from "./commands/CreateEnvironmentBlueprintCommand";
|
|
82
86
|
import {
|
|
83
87
|
CreateEnvironmentCommandInput,
|
|
84
88
|
CreateEnvironmentCommandOutput,
|
|
@@ -179,6 +183,10 @@ import {
|
|
|
179
183
|
DeleteEnvironmentActionCommandInput,
|
|
180
184
|
DeleteEnvironmentActionCommandOutput,
|
|
181
185
|
} from "./commands/DeleteEnvironmentActionCommand";
|
|
186
|
+
import {
|
|
187
|
+
DeleteEnvironmentBlueprintCommandInput,
|
|
188
|
+
DeleteEnvironmentBlueprintCommandOutput,
|
|
189
|
+
} from "./commands/DeleteEnvironmentBlueprintCommand";
|
|
182
190
|
import {
|
|
183
191
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
184
192
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -615,6 +623,10 @@ import {
|
|
|
615
623
|
UpdateEnvironmentActionCommandInput,
|
|
616
624
|
UpdateEnvironmentActionCommandOutput,
|
|
617
625
|
} from "./commands/UpdateEnvironmentActionCommand";
|
|
626
|
+
import {
|
|
627
|
+
UpdateEnvironmentBlueprintCommandInput,
|
|
628
|
+
UpdateEnvironmentBlueprintCommandOutput,
|
|
629
|
+
} from "./commands/UpdateEnvironmentBlueprintCommand";
|
|
618
630
|
import {
|
|
619
631
|
UpdateEnvironmentCommandInput,
|
|
620
632
|
UpdateEnvironmentCommandOutput,
|
|
@@ -938,6 +950,19 @@ export interface DataZone {
|
|
|
938
950
|
options: __HttpHandlerOptions,
|
|
939
951
|
cb: (err: any, data?: CreateEnvironmentActionCommandOutput) => void
|
|
940
952
|
): void;
|
|
953
|
+
createEnvironmentBlueprint(
|
|
954
|
+
args: CreateEnvironmentBlueprintCommandInput,
|
|
955
|
+
options?: __HttpHandlerOptions
|
|
956
|
+
): Promise<CreateEnvironmentBlueprintCommandOutput>;
|
|
957
|
+
createEnvironmentBlueprint(
|
|
958
|
+
args: CreateEnvironmentBlueprintCommandInput,
|
|
959
|
+
cb: (err: any, data?: CreateEnvironmentBlueprintCommandOutput) => void
|
|
960
|
+
): void;
|
|
961
|
+
createEnvironmentBlueprint(
|
|
962
|
+
args: CreateEnvironmentBlueprintCommandInput,
|
|
963
|
+
options: __HttpHandlerOptions,
|
|
964
|
+
cb: (err: any, data?: CreateEnvironmentBlueprintCommandOutput) => void
|
|
965
|
+
): void;
|
|
941
966
|
createEnvironmentProfile(
|
|
942
967
|
args: CreateEnvironmentProfileCommandInput,
|
|
943
968
|
options?: __HttpHandlerOptions
|
|
@@ -1263,6 +1288,19 @@ export interface DataZone {
|
|
|
1263
1288
|
options: __HttpHandlerOptions,
|
|
1264
1289
|
cb: (err: any, data?: DeleteEnvironmentActionCommandOutput) => void
|
|
1265
1290
|
): void;
|
|
1291
|
+
deleteEnvironmentBlueprint(
|
|
1292
|
+
args: DeleteEnvironmentBlueprintCommandInput,
|
|
1293
|
+
options?: __HttpHandlerOptions
|
|
1294
|
+
): Promise<DeleteEnvironmentBlueprintCommandOutput>;
|
|
1295
|
+
deleteEnvironmentBlueprint(
|
|
1296
|
+
args: DeleteEnvironmentBlueprintCommandInput,
|
|
1297
|
+
cb: (err: any, data?: DeleteEnvironmentBlueprintCommandOutput) => void
|
|
1298
|
+
): void;
|
|
1299
|
+
deleteEnvironmentBlueprint(
|
|
1300
|
+
args: DeleteEnvironmentBlueprintCommandInput,
|
|
1301
|
+
options: __HttpHandlerOptions,
|
|
1302
|
+
cb: (err: any, data?: DeleteEnvironmentBlueprintCommandOutput) => void
|
|
1303
|
+
): void;
|
|
1266
1304
|
deleteEnvironmentBlueprintConfiguration(
|
|
1267
1305
|
args: DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
1268
1306
|
options?: __HttpHandlerOptions
|
|
@@ -2705,6 +2743,19 @@ export interface DataZone {
|
|
|
2705
2743
|
options: __HttpHandlerOptions,
|
|
2706
2744
|
cb: (err: any, data?: UpdateEnvironmentActionCommandOutput) => void
|
|
2707
2745
|
): void;
|
|
2746
|
+
updateEnvironmentBlueprint(
|
|
2747
|
+
args: UpdateEnvironmentBlueprintCommandInput,
|
|
2748
|
+
options?: __HttpHandlerOptions
|
|
2749
|
+
): Promise<UpdateEnvironmentBlueprintCommandOutput>;
|
|
2750
|
+
updateEnvironmentBlueprint(
|
|
2751
|
+
args: UpdateEnvironmentBlueprintCommandInput,
|
|
2752
|
+
cb: (err: any, data?: UpdateEnvironmentBlueprintCommandOutput) => void
|
|
2753
|
+
): void;
|
|
2754
|
+
updateEnvironmentBlueprint(
|
|
2755
|
+
args: UpdateEnvironmentBlueprintCommandInput,
|
|
2756
|
+
options: __HttpHandlerOptions,
|
|
2757
|
+
cb: (err: any, data?: UpdateEnvironmentBlueprintCommandOutput) => void
|
|
2758
|
+
): void;
|
|
2708
2759
|
updateEnvironmentProfile(
|
|
2709
2760
|
args: UpdateEnvironmentProfileCommandInput,
|
|
2710
2761
|
options?: __HttpHandlerOptions
|
|
@@ -125,6 +125,10 @@ import {
|
|
|
125
125
|
CreateEnvironmentActionCommandInput,
|
|
126
126
|
CreateEnvironmentActionCommandOutput,
|
|
127
127
|
} from "./commands/CreateEnvironmentActionCommand";
|
|
128
|
+
import {
|
|
129
|
+
CreateEnvironmentBlueprintCommandInput,
|
|
130
|
+
CreateEnvironmentBlueprintCommandOutput,
|
|
131
|
+
} from "./commands/CreateEnvironmentBlueprintCommand";
|
|
128
132
|
import {
|
|
129
133
|
CreateEnvironmentCommandInput,
|
|
130
134
|
CreateEnvironmentCommandOutput,
|
|
@@ -225,6 +229,10 @@ import {
|
|
|
225
229
|
DeleteEnvironmentActionCommandInput,
|
|
226
230
|
DeleteEnvironmentActionCommandOutput,
|
|
227
231
|
} from "./commands/DeleteEnvironmentActionCommand";
|
|
232
|
+
import {
|
|
233
|
+
DeleteEnvironmentBlueprintCommandInput,
|
|
234
|
+
DeleteEnvironmentBlueprintCommandOutput,
|
|
235
|
+
} from "./commands/DeleteEnvironmentBlueprintCommand";
|
|
228
236
|
import {
|
|
229
237
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
230
238
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -661,6 +669,10 @@ import {
|
|
|
661
669
|
UpdateEnvironmentActionCommandInput,
|
|
662
670
|
UpdateEnvironmentActionCommandOutput,
|
|
663
671
|
} from "./commands/UpdateEnvironmentActionCommand";
|
|
672
|
+
import {
|
|
673
|
+
UpdateEnvironmentBlueprintCommandInput,
|
|
674
|
+
UpdateEnvironmentBlueprintCommandOutput,
|
|
675
|
+
} from "./commands/UpdateEnvironmentBlueprintCommand";
|
|
664
676
|
import {
|
|
665
677
|
UpdateEnvironmentCommandInput,
|
|
666
678
|
UpdateEnvironmentCommandOutput,
|
|
@@ -737,6 +749,7 @@ export type ServiceInputTypes =
|
|
|
737
749
|
| CreateDomainCommandInput
|
|
738
750
|
| CreateDomainUnitCommandInput
|
|
739
751
|
| CreateEnvironmentActionCommandInput
|
|
752
|
+
| CreateEnvironmentBlueprintCommandInput
|
|
740
753
|
| CreateEnvironmentCommandInput
|
|
741
754
|
| CreateEnvironmentProfileCommandInput
|
|
742
755
|
| CreateFormTypeCommandInput
|
|
@@ -762,6 +775,7 @@ export type ServiceInputTypes =
|
|
|
762
775
|
| DeleteDomainCommandInput
|
|
763
776
|
| DeleteDomainUnitCommandInput
|
|
764
777
|
| DeleteEnvironmentActionCommandInput
|
|
778
|
+
| DeleteEnvironmentBlueprintCommandInput
|
|
765
779
|
| DeleteEnvironmentBlueprintConfigurationCommandInput
|
|
766
780
|
| DeleteEnvironmentCommandInput
|
|
767
781
|
| DeleteEnvironmentProfileCommandInput
|
|
@@ -871,6 +885,7 @@ export type ServiceInputTypes =
|
|
|
871
885
|
| UpdateDomainCommandInput
|
|
872
886
|
| UpdateDomainUnitCommandInput
|
|
873
887
|
| UpdateEnvironmentActionCommandInput
|
|
888
|
+
| UpdateEnvironmentBlueprintCommandInput
|
|
874
889
|
| UpdateEnvironmentCommandInput
|
|
875
890
|
| UpdateEnvironmentProfileCommandInput
|
|
876
891
|
| UpdateGlossaryCommandInput
|
|
@@ -904,6 +919,7 @@ export type ServiceOutputTypes =
|
|
|
904
919
|
| CreateDomainCommandOutput
|
|
905
920
|
| CreateDomainUnitCommandOutput
|
|
906
921
|
| CreateEnvironmentActionCommandOutput
|
|
922
|
+
| CreateEnvironmentBlueprintCommandOutput
|
|
907
923
|
| CreateEnvironmentCommandOutput
|
|
908
924
|
| CreateEnvironmentProfileCommandOutput
|
|
909
925
|
| CreateFormTypeCommandOutput
|
|
@@ -929,6 +945,7 @@ export type ServiceOutputTypes =
|
|
|
929
945
|
| DeleteDomainCommandOutput
|
|
930
946
|
| DeleteDomainUnitCommandOutput
|
|
931
947
|
| DeleteEnvironmentActionCommandOutput
|
|
948
|
+
| DeleteEnvironmentBlueprintCommandOutput
|
|
932
949
|
| DeleteEnvironmentBlueprintConfigurationCommandOutput
|
|
933
950
|
| DeleteEnvironmentCommandOutput
|
|
934
951
|
| DeleteEnvironmentProfileCommandOutput
|
|
@@ -1038,6 +1055,7 @@ export type ServiceOutputTypes =
|
|
|
1038
1055
|
| UpdateDomainCommandOutput
|
|
1039
1056
|
| UpdateDomainUnitCommandOutput
|
|
1040
1057
|
| UpdateEnvironmentActionCommandOutput
|
|
1058
|
+
| UpdateEnvironmentBlueprintCommandOutput
|
|
1041
1059
|
| UpdateEnvironmentCommandOutput
|
|
1042
1060
|
| UpdateEnvironmentProfileCommandOutput
|
|
1043
1061
|
| UpdateGlossaryCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateEnvironmentBlueprintInput,
|
|
10
|
+
CreateEnvironmentBlueprintOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateEnvironmentBlueprintCommandInput
|
|
15
|
+
extends CreateEnvironmentBlueprintInput {}
|
|
16
|
+
export interface CreateEnvironmentBlueprintCommandOutput
|
|
17
|
+
extends CreateEnvironmentBlueprintOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateEnvironmentBlueprintCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateEnvironmentBlueprintCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateEnvironmentBlueprintCommandInput,
|
|
24
|
+
CreateEnvironmentBlueprintCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateEnvironmentBlueprintCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateEnvironmentBlueprintCommandInput,
|
|
33
|
+
CreateEnvironmentBlueprintCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateEnvironmentBlueprintCommand extends CreateEnvironmentBlueprintCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateEnvironmentBlueprintInput;
|
|
44
|
+
output: CreateEnvironmentBlueprintOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateEnvironmentBlueprintCommandInput;
|
|
48
|
+
output: CreateEnvironmentBlueprintCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { DeleteEnvironmentBlueprintInput } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteEnvironmentBlueprintCommandInput
|
|
12
|
+
extends DeleteEnvironmentBlueprintInput {}
|
|
13
|
+
export interface DeleteEnvironmentBlueprintCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteEnvironmentBlueprintCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteEnvironmentBlueprintCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteEnvironmentBlueprintCommandInput,
|
|
20
|
+
DeleteEnvironmentBlueprintCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteEnvironmentBlueprintCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteEnvironmentBlueprintCommandInput,
|
|
29
|
+
DeleteEnvironmentBlueprintCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteEnvironmentBlueprintCommand extends DeleteEnvironmentBlueprintCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteEnvironmentBlueprintInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteEnvironmentBlueprintCommandInput;
|
|
44
|
+
output: DeleteEnvironmentBlueprintCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
GetMetadataGenerationRunOutput,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { GetMetadataGenerationRunInput } from "../models/models_1";
|
|
9
|
+
import { GetMetadataGenerationRunOutput } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface GetMetadataGenerationRunCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateEnvironmentBlueprintInput,
|
|
10
|
+
UpdateEnvironmentBlueprintOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateEnvironmentBlueprintCommandInput
|
|
15
|
+
extends UpdateEnvironmentBlueprintInput {}
|
|
16
|
+
export interface UpdateEnvironmentBlueprintCommandOutput
|
|
17
|
+
extends UpdateEnvironmentBlueprintOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateEnvironmentBlueprintCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateEnvironmentBlueprintCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateEnvironmentBlueprintCommandInput,
|
|
24
|
+
UpdateEnvironmentBlueprintCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateEnvironmentBlueprintCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateEnvironmentBlueprintCommandInput,
|
|
33
|
+
UpdateEnvironmentBlueprintCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateEnvironmentBlueprintCommand extends UpdateEnvironmentBlueprintCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateEnvironmentBlueprintInput;
|
|
44
|
+
output: UpdateEnvironmentBlueprintOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateEnvironmentBlueprintCommandInput;
|
|
48
|
+
output: UpdateEnvironmentBlueprintCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -18,6 +18,7 @@ export * from "./CreateDataSourceCommand";
|
|
|
18
18
|
export * from "./CreateDomainCommand";
|
|
19
19
|
export * from "./CreateDomainUnitCommand";
|
|
20
20
|
export * from "./CreateEnvironmentActionCommand";
|
|
21
|
+
export * from "./CreateEnvironmentBlueprintCommand";
|
|
21
22
|
export * from "./CreateEnvironmentCommand";
|
|
22
23
|
export * from "./CreateEnvironmentProfileCommand";
|
|
23
24
|
export * from "./CreateFormTypeCommand";
|
|
@@ -43,6 +44,7 @@ export * from "./DeleteDataSourceCommand";
|
|
|
43
44
|
export * from "./DeleteDomainCommand";
|
|
44
45
|
export * from "./DeleteDomainUnitCommand";
|
|
45
46
|
export * from "./DeleteEnvironmentActionCommand";
|
|
47
|
+
export * from "./DeleteEnvironmentBlueprintCommand";
|
|
46
48
|
export * from "./DeleteEnvironmentBlueprintConfigurationCommand";
|
|
47
49
|
export * from "./DeleteEnvironmentCommand";
|
|
48
50
|
export * from "./DeleteEnvironmentProfileCommand";
|
|
@@ -152,6 +154,7 @@ export * from "./UpdateDataSourceCommand";
|
|
|
152
154
|
export * from "./UpdateDomainCommand";
|
|
153
155
|
export * from "./UpdateDomainUnitCommand";
|
|
154
156
|
export * from "./UpdateEnvironmentActionCommand";
|
|
157
|
+
export * from "./UpdateEnvironmentBlueprintCommand";
|
|
155
158
|
export * from "./UpdateEnvironmentCommand";
|
|
156
159
|
export * from "./UpdateEnvironmentProfileCommand";
|
|
157
160
|
export * from "./UpdateGlossaryCommand";
|
|
@@ -2963,6 +2963,7 @@ export interface CustomParameter {
|
|
|
2963
2963
|
defaultValue?: string | undefined;
|
|
2964
2964
|
isEditable?: boolean | undefined;
|
|
2965
2965
|
isOptional?: boolean | undefined;
|
|
2966
|
+
isUpdateSupported?: boolean | undefined;
|
|
2966
2967
|
}
|
|
2967
2968
|
export interface CreateEnvironmentOutput {
|
|
2968
2969
|
projectId: string | undefined;
|
|
@@ -3003,6 +3004,25 @@ export interface CreateEnvironmentActionOutput {
|
|
|
3003
3004
|
parameters: ActionParameters | undefined;
|
|
3004
3005
|
description?: string | undefined;
|
|
3005
3006
|
}
|
|
3007
|
+
export interface CreateEnvironmentBlueprintInput {
|
|
3008
|
+
domainIdentifier: string | undefined;
|
|
3009
|
+
name: string | undefined;
|
|
3010
|
+
description?: string | undefined;
|
|
3011
|
+
provisioningProperties: ProvisioningProperties | undefined;
|
|
3012
|
+
userParameters?: CustomParameter[] | undefined;
|
|
3013
|
+
}
|
|
3014
|
+
export interface CreateEnvironmentBlueprintOutput {
|
|
3015
|
+
id: string | undefined;
|
|
3016
|
+
name: string | undefined;
|
|
3017
|
+
description?: string | undefined;
|
|
3018
|
+
provider: string | undefined;
|
|
3019
|
+
provisioningProperties: ProvisioningProperties | undefined;
|
|
3020
|
+
deploymentProperties?: DeploymentProperties | undefined;
|
|
3021
|
+
userParameters?: CustomParameter[] | undefined;
|
|
3022
|
+
glossaryTerms?: string[] | undefined;
|
|
3023
|
+
createdAt?: Date | undefined;
|
|
3024
|
+
updatedAt?: Date | undefined;
|
|
3025
|
+
}
|
|
3006
3026
|
export interface CreateEnvironmentProfileInput {
|
|
3007
3027
|
domainIdentifier: string | undefined;
|
|
3008
3028
|
name: string | undefined;
|
|
@@ -3348,15 +3368,6 @@ export interface CreateProjectProfileOutput {
|
|
|
3348
3368
|
lastUpdatedAt?: Date | undefined;
|
|
3349
3369
|
domainUnitId?: string | undefined;
|
|
3350
3370
|
}
|
|
3351
|
-
export declare const RuleAction: {
|
|
3352
|
-
readonly CREATE_LISTING_CHANGE_SET: "CREATE_LISTING_CHANGE_SET";
|
|
3353
|
-
readonly CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST";
|
|
3354
|
-
};
|
|
3355
|
-
export type RuleAction = (typeof RuleAction)[keyof typeof RuleAction];
|
|
3356
|
-
export interface MetadataFormReference {
|
|
3357
|
-
typeIdentifier: string | undefined;
|
|
3358
|
-
typeRevision: string | undefined;
|
|
3359
|
-
}
|
|
3360
3371
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
3361
3372
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
3362
3373
|
obj: AcceptPredictionsInput
|
|
@@ -3555,6 +3566,12 @@ export declare const CustomParameterFilterSensitiveLog: (
|
|
|
3555
3566
|
export declare const CreateEnvironmentOutputFilterSensitiveLog: (
|
|
3556
3567
|
obj: CreateEnvironmentOutput
|
|
3557
3568
|
) => any;
|
|
3569
|
+
export declare const CreateEnvironmentBlueprintInputFilterSensitiveLog: (
|
|
3570
|
+
obj: CreateEnvironmentBlueprintInput
|
|
3571
|
+
) => any;
|
|
3572
|
+
export declare const CreateEnvironmentBlueprintOutputFilterSensitiveLog: (
|
|
3573
|
+
obj: CreateEnvironmentBlueprintOutput
|
|
3574
|
+
) => any;
|
|
3558
3575
|
export declare const CreateEnvironmentProfileInputFilterSensitiveLog: (
|
|
3559
3576
|
obj: CreateEnvironmentProfileInput
|
|
3560
3577
|
) => any;
|
|
@@ -47,7 +47,6 @@ import {
|
|
|
47
47
|
ManagedPolicyType,
|
|
48
48
|
MatchRationaleItem,
|
|
49
49
|
Member,
|
|
50
|
-
MetadataFormReference,
|
|
51
50
|
Model,
|
|
52
51
|
PhysicalEndpoint,
|
|
53
52
|
PolicyGrantDetail,
|
|
@@ -58,7 +57,6 @@ import {
|
|
|
58
57
|
RecommendationConfiguration,
|
|
59
58
|
ResolutionStrategy,
|
|
60
59
|
Resource,
|
|
61
|
-
RuleAction,
|
|
62
60
|
RuleScopeSelectionMode,
|
|
63
61
|
ScheduleConfiguration,
|
|
64
62
|
SingleSignOn,
|
|
@@ -72,6 +70,15 @@ import {
|
|
|
72
70
|
TimeSeriesDataPointSummaryFormOutput,
|
|
73
71
|
UserDesignation,
|
|
74
72
|
} from "./models_0";
|
|
73
|
+
export declare const RuleAction: {
|
|
74
|
+
readonly CREATE_LISTING_CHANGE_SET: "CREATE_LISTING_CHANGE_SET";
|
|
75
|
+
readonly CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST";
|
|
76
|
+
};
|
|
77
|
+
export type RuleAction = (typeof RuleAction)[keyof typeof RuleAction];
|
|
78
|
+
export interface MetadataFormReference {
|
|
79
|
+
typeIdentifier: string | undefined;
|
|
80
|
+
typeRevision: string | undefined;
|
|
81
|
+
}
|
|
75
82
|
export interface MetadataFormEnforcementDetail {
|
|
76
83
|
requiredMetadataForms?: MetadataFormReference[] | undefined;
|
|
77
84
|
}
|
|
@@ -826,6 +833,10 @@ export interface DeleteEnvironmentActionInput {
|
|
|
826
833
|
environmentIdentifier: string | undefined;
|
|
827
834
|
identifier: string | undefined;
|
|
828
835
|
}
|
|
836
|
+
export interface DeleteEnvironmentBlueprintInput {
|
|
837
|
+
domainIdentifier: string | undefined;
|
|
838
|
+
identifier: string | undefined;
|
|
839
|
+
}
|
|
829
840
|
export interface DeleteEnvironmentProfileInput {
|
|
830
841
|
domainIdentifier: string | undefined;
|
|
831
842
|
identifier: string | undefined;
|
|
@@ -1093,6 +1104,7 @@ export interface PutEnvironmentBlueprintConfigurationInput {
|
|
|
1093
1104
|
environmentRolePermissionBoundary?: string | undefined;
|
|
1094
1105
|
enabledRegions: string[] | undefined;
|
|
1095
1106
|
regionalParameters?: Record<string, Record<string, string>> | undefined;
|
|
1107
|
+
globalParameters?: Record<string, string> | undefined;
|
|
1096
1108
|
provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
|
|
1097
1109
|
}
|
|
1098
1110
|
export interface PutEnvironmentBlueprintConfigurationOutput {
|
|
@@ -2369,26 +2381,6 @@ export declare const MetadataGenerationTargetType: {
|
|
|
2369
2381
|
};
|
|
2370
2382
|
export type MetadataGenerationTargetType =
|
|
2371
2383
|
(typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
2372
|
-
export interface MetadataGenerationRunTarget {
|
|
2373
|
-
type: MetadataGenerationTargetType | undefined;
|
|
2374
|
-
identifier: string | undefined;
|
|
2375
|
-
revision?: string | undefined;
|
|
2376
|
-
}
|
|
2377
|
-
export declare const MetadataGenerationRunType: {
|
|
2378
|
-
readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
|
|
2379
|
-
};
|
|
2380
|
-
export type MetadataGenerationRunType =
|
|
2381
|
-
(typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
|
|
2382
|
-
export interface GetMetadataGenerationRunOutput {
|
|
2383
|
-
domainId: string | undefined;
|
|
2384
|
-
id: string | undefined;
|
|
2385
|
-
target?: MetadataGenerationRunTarget | undefined;
|
|
2386
|
-
status?: MetadataGenerationRunStatus | undefined;
|
|
2387
|
-
type?: MetadataGenerationRunType | undefined;
|
|
2388
|
-
createdAt?: Date | undefined;
|
|
2389
|
-
createdBy?: string | undefined;
|
|
2390
|
-
owningProjectId: string | undefined;
|
|
2391
|
-
}
|
|
2392
2384
|
export declare const CreateRuleInputFilterSensitiveLog: (
|
|
2393
2385
|
obj: CreateRuleInput
|
|
2394
2386
|
) => any;
|
|
@@ -41,7 +41,6 @@ import {
|
|
|
41
41
|
ResolutionStrategy,
|
|
42
42
|
Resource,
|
|
43
43
|
RowFilterExpression,
|
|
44
|
-
RuleAction,
|
|
45
44
|
Status,
|
|
46
45
|
SubscribedListing,
|
|
47
46
|
SubscribedPrincipal,
|
|
@@ -57,8 +56,8 @@ import {
|
|
|
57
56
|
GrantedEntity,
|
|
58
57
|
Import,
|
|
59
58
|
MetadataGenerationRunStatus,
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
MetadataGenerationTargetType,
|
|
60
|
+
RuleAction,
|
|
62
61
|
RuleDetail,
|
|
63
62
|
RuleScope,
|
|
64
63
|
RuleTarget,
|
|
@@ -75,6 +74,26 @@ import {
|
|
|
75
74
|
UserProfileStatus,
|
|
76
75
|
UserProfileType,
|
|
77
76
|
} from "./models_1";
|
|
77
|
+
export interface MetadataGenerationRunTarget {
|
|
78
|
+
type: MetadataGenerationTargetType | undefined;
|
|
79
|
+
identifier: string | undefined;
|
|
80
|
+
revision?: string | undefined;
|
|
81
|
+
}
|
|
82
|
+
export declare const MetadataGenerationRunType: {
|
|
83
|
+
readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
|
|
84
|
+
};
|
|
85
|
+
export type MetadataGenerationRunType =
|
|
86
|
+
(typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
|
|
87
|
+
export interface GetMetadataGenerationRunOutput {
|
|
88
|
+
domainId: string | undefined;
|
|
89
|
+
id: string | undefined;
|
|
90
|
+
target?: MetadataGenerationRunTarget | undefined;
|
|
91
|
+
status?: MetadataGenerationRunStatus | undefined;
|
|
92
|
+
type?: MetadataGenerationRunType | undefined;
|
|
93
|
+
createdAt?: Date | undefined;
|
|
94
|
+
createdBy?: string | undefined;
|
|
95
|
+
owningProjectId: string | undefined;
|
|
96
|
+
}
|
|
78
97
|
export interface ListMetadataGenerationRunsInput {
|
|
79
98
|
domainIdentifier: string | undefined;
|
|
80
99
|
status?: MetadataGenerationRunStatus | undefined;
|
|
@@ -678,6 +697,25 @@ export interface UpdateEnvironmentActionOutput {
|
|
|
678
697
|
parameters: ActionParameters | undefined;
|
|
679
698
|
description?: string | undefined;
|
|
680
699
|
}
|
|
700
|
+
export interface UpdateEnvironmentBlueprintInput {
|
|
701
|
+
domainIdentifier: string | undefined;
|
|
702
|
+
identifier: string | undefined;
|
|
703
|
+
description?: string | undefined;
|
|
704
|
+
provisioningProperties?: ProvisioningProperties | undefined;
|
|
705
|
+
userParameters?: CustomParameter[] | undefined;
|
|
706
|
+
}
|
|
707
|
+
export interface UpdateEnvironmentBlueprintOutput {
|
|
708
|
+
id: string | undefined;
|
|
709
|
+
name: string | undefined;
|
|
710
|
+
description?: string | undefined;
|
|
711
|
+
provider: string | undefined;
|
|
712
|
+
provisioningProperties: ProvisioningProperties | undefined;
|
|
713
|
+
deploymentProperties?: DeploymentProperties | undefined;
|
|
714
|
+
userParameters?: CustomParameter[] | undefined;
|
|
715
|
+
glossaryTerms?: string[] | undefined;
|
|
716
|
+
createdAt?: Date | undefined;
|
|
717
|
+
updatedAt?: Date | undefined;
|
|
718
|
+
}
|
|
681
719
|
export interface UpdateEnvironmentProfileInput {
|
|
682
720
|
domainIdentifier: string | undefined;
|
|
683
721
|
identifier: string | undefined;
|
|
@@ -1121,6 +1159,12 @@ export declare const UpdateConnectionOutputFilterSensitiveLog: (
|
|
|
1121
1159
|
export declare const UpdateEnvironmentOutputFilterSensitiveLog: (
|
|
1122
1160
|
obj: UpdateEnvironmentOutput
|
|
1123
1161
|
) => any;
|
|
1162
|
+
export declare const UpdateEnvironmentBlueprintInputFilterSensitiveLog: (
|
|
1163
|
+
obj: UpdateEnvironmentBlueprintInput
|
|
1164
|
+
) => any;
|
|
1165
|
+
export declare const UpdateEnvironmentBlueprintOutputFilterSensitiveLog: (
|
|
1166
|
+
obj: UpdateEnvironmentBlueprintOutput
|
|
1167
|
+
) => any;
|
|
1124
1168
|
export declare const UpdateEnvironmentProfileInputFilterSensitiveLog: (
|
|
1125
1169
|
obj: UpdateEnvironmentProfileInput
|
|
1126
1170
|
) => any;
|
|
@@ -83,6 +83,10 @@ import {
|
|
|
83
83
|
CreateEnvironmentActionCommandInput,
|
|
84
84
|
CreateEnvironmentActionCommandOutput,
|
|
85
85
|
} from "../commands/CreateEnvironmentActionCommand";
|
|
86
|
+
import {
|
|
87
|
+
CreateEnvironmentBlueprintCommandInput,
|
|
88
|
+
CreateEnvironmentBlueprintCommandOutput,
|
|
89
|
+
} from "../commands/CreateEnvironmentBlueprintCommand";
|
|
86
90
|
import {
|
|
87
91
|
CreateEnvironmentCommandInput,
|
|
88
92
|
CreateEnvironmentCommandOutput,
|
|
@@ -183,6 +187,10 @@ import {
|
|
|
183
187
|
DeleteEnvironmentActionCommandInput,
|
|
184
188
|
DeleteEnvironmentActionCommandOutput,
|
|
185
189
|
} from "../commands/DeleteEnvironmentActionCommand";
|
|
190
|
+
import {
|
|
191
|
+
DeleteEnvironmentBlueprintCommandInput,
|
|
192
|
+
DeleteEnvironmentBlueprintCommandOutput,
|
|
193
|
+
} from "../commands/DeleteEnvironmentBlueprintCommand";
|
|
186
194
|
import {
|
|
187
195
|
DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
188
196
|
DeleteEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -619,6 +627,10 @@ import {
|
|
|
619
627
|
UpdateEnvironmentActionCommandInput,
|
|
620
628
|
UpdateEnvironmentActionCommandOutput,
|
|
621
629
|
} from "../commands/UpdateEnvironmentActionCommand";
|
|
630
|
+
import {
|
|
631
|
+
UpdateEnvironmentBlueprintCommandInput,
|
|
632
|
+
UpdateEnvironmentBlueprintCommandOutput,
|
|
633
|
+
} from "../commands/UpdateEnvironmentBlueprintCommand";
|
|
622
634
|
import {
|
|
623
635
|
UpdateEnvironmentCommandInput,
|
|
624
636
|
UpdateEnvironmentCommandOutput,
|
|
@@ -751,6 +763,10 @@ export declare const se_CreateEnvironmentActionCommand: (
|
|
|
751
763
|
input: CreateEnvironmentActionCommandInput,
|
|
752
764
|
context: __SerdeContext
|
|
753
765
|
) => Promise<__HttpRequest>;
|
|
766
|
+
export declare const se_CreateEnvironmentBlueprintCommand: (
|
|
767
|
+
input: CreateEnvironmentBlueprintCommandInput,
|
|
768
|
+
context: __SerdeContext
|
|
769
|
+
) => Promise<__HttpRequest>;
|
|
754
770
|
export declare const se_CreateEnvironmentProfileCommand: (
|
|
755
771
|
input: CreateEnvironmentProfileCommandInput,
|
|
756
772
|
context: __SerdeContext
|
|
@@ -851,6 +867,10 @@ export declare const se_DeleteEnvironmentActionCommand: (
|
|
|
851
867
|
input: DeleteEnvironmentActionCommandInput,
|
|
852
868
|
context: __SerdeContext
|
|
853
869
|
) => Promise<__HttpRequest>;
|
|
870
|
+
export declare const se_DeleteEnvironmentBlueprintCommand: (
|
|
871
|
+
input: DeleteEnvironmentBlueprintCommandInput,
|
|
872
|
+
context: __SerdeContext
|
|
873
|
+
) => Promise<__HttpRequest>;
|
|
854
874
|
export declare const se_DeleteEnvironmentBlueprintConfigurationCommand: (
|
|
855
875
|
input: DeleteEnvironmentBlueprintConfigurationCommandInput,
|
|
856
876
|
context: __SerdeContext
|
|
@@ -1287,6 +1307,10 @@ export declare const se_UpdateEnvironmentActionCommand: (
|
|
|
1287
1307
|
input: UpdateEnvironmentActionCommandInput,
|
|
1288
1308
|
context: __SerdeContext
|
|
1289
1309
|
) => Promise<__HttpRequest>;
|
|
1310
|
+
export declare const se_UpdateEnvironmentBlueprintCommand: (
|
|
1311
|
+
input: UpdateEnvironmentBlueprintCommandInput,
|
|
1312
|
+
context: __SerdeContext
|
|
1313
|
+
) => Promise<__HttpRequest>;
|
|
1290
1314
|
export declare const se_UpdateEnvironmentProfileCommand: (
|
|
1291
1315
|
input: UpdateEnvironmentProfileCommandInput,
|
|
1292
1316
|
context: __SerdeContext
|
|
@@ -1415,6 +1439,10 @@ export declare const de_CreateEnvironmentActionCommand: (
|
|
|
1415
1439
|
output: __HttpResponse,
|
|
1416
1440
|
context: __SerdeContext
|
|
1417
1441
|
) => Promise<CreateEnvironmentActionCommandOutput>;
|
|
1442
|
+
export declare const de_CreateEnvironmentBlueprintCommand: (
|
|
1443
|
+
output: __HttpResponse,
|
|
1444
|
+
context: __SerdeContext
|
|
1445
|
+
) => Promise<CreateEnvironmentBlueprintCommandOutput>;
|
|
1418
1446
|
export declare const de_CreateEnvironmentProfileCommand: (
|
|
1419
1447
|
output: __HttpResponse,
|
|
1420
1448
|
context: __SerdeContext
|
|
@@ -1515,6 +1543,10 @@ export declare const de_DeleteEnvironmentActionCommand: (
|
|
|
1515
1543
|
output: __HttpResponse,
|
|
1516
1544
|
context: __SerdeContext
|
|
1517
1545
|
) => Promise<DeleteEnvironmentActionCommandOutput>;
|
|
1546
|
+
export declare const de_DeleteEnvironmentBlueprintCommand: (
|
|
1547
|
+
output: __HttpResponse,
|
|
1548
|
+
context: __SerdeContext
|
|
1549
|
+
) => Promise<DeleteEnvironmentBlueprintCommandOutput>;
|
|
1518
1550
|
export declare const de_DeleteEnvironmentBlueprintConfigurationCommand: (
|
|
1519
1551
|
output: __HttpResponse,
|
|
1520
1552
|
context: __SerdeContext
|
|
@@ -1951,6 +1983,10 @@ export declare const de_UpdateEnvironmentActionCommand: (
|
|
|
1951
1983
|
output: __HttpResponse,
|
|
1952
1984
|
context: __SerdeContext
|
|
1953
1985
|
) => Promise<UpdateEnvironmentActionCommandOutput>;
|
|
1986
|
+
export declare const de_UpdateEnvironmentBlueprintCommand: (
|
|
1987
|
+
output: __HttpResponse,
|
|
1988
|
+
context: __SerdeContext
|
|
1989
|
+
) => Promise<UpdateEnvironmentBlueprintCommandOutput>;
|
|
1954
1990
|
export declare const de_UpdateEnvironmentProfileCommand: (
|
|
1955
1991
|
output: __HttpResponse,
|
|
1956
1992
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.885.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|