@aws-sdk/client-datazone 3.618.0 → 3.620.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 +8 -0
- package/dist-cjs/index.js +57 -6
- package/dist-es/DataZone.js +2 -0
- package/dist-es/commands/GetEnvironmentCredentialsCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +3 -5
- package/dist-es/models/models_1.js +6 -1
- package/dist-es/protocols/Aws_restJson1.js +27 -0
- package/dist-types/DataZone.d.ts +7 -0
- package/dist-types/DataZoneClient.d.ts +3 -2
- package/dist-types/commands/GetEnvironmentCredentialsCommand.d.ts +82 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +45 -84
- package/dist-types/models/models_1.d.ts +85 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/DataZone.d.ts +17 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCredentialsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -19
- package/dist-types/ts3.4/models/models_1.d.ts +19 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -646,6 +646,14 @@ GetEnvironmentBlueprintConfiguration
|
|
|
646
646
|
|
|
647
647
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/datazone/command/GetEnvironmentBlueprintConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/GetEnvironmentBlueprintConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/GetEnvironmentBlueprintConfigurationCommandOutput/)
|
|
648
648
|
|
|
649
|
+
</details>
|
|
650
|
+
<details>
|
|
651
|
+
<summary>
|
|
652
|
+
GetEnvironmentCredentials
|
|
653
|
+
</summary>
|
|
654
|
+
|
|
655
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/datazone/command/GetEnvironmentCredentialsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/GetEnvironmentCredentialsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-datazone/Interface/GetEnvironmentCredentialsCommandOutput/)
|
|
656
|
+
|
|
649
657
|
</details>
|
|
650
658
|
<details>
|
|
651
659
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -161,6 +161,8 @@ __export(src_exports, {
|
|
|
161
161
|
GetEnvironmentBlueprintConfigurationCommand: () => GetEnvironmentBlueprintConfigurationCommand,
|
|
162
162
|
GetEnvironmentBlueprintOutputFilterSensitiveLog: () => GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
163
163
|
GetEnvironmentCommand: () => GetEnvironmentCommand,
|
|
164
|
+
GetEnvironmentCredentialsCommand: () => GetEnvironmentCredentialsCommand,
|
|
165
|
+
GetEnvironmentCredentialsOutputFilterSensitiveLog: () => GetEnvironmentCredentialsOutputFilterSensitiveLog,
|
|
164
166
|
GetEnvironmentOutputFilterSensitiveLog: () => GetEnvironmentOutputFilterSensitiveLog,
|
|
165
167
|
GetEnvironmentProfileCommand: () => GetEnvironmentProfileCommand,
|
|
166
168
|
GetEnvironmentProfileOutputFilterSensitiveLog: () => GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
@@ -1551,6 +1553,9 @@ var GetEnvironmentBlueprintOutputFilterSensitiveLog = /* @__PURE__ */ __name((ob
|
|
|
1551
1553
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
1552
1554
|
}
|
|
1553
1555
|
}), "GetEnvironmentBlueprintOutputFilterSensitiveLog");
|
|
1556
|
+
var GetEnvironmentCredentialsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1557
|
+
...obj
|
|
1558
|
+
}), "GetEnvironmentCredentialsOutputFilterSensitiveLog");
|
|
1554
1559
|
var GetEnvironmentProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1555
1560
|
...obj,
|
|
1556
1561
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1639,11 +1644,6 @@ var ListDataSourceRunActivitiesOutputFilterSensitiveLog = /* @__PURE__ */ __name
|
|
|
1639
1644
|
...obj,
|
|
1640
1645
|
...obj.items && { items: obj.items.map((item) => DataSourceRunActivityFilterSensitiveLog(item)) }
|
|
1641
1646
|
}), "ListDataSourceRunActivitiesOutputFilterSensitiveLog");
|
|
1642
|
-
var EnvironmentBlueprintSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1643
|
-
...obj,
|
|
1644
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1645
|
-
...obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }
|
|
1646
|
-
}), "EnvironmentBlueprintSummaryFilterSensitiveLog");
|
|
1647
1647
|
|
|
1648
1648
|
// src/protocols/Aws_restJson1.ts
|
|
1649
1649
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -1811,6 +1811,11 @@ var AssetFilterConfiguration;
|
|
|
1811
1811
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1812
1812
|
}, "visit");
|
|
1813
1813
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
1814
|
+
var EnvironmentBlueprintSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1815
|
+
...obj,
|
|
1816
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1817
|
+
...obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }
|
|
1818
|
+
}), "EnvironmentBlueprintSummaryFilterSensitiveLog");
|
|
1814
1819
|
var ListEnvironmentBlueprintsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1815
1820
|
...obj,
|
|
1816
1821
|
...obj.items && { items: obj.items.map((item) => EnvironmentBlueprintSummaryFilterSensitiveLog(item)) }
|
|
@@ -2944,6 +2949,16 @@ var se_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
2944
2949
|
b.m("GET").h(headers).b(body);
|
|
2945
2950
|
return b.build();
|
|
2946
2951
|
}, "se_GetEnvironmentBlueprintConfigurationCommand");
|
|
2952
|
+
var se_GetEnvironmentCredentialsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2953
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2954
|
+
const headers = {};
|
|
2955
|
+
b.bp("/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/credentials");
|
|
2956
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2957
|
+
b.p("environmentIdentifier", () => input.environmentIdentifier, "{environmentIdentifier}", false);
|
|
2958
|
+
let body;
|
|
2959
|
+
b.m("GET").h(headers).b(body);
|
|
2960
|
+
return b.build();
|
|
2961
|
+
}, "se_GetEnvironmentCredentialsCommand");
|
|
2947
2962
|
var se_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2948
2963
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2949
2964
|
const headers = {};
|
|
@@ -5110,6 +5125,23 @@ var de_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
5110
5125
|
Object.assign(contents, doc);
|
|
5111
5126
|
return contents;
|
|
5112
5127
|
}, "de_GetEnvironmentBlueprintConfigurationCommand");
|
|
5128
|
+
var de_GetEnvironmentCredentialsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5129
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5130
|
+
return de_CommandError(output, context);
|
|
5131
|
+
}
|
|
5132
|
+
const contents = (0, import_smithy_client.map)({
|
|
5133
|
+
$metadata: deserializeMetadata(output)
|
|
5134
|
+
});
|
|
5135
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
5136
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
5137
|
+
accessKeyId: import_smithy_client.expectString,
|
|
5138
|
+
expiration: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
5139
|
+
secretAccessKey: import_smithy_client.expectString,
|
|
5140
|
+
sessionToken: import_smithy_client.expectString
|
|
5141
|
+
});
|
|
5142
|
+
Object.assign(contents, doc);
|
|
5143
|
+
return contents;
|
|
5144
|
+
}, "de_GetEnvironmentCredentialsCommand");
|
|
5113
5145
|
var de_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5114
5146
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5115
5147
|
return de_CommandError(output, context);
|
|
@@ -8206,6 +8238,22 @@ var _GetEnvironmentCommand = class _GetEnvironmentCommand extends import_smithy_
|
|
|
8206
8238
|
__name(_GetEnvironmentCommand, "GetEnvironmentCommand");
|
|
8207
8239
|
var GetEnvironmentCommand = _GetEnvironmentCommand;
|
|
8208
8240
|
|
|
8241
|
+
// src/commands/GetEnvironmentCredentialsCommand.ts
|
|
8242
|
+
|
|
8243
|
+
|
|
8244
|
+
|
|
8245
|
+
var _GetEnvironmentCredentialsCommand = class _GetEnvironmentCredentialsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
8246
|
+
...commonParams
|
|
8247
|
+
}).m(function(Command, cs, config, o) {
|
|
8248
|
+
return [
|
|
8249
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8250
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8251
|
+
];
|
|
8252
|
+
}).s("DataZone", "GetEnvironmentCredentials", {}).n("DataZoneClient", "GetEnvironmentCredentialsCommand").f(void 0, GetEnvironmentCredentialsOutputFilterSensitiveLog).ser(se_GetEnvironmentCredentialsCommand).de(de_GetEnvironmentCredentialsCommand).build() {
|
|
8253
|
+
};
|
|
8254
|
+
__name(_GetEnvironmentCredentialsCommand, "GetEnvironmentCredentialsCommand");
|
|
8255
|
+
var GetEnvironmentCredentialsCommand = _GetEnvironmentCredentialsCommand;
|
|
8256
|
+
|
|
8209
8257
|
// src/commands/GetEnvironmentProfileCommand.ts
|
|
8210
8258
|
|
|
8211
8259
|
|
|
@@ -9335,6 +9383,7 @@ var commands = {
|
|
|
9335
9383
|
GetEnvironmentActionCommand,
|
|
9336
9384
|
GetEnvironmentBlueprintCommand,
|
|
9337
9385
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
9386
|
+
GetEnvironmentCredentialsCommand,
|
|
9338
9387
|
GetEnvironmentProfileCommand,
|
|
9339
9388
|
GetFormTypeCommand,
|
|
9340
9389
|
GetGlossaryCommand,
|
|
@@ -9575,6 +9624,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9575
9624
|
GetEnvironmentBlueprintCommand,
|
|
9576
9625
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
9577
9626
|
GetEnvironmentCommand,
|
|
9627
|
+
GetEnvironmentCredentialsCommand,
|
|
9578
9628
|
GetEnvironmentProfileCommand,
|
|
9579
9629
|
GetFormTypeCommand,
|
|
9580
9630
|
GetGlossaryCommand,
|
|
@@ -9793,6 +9843,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9793
9843
|
GetFormTypeOutputFilterSensitiveLog,
|
|
9794
9844
|
GetEnvironmentOutputFilterSensitiveLog,
|
|
9795
9845
|
GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
9846
|
+
GetEnvironmentCredentialsOutputFilterSensitiveLog,
|
|
9796
9847
|
GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
9797
9848
|
GetGroupProfileOutputFilterSensitiveLog,
|
|
9798
9849
|
GetLineageNodeOutputFilterSensitiveLog,
|
|
@@ -9809,7 +9860,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9809
9860
|
UpdateGlossaryTermOutputFilterSensitiveLog,
|
|
9810
9861
|
ListAssetFiltersOutputFilterSensitiveLog,
|
|
9811
9862
|
ListDataSourceRunActivitiesOutputFilterSensitiveLog,
|
|
9812
|
-
EnvironmentBlueprintSummaryFilterSensitiveLog,
|
|
9813
9863
|
ListingItem,
|
|
9814
9864
|
EdgeDirection,
|
|
9815
9865
|
SortOrder,
|
|
@@ -9835,6 +9885,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9835
9885
|
FilterClause,
|
|
9836
9886
|
RowFilter,
|
|
9837
9887
|
AssetFilterConfiguration,
|
|
9888
|
+
EnvironmentBlueprintSummaryFilterSensitiveLog,
|
|
9838
9889
|
ListEnvironmentBlueprintsOutputFilterSensitiveLog,
|
|
9839
9890
|
ListEnvironmentProfilesInputFilterSensitiveLog,
|
|
9840
9891
|
EnvironmentProfileSummaryFilterSensitiveLog,
|
package/dist-es/DataZone.js
CHANGED
|
@@ -54,6 +54,7 @@ import { GetEnvironmentActionCommand, } from "./commands/GetEnvironmentActionCom
|
|
|
54
54
|
import { GetEnvironmentBlueprintCommand, } from "./commands/GetEnvironmentBlueprintCommand";
|
|
55
55
|
import { GetEnvironmentBlueprintConfigurationCommand, } from "./commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
56
56
|
import { GetEnvironmentCommand, } from "./commands/GetEnvironmentCommand";
|
|
57
|
+
import { GetEnvironmentCredentialsCommand, } from "./commands/GetEnvironmentCredentialsCommand";
|
|
57
58
|
import { GetEnvironmentProfileCommand, } from "./commands/GetEnvironmentProfileCommand";
|
|
58
59
|
import { GetFormTypeCommand } from "./commands/GetFormTypeCommand";
|
|
59
60
|
import { GetGlossaryCommand } from "./commands/GetGlossaryCommand";
|
|
@@ -178,6 +179,7 @@ const commands = {
|
|
|
178
179
|
GetEnvironmentActionCommand,
|
|
179
180
|
GetEnvironmentBlueprintCommand,
|
|
180
181
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
182
|
+
GetEnvironmentCredentialsCommand,
|
|
181
183
|
GetEnvironmentProfileCommand,
|
|
182
184
|
GetFormTypeCommand,
|
|
183
185
|
GetGlossaryCommand,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetEnvironmentCredentialsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetEnvironmentCredentialsCommand, se_GetEnvironmentCredentialsCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetEnvironmentCredentialsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep({
|
|
11
|
+
...commonParams,
|
|
12
|
+
})
|
|
13
|
+
.m(function (Command, cs, config, o) {
|
|
14
|
+
return [
|
|
15
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
+
];
|
|
18
|
+
})
|
|
19
|
+
.s("DataZone", "GetEnvironmentCredentials", {})
|
|
20
|
+
.n("DataZoneClient", "GetEnvironmentCredentialsCommand")
|
|
21
|
+
.f(void 0, GetEnvironmentCredentialsOutputFilterSensitiveLog)
|
|
22
|
+
.ser(se_GetEnvironmentCredentialsCommand)
|
|
23
|
+
.de(de_GetEnvironmentCredentialsCommand)
|
|
24
|
+
.build() {
|
|
25
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListEnvironmentBlueprintsOutputFilterSensitiveLog } from "../models/models_1";
|
|
5
|
+
import { ListEnvironmentBlueprintsOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_ListEnvironmentBlueprintsCommand, se_ListEnvironmentBlueprintsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListEnvironmentBlueprintsCommand extends $Command
|
|
@@ -53,6 +53,7 @@ export * from "./GetEnvironmentActionCommand";
|
|
|
53
53
|
export * from "./GetEnvironmentBlueprintCommand";
|
|
54
54
|
export * from "./GetEnvironmentBlueprintConfigurationCommand";
|
|
55
55
|
export * from "./GetEnvironmentCommand";
|
|
56
|
+
export * from "./GetEnvironmentCredentialsCommand";
|
|
56
57
|
export * from "./GetEnvironmentProfileCommand";
|
|
57
58
|
export * from "./GetFormTypeCommand";
|
|
58
59
|
export * from "./GetGlossaryCommand";
|
|
@@ -937,6 +937,9 @@ export const GetEnvironmentBlueprintOutputFilterSensitiveLog = (obj) => ({
|
|
|
937
937
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item)),
|
|
938
938
|
}),
|
|
939
939
|
});
|
|
940
|
+
export const GetEnvironmentCredentialsOutputFilterSensitiveLog = (obj) => ({
|
|
941
|
+
...obj,
|
|
942
|
+
});
|
|
940
943
|
export const GetEnvironmentProfileOutputFilterSensitiveLog = (obj) => ({
|
|
941
944
|
...obj,
|
|
942
945
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -1025,8 +1028,3 @@ export const ListDataSourceRunActivitiesOutputFilterSensitiveLog = (obj) => ({
|
|
|
1025
1028
|
...obj,
|
|
1026
1029
|
...(obj.items && { items: obj.items.map((item) => DataSourceRunActivityFilterSensitiveLog(item)) }),
|
|
1027
1030
|
});
|
|
1028
|
-
export const EnvironmentBlueprintSummaryFilterSensitiveLog = (obj) => ({
|
|
1029
|
-
...obj,
|
|
1030
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1031
|
-
...(obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }),
|
|
1032
|
-
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
-
import { AssetItemFilterSensitiveLog, AssetListingFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, CustomParameterFilterSensitiveLog,
|
|
2
|
+
import { AssetItemFilterSensitiveLog, AssetListingFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, CustomParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, ImportFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
export var ListingItem;
|
|
4
4
|
(function (ListingItem) {
|
|
5
5
|
ListingItem.visit = (value, visitor) => {
|
|
@@ -158,6 +158,11 @@ export var AssetFilterConfiguration;
|
|
|
158
158
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
159
159
|
};
|
|
160
160
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
161
|
+
export const EnvironmentBlueprintSummaryFilterSensitiveLog = (obj) => ({
|
|
162
|
+
...obj,
|
|
163
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
164
|
+
...(obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }),
|
|
165
|
+
});
|
|
161
166
|
export const ListEnvironmentBlueprintsOutputFilterSensitiveLog = (obj) => ({
|
|
162
167
|
...obj,
|
|
163
168
|
...(obj.items && { items: obj.items.map((item) => EnvironmentBlueprintSummaryFilterSensitiveLog(item)) }),
|
|
@@ -778,6 +778,16 @@ export const se_GetEnvironmentBlueprintConfigurationCommand = async (input, cont
|
|
|
778
778
|
b.m("GET").h(headers).b(body);
|
|
779
779
|
return b.build();
|
|
780
780
|
};
|
|
781
|
+
export const se_GetEnvironmentCredentialsCommand = async (input, context) => {
|
|
782
|
+
const b = rb(input, context);
|
|
783
|
+
const headers = {};
|
|
784
|
+
b.bp("/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/credentials");
|
|
785
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
786
|
+
b.p("environmentIdentifier", () => input.environmentIdentifier, "{environmentIdentifier}", false);
|
|
787
|
+
let body;
|
|
788
|
+
b.m("GET").h(headers).b(body);
|
|
789
|
+
return b.build();
|
|
790
|
+
};
|
|
781
791
|
export const se_GetEnvironmentProfileCommand = async (input, context) => {
|
|
782
792
|
const b = rb(input, context);
|
|
783
793
|
const headers = {};
|
|
@@ -2885,6 +2895,23 @@ export const de_GetEnvironmentBlueprintConfigurationCommand = async (output, con
|
|
|
2885
2895
|
Object.assign(contents, doc);
|
|
2886
2896
|
return contents;
|
|
2887
2897
|
};
|
|
2898
|
+
export const de_GetEnvironmentCredentialsCommand = async (output, context) => {
|
|
2899
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2900
|
+
return de_CommandError(output, context);
|
|
2901
|
+
}
|
|
2902
|
+
const contents = map({
|
|
2903
|
+
$metadata: deserializeMetadata(output),
|
|
2904
|
+
});
|
|
2905
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2906
|
+
const doc = take(data, {
|
|
2907
|
+
accessKeyId: __expectString,
|
|
2908
|
+
expiration: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2909
|
+
secretAccessKey: __expectString,
|
|
2910
|
+
sessionToken: __expectString,
|
|
2911
|
+
});
|
|
2912
|
+
Object.assign(contents, doc);
|
|
2913
|
+
return contents;
|
|
2914
|
+
};
|
|
2888
2915
|
export const de_GetEnvironmentProfileCommand = async (output, context) => {
|
|
2889
2916
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2890
2917
|
return de_CommandError(output, context);
|
package/dist-types/DataZone.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ import { GetEnvironmentActionCommandInput, GetEnvironmentActionCommandOutput } f
|
|
|
54
54
|
import { GetEnvironmentBlueprintCommandInput, GetEnvironmentBlueprintCommandOutput } from "./commands/GetEnvironmentBlueprintCommand";
|
|
55
55
|
import { GetEnvironmentBlueprintConfigurationCommandInput, GetEnvironmentBlueprintConfigurationCommandOutput } from "./commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
56
56
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
57
|
+
import { GetEnvironmentCredentialsCommandInput, GetEnvironmentCredentialsCommandOutput } from "./commands/GetEnvironmentCredentialsCommand";
|
|
57
58
|
import { GetEnvironmentProfileCommandInput, GetEnvironmentProfileCommandOutput } from "./commands/GetEnvironmentProfileCommand";
|
|
58
59
|
import { GetFormTypeCommandInput, GetFormTypeCommandOutput } from "./commands/GetFormTypeCommand";
|
|
59
60
|
import { GetGlossaryCommandInput, GetGlossaryCommandOutput } from "./commands/GetGlossaryCommand";
|
|
@@ -453,6 +454,12 @@ export interface DataZone {
|
|
|
453
454
|
getEnvironmentBlueprintConfiguration(args: GetEnvironmentBlueprintConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentBlueprintConfigurationCommandOutput>;
|
|
454
455
|
getEnvironmentBlueprintConfiguration(args: GetEnvironmentBlueprintConfigurationCommandInput, cb: (err: any, data?: GetEnvironmentBlueprintConfigurationCommandOutput) => void): void;
|
|
455
456
|
getEnvironmentBlueprintConfiguration(args: GetEnvironmentBlueprintConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentBlueprintConfigurationCommandOutput) => void): void;
|
|
457
|
+
/**
|
|
458
|
+
* @see {@link GetEnvironmentCredentialsCommand}
|
|
459
|
+
*/
|
|
460
|
+
getEnvironmentCredentials(args: GetEnvironmentCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCredentialsCommandOutput>;
|
|
461
|
+
getEnvironmentCredentials(args: GetEnvironmentCredentialsCommandInput, cb: (err: any, data?: GetEnvironmentCredentialsCommandOutput) => void): void;
|
|
462
|
+
getEnvironmentCredentials(args: GetEnvironmentCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCredentialsCommandOutput) => void): void;
|
|
456
463
|
/**
|
|
457
464
|
* @see {@link GetEnvironmentProfileCommand}
|
|
458
465
|
*/
|
|
@@ -62,6 +62,7 @@ import { GetEnvironmentActionCommandInput, GetEnvironmentActionCommandOutput } f
|
|
|
62
62
|
import { GetEnvironmentBlueprintCommandInput, GetEnvironmentBlueprintCommandOutput } from "./commands/GetEnvironmentBlueprintCommand";
|
|
63
63
|
import { GetEnvironmentBlueprintConfigurationCommandInput, GetEnvironmentBlueprintConfigurationCommandOutput } from "./commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
64
64
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
65
|
+
import { GetEnvironmentCredentialsCommandInput, GetEnvironmentCredentialsCommandOutput } from "./commands/GetEnvironmentCredentialsCommand";
|
|
65
66
|
import { GetEnvironmentProfileCommandInput, GetEnvironmentProfileCommandOutput } from "./commands/GetEnvironmentProfileCommand";
|
|
66
67
|
import { GetFormTypeCommandInput, GetFormTypeCommandOutput } from "./commands/GetFormTypeCommand";
|
|
67
68
|
import { GetGlossaryCommandInput, GetGlossaryCommandOutput } from "./commands/GetGlossaryCommand";
|
|
@@ -135,11 +136,11 @@ export { __Client };
|
|
|
135
136
|
/**
|
|
136
137
|
* @public
|
|
137
138
|
*/
|
|
138
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AssociateEnvironmentRoleCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainsCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListProjectMembershipsCommandInput | ListProjectsCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssetFilterCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
139
|
+
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AssociateEnvironmentRoleCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainsCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListProjectMembershipsCommandInput | ListProjectsCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssetFilterCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
139
140
|
/**
|
|
140
141
|
* @public
|
|
141
142
|
*/
|
|
142
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AssociateEnvironmentRoleCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainsCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectsCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssetFilterCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
143
|
+
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AssociateEnvironmentRoleCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainsCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectsCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssetFilterCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
143
144
|
/**
|
|
144
145
|
* @public
|
|
145
146
|
*/
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { GetEnvironmentCredentialsInput, GetEnvironmentCredentialsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetEnvironmentCredentialsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetEnvironmentCredentialsCommandInput extends GetEnvironmentCredentialsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetEnvironmentCredentialsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetEnvironmentCredentialsCommandOutput extends GetEnvironmentCredentialsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetEnvironmentCredentialsCommand_base: {
|
|
25
|
+
new (input: GetEnvironmentCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnvironmentCredentialsCommandInput, GetEnvironmentCredentialsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetEnvironmentCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnvironmentCredentialsCommandInput, GetEnvironmentCredentialsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets the credentials of an environment in Amazon DataZone.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, GetEnvironmentCredentialsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, GetEnvironmentCredentialsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // GetEnvironmentCredentialsInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* environmentIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetEnvironmentCredentialsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetEnvironmentCredentialsOutput
|
|
44
|
+
* // accessKeyId: "STRING_VALUE",
|
|
45
|
+
* // secretAccessKey: "STRING_VALUE",
|
|
46
|
+
* // sessionToken: "STRING_VALUE",
|
|
47
|
+
* // expiration: new Date("TIMESTAMP"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param GetEnvironmentCredentialsCommandInput - {@link GetEnvironmentCredentialsCommandInput}
|
|
53
|
+
* @returns {@link GetEnvironmentCredentialsCommandOutput}
|
|
54
|
+
* @see {@link GetEnvironmentCredentialsCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link GetEnvironmentCredentialsCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerException} (server fault)
|
|
62
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
|
+
* <p>The specified resource cannot be found.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>The request was denied due to request throttling.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
74
|
+
* <p>You do not have permission to perform this action.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link DataZoneServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class GetEnvironmentCredentialsCommand extends GetEnvironmentCredentialsCommand_base {
|
|
82
|
+
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListEnvironmentBlueprintsInput } from "../models/
|
|
5
|
-
import { ListEnvironmentBlueprintsOutput } from "../models/models_1";
|
|
4
|
+
import { ListEnvironmentBlueprintsInput, ListEnvironmentBlueprintsOutput } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -53,6 +53,7 @@ export * from "./GetEnvironmentActionCommand";
|
|
|
53
53
|
export * from "./GetEnvironmentBlueprintCommand";
|
|
54
54
|
export * from "./GetEnvironmentBlueprintConfigurationCommand";
|
|
55
55
|
export * from "./GetEnvironmentCommand";
|
|
56
|
+
export * from "./GetEnvironmentCredentialsCommand";
|
|
56
57
|
export * from "./GetEnvironmentProfileCommand";
|
|
57
58
|
export * from "./GetFormTypeCommand";
|
|
58
59
|
export * from "./GetGlossaryCommand";
|
|
@@ -7733,6 +7733,47 @@ export interface GetEnvironmentBlueprintOutput {
|
|
|
7733
7733
|
*/
|
|
7734
7734
|
updatedAt?: Date;
|
|
7735
7735
|
}
|
|
7736
|
+
/**
|
|
7737
|
+
* @public
|
|
7738
|
+
*/
|
|
7739
|
+
export interface GetEnvironmentCredentialsInput {
|
|
7740
|
+
/**
|
|
7741
|
+
* <p>The ID of the Amazon DataZone domain in which this environment and its credentials
|
|
7742
|
+
* exist.</p>
|
|
7743
|
+
* @public
|
|
7744
|
+
*/
|
|
7745
|
+
domainIdentifier: string | undefined;
|
|
7746
|
+
/**
|
|
7747
|
+
* <p>The ID of the environment whose credentials this operation gets.</p>
|
|
7748
|
+
* @public
|
|
7749
|
+
*/
|
|
7750
|
+
environmentIdentifier: string | undefined;
|
|
7751
|
+
}
|
|
7752
|
+
/**
|
|
7753
|
+
* @public
|
|
7754
|
+
*/
|
|
7755
|
+
export interface GetEnvironmentCredentialsOutput {
|
|
7756
|
+
/**
|
|
7757
|
+
* <p>The access key ID of the environment.</p>
|
|
7758
|
+
* @public
|
|
7759
|
+
*/
|
|
7760
|
+
accessKeyId?: string;
|
|
7761
|
+
/**
|
|
7762
|
+
* <p>The secret access key of the environment credentials.</p>
|
|
7763
|
+
* @public
|
|
7764
|
+
*/
|
|
7765
|
+
secretAccessKey?: string;
|
|
7766
|
+
/**
|
|
7767
|
+
* <p>The session token of the environment credentials.</p>
|
|
7768
|
+
* @public
|
|
7769
|
+
*/
|
|
7770
|
+
sessionToken?: string;
|
|
7771
|
+
/**
|
|
7772
|
+
* <p>The expiration timestamp of the environment credentials.</p>
|
|
7773
|
+
* @public
|
|
7774
|
+
*/
|
|
7775
|
+
expiration?: Date;
|
|
7776
|
+
}
|
|
7736
7777
|
/**
|
|
7737
7778
|
* @public
|
|
7738
7779
|
*/
|
|
@@ -9175,86 +9216,6 @@ export interface ListEnvironmentActionsOutput {
|
|
|
9175
9216
|
*/
|
|
9176
9217
|
nextToken?: string;
|
|
9177
9218
|
}
|
|
9178
|
-
/**
|
|
9179
|
-
* @public
|
|
9180
|
-
*/
|
|
9181
|
-
export interface ListEnvironmentBlueprintsInput {
|
|
9182
|
-
/**
|
|
9183
|
-
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
9184
|
-
* @public
|
|
9185
|
-
*/
|
|
9186
|
-
domainIdentifier: string | undefined;
|
|
9187
|
-
/**
|
|
9188
|
-
* <p>The maximum number of blueprints to return in a single call to
|
|
9189
|
-
* <code>ListEnvironmentBlueprints</code>. When the number of blueprints to be listed is
|
|
9190
|
-
* greater than the value of <code>MaxResults</code>, the response contains a
|
|
9191
|
-
* <code>NextToken</code> value that you can use in a subsequent call to
|
|
9192
|
-
* <code>ListEnvironmentBlueprints</code> to list the next set of blueprints.</p>
|
|
9193
|
-
* @public
|
|
9194
|
-
*/
|
|
9195
|
-
maxResults?: number;
|
|
9196
|
-
/**
|
|
9197
|
-
* <p>When the number of blueprints in the environment is greater than the default value for
|
|
9198
|
-
* the <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
9199
|
-
* <code>MaxResults</code> that is less than the number of blueprints in the environment,
|
|
9200
|
-
* the response includes a pagination token named <code>NextToken</code>. You can specify this
|
|
9201
|
-
* <code>NextToken</code> value in a subsequent call to
|
|
9202
|
-
* <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
|
|
9203
|
-
* @public
|
|
9204
|
-
*/
|
|
9205
|
-
nextToken?: string;
|
|
9206
|
-
/**
|
|
9207
|
-
* <p>The name of the Amazon DataZone environment.</p>
|
|
9208
|
-
* @public
|
|
9209
|
-
*/
|
|
9210
|
-
name?: string;
|
|
9211
|
-
/**
|
|
9212
|
-
* <p>Specifies whether the environment blueprint is managed by Amazon DataZone.</p>
|
|
9213
|
-
* @public
|
|
9214
|
-
*/
|
|
9215
|
-
managed?: boolean;
|
|
9216
|
-
}
|
|
9217
|
-
/**
|
|
9218
|
-
* <p>The details of an environment blueprint summary.</p>
|
|
9219
|
-
* @public
|
|
9220
|
-
*/
|
|
9221
|
-
export interface EnvironmentBlueprintSummary {
|
|
9222
|
-
/**
|
|
9223
|
-
* <p>The identifier of the blueprint.</p>
|
|
9224
|
-
* @public
|
|
9225
|
-
*/
|
|
9226
|
-
id: string | undefined;
|
|
9227
|
-
/**
|
|
9228
|
-
* <p>The name of the blueprint.</p>
|
|
9229
|
-
* @public
|
|
9230
|
-
*/
|
|
9231
|
-
name: string | undefined;
|
|
9232
|
-
/**
|
|
9233
|
-
* <p>The description of a blueprint.</p>
|
|
9234
|
-
* @public
|
|
9235
|
-
*/
|
|
9236
|
-
description?: string;
|
|
9237
|
-
/**
|
|
9238
|
-
* <p>The provider of the blueprint.</p>
|
|
9239
|
-
* @public
|
|
9240
|
-
*/
|
|
9241
|
-
provider: string | undefined;
|
|
9242
|
-
/**
|
|
9243
|
-
* <p>The provisioning properties of the blueprint.</p>
|
|
9244
|
-
* @public
|
|
9245
|
-
*/
|
|
9246
|
-
provisioningProperties: ProvisioningProperties | undefined;
|
|
9247
|
-
/**
|
|
9248
|
-
* <p>The timestamp of when an environment blueprint was created.</p>
|
|
9249
|
-
* @public
|
|
9250
|
-
*/
|
|
9251
|
-
createdAt?: Date;
|
|
9252
|
-
/**
|
|
9253
|
-
* <p>The timestamp of when the blueprint was enabled.</p>
|
|
9254
|
-
* @public
|
|
9255
|
-
*/
|
|
9256
|
-
updatedAt?: Date;
|
|
9257
|
-
}
|
|
9258
9219
|
/**
|
|
9259
9220
|
* @internal
|
|
9260
9221
|
*/
|
|
@@ -9519,6 +9480,10 @@ export declare const GetEnvironmentOutputFilterSensitiveLog: (obj: GetEnvironmen
|
|
|
9519
9480
|
* @internal
|
|
9520
9481
|
*/
|
|
9521
9482
|
export declare const GetEnvironmentBlueprintOutputFilterSensitiveLog: (obj: GetEnvironmentBlueprintOutput) => any;
|
|
9483
|
+
/**
|
|
9484
|
+
* @internal
|
|
9485
|
+
*/
|
|
9486
|
+
export declare const GetEnvironmentCredentialsOutputFilterSensitiveLog: (obj: GetEnvironmentCredentialsOutput) => any;
|
|
9522
9487
|
/**
|
|
9523
9488
|
* @internal
|
|
9524
9489
|
*/
|
|
@@ -9583,7 +9548,3 @@ export declare const ListAssetFiltersOutputFilterSensitiveLog: (obj: ListAssetFi
|
|
|
9583
9548
|
* @internal
|
|
9584
9549
|
*/
|
|
9585
9550
|
export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (obj: ListDataSourceRunActivitiesOutput) => any;
|
|
9586
|
-
/**
|
|
9587
|
-
* @internal
|
|
9588
|
-
*/
|
|
9589
|
-
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (obj: EnvironmentBlueprintSummary) => any;
|
|
@@ -1,4 +1,84 @@
|
|
|
1
|
-
import { ActionParameters, AssetItem, AssetListing, AssetListingItem, AssetTypeItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, Deployment, DeploymentProperties,
|
|
1
|
+
import { ActionParameters, AssetItem, AssetListing, AssetListingItem, AssetTypeItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FilterStatus, FormEntryOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, ListingStatus, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TermRelations, TimeSeriesDataPointFormOutput, TimeSeriesDataPointSummaryFormOutput, TimeSeriesEntityType, UserDesignation, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ListEnvironmentBlueprintsInput {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
domainIdentifier: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The maximum number of blueprints to return in a single call to
|
|
13
|
+
* <code>ListEnvironmentBlueprints</code>. When the number of blueprints to be listed is
|
|
14
|
+
* greater than the value of <code>MaxResults</code>, the response contains a
|
|
15
|
+
* <code>NextToken</code> value that you can use in a subsequent call to
|
|
16
|
+
* <code>ListEnvironmentBlueprints</code> to list the next set of blueprints.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
maxResults?: number;
|
|
20
|
+
/**
|
|
21
|
+
* <p>When the number of blueprints in the environment is greater than the default value for
|
|
22
|
+
* the <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
23
|
+
* <code>MaxResults</code> that is less than the number of blueprints in the environment,
|
|
24
|
+
* the response includes a pagination token named <code>NextToken</code>. You can specify this
|
|
25
|
+
* <code>NextToken</code> value in a subsequent call to
|
|
26
|
+
* <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
nextToken?: string;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The name of the Amazon DataZone environment.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
name?: string;
|
|
35
|
+
/**
|
|
36
|
+
* <p>Specifies whether the environment blueprint is managed by Amazon DataZone.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
managed?: boolean;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>The details of an environment blueprint summary.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export interface EnvironmentBlueprintSummary {
|
|
46
|
+
/**
|
|
47
|
+
* <p>The identifier of the blueprint.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
id: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The name of the blueprint.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
name: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The description of a blueprint.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
description?: string;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The provider of the blueprint.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
provider: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The provisioning properties of the blueprint.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
provisioningProperties: ProvisioningProperties | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The timestamp of when an environment blueprint was created.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
createdAt?: Date;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The timestamp of when the blueprint was enabled.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
updatedAt?: Date;
|
|
81
|
+
}
|
|
2
82
|
/**
|
|
3
83
|
* @public
|
|
4
84
|
*/
|
|
@@ -4733,6 +4813,10 @@ export interface UpdateAssetFilterOutput {
|
|
|
4733
4813
|
*/
|
|
4734
4814
|
effectiveRowFilter?: string;
|
|
4735
4815
|
}
|
|
4816
|
+
/**
|
|
4817
|
+
* @internal
|
|
4818
|
+
*/
|
|
4819
|
+
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (obj: EnvironmentBlueprintSummary) => any;
|
|
4736
4820
|
/**
|
|
4737
4821
|
* @internal
|
|
4738
4822
|
*/
|
|
@@ -55,6 +55,7 @@ import { GetEnvironmentActionCommandInput, GetEnvironmentActionCommandOutput } f
|
|
|
55
55
|
import { GetEnvironmentBlueprintCommandInput, GetEnvironmentBlueprintCommandOutput } from "../commands/GetEnvironmentBlueprintCommand";
|
|
56
56
|
import { GetEnvironmentBlueprintConfigurationCommandInput, GetEnvironmentBlueprintConfigurationCommandOutput } from "../commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
57
57
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
58
|
+
import { GetEnvironmentCredentialsCommandInput, GetEnvironmentCredentialsCommandOutput } from "../commands/GetEnvironmentCredentialsCommand";
|
|
58
59
|
import { GetEnvironmentProfileCommandInput, GetEnvironmentProfileCommandOutput } from "../commands/GetEnvironmentProfileCommand";
|
|
59
60
|
import { GetFormTypeCommandInput, GetFormTypeCommandOutput } from "../commands/GetFormTypeCommand";
|
|
60
61
|
import { GetGlossaryCommandInput, GetGlossaryCommandOutput } from "../commands/GetGlossaryCommand";
|
|
@@ -342,6 +343,10 @@ export declare const se_GetEnvironmentBlueprintCommand: (input: GetEnvironmentBl
|
|
|
342
343
|
* serializeAws_restJson1GetEnvironmentBlueprintConfigurationCommand
|
|
343
344
|
*/
|
|
344
345
|
export declare const se_GetEnvironmentBlueprintConfigurationCommand: (input: GetEnvironmentBlueprintConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
346
|
+
/**
|
|
347
|
+
* serializeAws_restJson1GetEnvironmentCredentialsCommand
|
|
348
|
+
*/
|
|
349
|
+
export declare const se_GetEnvironmentCredentialsCommand: (input: GetEnvironmentCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
345
350
|
/**
|
|
346
351
|
* serializeAws_restJson1GetEnvironmentProfileCommand
|
|
347
352
|
*/
|
|
@@ -830,6 +835,10 @@ export declare const de_GetEnvironmentBlueprintCommand: (output: __HttpResponse,
|
|
|
830
835
|
* deserializeAws_restJson1GetEnvironmentBlueprintConfigurationCommand
|
|
831
836
|
*/
|
|
832
837
|
export declare const de_GetEnvironmentBlueprintConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentBlueprintConfigurationCommandOutput>;
|
|
838
|
+
/**
|
|
839
|
+
* deserializeAws_restJson1GetEnvironmentCredentialsCommand
|
|
840
|
+
*/
|
|
841
|
+
export declare const de_GetEnvironmentCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCredentialsCommandOutput>;
|
|
833
842
|
/**
|
|
834
843
|
* deserializeAws_restJson1GetEnvironmentProfileCommand
|
|
835
844
|
*/
|
|
@@ -219,6 +219,10 @@ import {
|
|
|
219
219
|
GetEnvironmentCommandInput,
|
|
220
220
|
GetEnvironmentCommandOutput,
|
|
221
221
|
} from "./commands/GetEnvironmentCommand";
|
|
222
|
+
import {
|
|
223
|
+
GetEnvironmentCredentialsCommandInput,
|
|
224
|
+
GetEnvironmentCredentialsCommandOutput,
|
|
225
|
+
} from "./commands/GetEnvironmentCredentialsCommand";
|
|
222
226
|
import {
|
|
223
227
|
GetEnvironmentProfileCommandInput,
|
|
224
228
|
GetEnvironmentProfileCommandOutput,
|
|
@@ -1216,6 +1220,19 @@ export interface DataZone {
|
|
|
1216
1220
|
data?: GetEnvironmentBlueprintConfigurationCommandOutput
|
|
1217
1221
|
) => void
|
|
1218
1222
|
): void;
|
|
1223
|
+
getEnvironmentCredentials(
|
|
1224
|
+
args: GetEnvironmentCredentialsCommandInput,
|
|
1225
|
+
options?: __HttpHandlerOptions
|
|
1226
|
+
): Promise<GetEnvironmentCredentialsCommandOutput>;
|
|
1227
|
+
getEnvironmentCredentials(
|
|
1228
|
+
args: GetEnvironmentCredentialsCommandInput,
|
|
1229
|
+
cb: (err: any, data?: GetEnvironmentCredentialsCommandOutput) => void
|
|
1230
|
+
): void;
|
|
1231
|
+
getEnvironmentCredentials(
|
|
1232
|
+
args: GetEnvironmentCredentialsCommandInput,
|
|
1233
|
+
options: __HttpHandlerOptions,
|
|
1234
|
+
cb: (err: any, data?: GetEnvironmentCredentialsCommandOutput) => void
|
|
1235
|
+
): void;
|
|
1219
1236
|
getEnvironmentProfile(
|
|
1220
1237
|
args: GetEnvironmentProfileCommandInput,
|
|
1221
1238
|
options?: __HttpHandlerOptions
|
|
@@ -265,6 +265,10 @@ import {
|
|
|
265
265
|
GetEnvironmentCommandInput,
|
|
266
266
|
GetEnvironmentCommandOutput,
|
|
267
267
|
} from "./commands/GetEnvironmentCommand";
|
|
268
|
+
import {
|
|
269
|
+
GetEnvironmentCredentialsCommandInput,
|
|
270
|
+
GetEnvironmentCredentialsCommandOutput,
|
|
271
|
+
} from "./commands/GetEnvironmentCredentialsCommand";
|
|
268
272
|
import {
|
|
269
273
|
GetEnvironmentProfileCommandInput,
|
|
270
274
|
GetEnvironmentProfileCommandOutput,
|
|
@@ -596,6 +600,7 @@ export type ServiceInputTypes =
|
|
|
596
600
|
| GetEnvironmentBlueprintCommandInput
|
|
597
601
|
| GetEnvironmentBlueprintConfigurationCommandInput
|
|
598
602
|
| GetEnvironmentCommandInput
|
|
603
|
+
| GetEnvironmentCredentialsCommandInput
|
|
599
604
|
| GetEnvironmentProfileCommandInput
|
|
600
605
|
| GetFormTypeCommandInput
|
|
601
606
|
| GetGlossaryCommandInput
|
|
@@ -719,6 +724,7 @@ export type ServiceOutputTypes =
|
|
|
719
724
|
| GetEnvironmentBlueprintCommandOutput
|
|
720
725
|
| GetEnvironmentBlueprintConfigurationCommandOutput
|
|
721
726
|
| GetEnvironmentCommandOutput
|
|
727
|
+
| GetEnvironmentCredentialsCommandOutput
|
|
722
728
|
| GetEnvironmentProfileCommandOutput
|
|
723
729
|
| GetFormTypeCommandOutput
|
|
724
730
|
| GetGlossaryCommandOutput
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
GetEnvironmentCredentialsInput,
|
|
10
|
+
GetEnvironmentCredentialsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetEnvironmentCredentialsCommandInput
|
|
15
|
+
extends GetEnvironmentCredentialsInput {}
|
|
16
|
+
export interface GetEnvironmentCredentialsCommandOutput
|
|
17
|
+
extends GetEnvironmentCredentialsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetEnvironmentCredentialsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetEnvironmentCredentialsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetEnvironmentCredentialsCommandInput,
|
|
24
|
+
GetEnvironmentCredentialsCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetEnvironmentCredentialsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetEnvironmentCredentialsCommandInput,
|
|
33
|
+
GetEnvironmentCredentialsCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetEnvironmentCredentialsCommand extends GetEnvironmentCredentialsCommand_base {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListEnvironmentBlueprintsInput,
|
|
10
|
+
ListEnvironmentBlueprintsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListEnvironmentBlueprintsCommandInput
|
|
@@ -53,6 +53,7 @@ export * from "./GetEnvironmentActionCommand";
|
|
|
53
53
|
export * from "./GetEnvironmentBlueprintCommand";
|
|
54
54
|
export * from "./GetEnvironmentBlueprintConfigurationCommand";
|
|
55
55
|
export * from "./GetEnvironmentCommand";
|
|
56
|
+
export * from "./GetEnvironmentCredentialsCommand";
|
|
56
57
|
export * from "./GetEnvironmentProfileCommand";
|
|
57
58
|
export * from "./GetFormTypeCommand";
|
|
58
59
|
export * from "./GetGlossaryCommand";
|
|
@@ -2317,6 +2317,16 @@ export interface GetEnvironmentBlueprintOutput {
|
|
|
2317
2317
|
createdAt?: Date;
|
|
2318
2318
|
updatedAt?: Date;
|
|
2319
2319
|
}
|
|
2320
|
+
export interface GetEnvironmentCredentialsInput {
|
|
2321
|
+
domainIdentifier: string | undefined;
|
|
2322
|
+
environmentIdentifier: string | undefined;
|
|
2323
|
+
}
|
|
2324
|
+
export interface GetEnvironmentCredentialsOutput {
|
|
2325
|
+
accessKeyId?: string;
|
|
2326
|
+
secretAccessKey?: string;
|
|
2327
|
+
sessionToken?: string;
|
|
2328
|
+
expiration?: Date;
|
|
2329
|
+
}
|
|
2320
2330
|
export interface GetEnvironmentProfileInput {
|
|
2321
2331
|
domainIdentifier: string | undefined;
|
|
2322
2332
|
identifier: string | undefined;
|
|
@@ -2632,22 +2642,6 @@ export interface ListEnvironmentActionsOutput {
|
|
|
2632
2642
|
items?: EnvironmentActionSummary[];
|
|
2633
2643
|
nextToken?: string;
|
|
2634
2644
|
}
|
|
2635
|
-
export interface ListEnvironmentBlueprintsInput {
|
|
2636
|
-
domainIdentifier: string | undefined;
|
|
2637
|
-
maxResults?: number;
|
|
2638
|
-
nextToken?: string;
|
|
2639
|
-
name?: string;
|
|
2640
|
-
managed?: boolean;
|
|
2641
|
-
}
|
|
2642
|
-
export interface EnvironmentBlueprintSummary {
|
|
2643
|
-
id: string | undefined;
|
|
2644
|
-
name: string | undefined;
|
|
2645
|
-
description?: string;
|
|
2646
|
-
provider: string | undefined;
|
|
2647
|
-
provisioningProperties: ProvisioningProperties | undefined;
|
|
2648
|
-
createdAt?: Date;
|
|
2649
|
-
updatedAt?: Date;
|
|
2650
|
-
}
|
|
2651
2645
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2652
2646
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2653
2647
|
obj: AcceptPredictionsInput
|
|
@@ -2832,6 +2826,9 @@ export declare const GetEnvironmentOutputFilterSensitiveLog: (
|
|
|
2832
2826
|
export declare const GetEnvironmentBlueprintOutputFilterSensitiveLog: (
|
|
2833
2827
|
obj: GetEnvironmentBlueprintOutput
|
|
2834
2828
|
) => any;
|
|
2829
|
+
export declare const GetEnvironmentCredentialsOutputFilterSensitiveLog: (
|
|
2830
|
+
obj: GetEnvironmentCredentialsOutput
|
|
2831
|
+
) => any;
|
|
2835
2832
|
export declare const GetEnvironmentProfileOutputFilterSensitiveLog: (
|
|
2836
2833
|
obj: GetEnvironmentProfileOutput
|
|
2837
2834
|
) => any;
|
|
@@ -2880,6 +2877,3 @@ export declare const ListAssetFiltersOutputFilterSensitiveLog: (
|
|
|
2880
2877
|
export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (
|
|
2881
2878
|
obj: ListDataSourceRunActivitiesOutput
|
|
2882
2879
|
) => any;
|
|
2883
|
-
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (
|
|
2884
|
-
obj: EnvironmentBlueprintSummary
|
|
2885
|
-
) => any;
|
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
CustomParameter,
|
|
10
10
|
Deployment,
|
|
11
11
|
DeploymentProperties,
|
|
12
|
-
EnvironmentBlueprintSummary,
|
|
13
12
|
EnvironmentParameter,
|
|
14
13
|
EnvironmentStatus,
|
|
15
14
|
FailureCause,
|
|
@@ -45,6 +44,22 @@ import {
|
|
|
45
44
|
UserProfileStatus,
|
|
46
45
|
UserProfileType,
|
|
47
46
|
} from "./models_0";
|
|
47
|
+
export interface ListEnvironmentBlueprintsInput {
|
|
48
|
+
domainIdentifier: string | undefined;
|
|
49
|
+
maxResults?: number;
|
|
50
|
+
nextToken?: string;
|
|
51
|
+
name?: string;
|
|
52
|
+
managed?: boolean;
|
|
53
|
+
}
|
|
54
|
+
export interface EnvironmentBlueprintSummary {
|
|
55
|
+
id: string | undefined;
|
|
56
|
+
name: string | undefined;
|
|
57
|
+
description?: string;
|
|
58
|
+
provider: string | undefined;
|
|
59
|
+
provisioningProperties: ProvisioningProperties | undefined;
|
|
60
|
+
createdAt?: Date;
|
|
61
|
+
updatedAt?: Date;
|
|
62
|
+
}
|
|
48
63
|
export interface ListEnvironmentBlueprintsOutput {
|
|
49
64
|
items: EnvironmentBlueprintSummary[] | undefined;
|
|
50
65
|
nextToken?: string;
|
|
@@ -1256,6 +1271,9 @@ export interface UpdateAssetFilterOutput {
|
|
|
1256
1271
|
effectiveColumnNames?: string[];
|
|
1257
1272
|
effectiveRowFilter?: string;
|
|
1258
1273
|
}
|
|
1274
|
+
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (
|
|
1275
|
+
obj: EnvironmentBlueprintSummary
|
|
1276
|
+
) => any;
|
|
1259
1277
|
export declare const ListEnvironmentBlueprintsOutputFilterSensitiveLog: (
|
|
1260
1278
|
obj: ListEnvironmentBlueprintsOutput
|
|
1261
1279
|
) => any;
|
|
@@ -223,6 +223,10 @@ import {
|
|
|
223
223
|
GetEnvironmentCommandInput,
|
|
224
224
|
GetEnvironmentCommandOutput,
|
|
225
225
|
} from "../commands/GetEnvironmentCommand";
|
|
226
|
+
import {
|
|
227
|
+
GetEnvironmentCredentialsCommandInput,
|
|
228
|
+
GetEnvironmentCredentialsCommandOutput,
|
|
229
|
+
} from "../commands/GetEnvironmentCredentialsCommand";
|
|
226
230
|
import {
|
|
227
231
|
GetEnvironmentProfileCommandInput,
|
|
228
232
|
GetEnvironmentProfileCommandOutput,
|
|
@@ -711,6 +715,10 @@ export declare const se_GetEnvironmentBlueprintConfigurationCommand: (
|
|
|
711
715
|
input: GetEnvironmentBlueprintConfigurationCommandInput,
|
|
712
716
|
context: __SerdeContext
|
|
713
717
|
) => Promise<__HttpRequest>;
|
|
718
|
+
export declare const se_GetEnvironmentCredentialsCommand: (
|
|
719
|
+
input: GetEnvironmentCredentialsCommandInput,
|
|
720
|
+
context: __SerdeContext
|
|
721
|
+
) => Promise<__HttpRequest>;
|
|
714
722
|
export declare const se_GetEnvironmentProfileCommand: (
|
|
715
723
|
input: GetEnvironmentProfileCommandInput,
|
|
716
724
|
context: __SerdeContext
|
|
@@ -1199,6 +1207,10 @@ export declare const de_GetEnvironmentBlueprintConfigurationCommand: (
|
|
|
1199
1207
|
output: __HttpResponse,
|
|
1200
1208
|
context: __SerdeContext
|
|
1201
1209
|
) => Promise<GetEnvironmentBlueprintConfigurationCommandOutput>;
|
|
1210
|
+
export declare const de_GetEnvironmentCredentialsCommand: (
|
|
1211
|
+
output: __HttpResponse,
|
|
1212
|
+
context: __SerdeContext
|
|
1213
|
+
) => Promise<GetEnvironmentCredentialsCommandOutput>;
|
|
1202
1214
|
export declare const de_GetEnvironmentProfileCommand: (
|
|
1203
1215
|
output: __HttpResponse,
|
|
1204
1216
|
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.620.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",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.620.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.620.0",
|
|
25
|
+
"@aws-sdk/core": "3.620.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.620.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.3.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.3",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.5",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.0",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.12",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
|
-
"@smithy/node-http-handler": "^3.1.
|
|
48
|
-
"@smithy/protocol-http": "^4.0
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
47
|
+
"@smithy/node-http-handler": "^3.1.4",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.0",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.10",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.12",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.12",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|