@aws-sdk/client-datazone 3.617.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 +51 -31
- package/dist-es/DataZone.js +2 -0
- package/dist-es/commands/GetEnvironmentCredentialsCommand.js +25 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +3 -5
- package/dist-es/models/models_1.js +1 -5
- package/dist-es/protocols/Aws_restJson1.js +27 -20
- 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/SearchCommand.d.ts +0 -20
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +45 -87
- package/dist-types/models/models_1.d.ts +2 -20
- 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/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -20
- package/dist-types/ts3.4/models/models_1.d.ts +0 -14
- 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
|
@@ -94,7 +94,6 @@ __export(src_exports, {
|
|
|
94
94
|
CreateUserProfileOutputFilterSensitiveLog: () => CreateUserProfileOutputFilterSensitiveLog,
|
|
95
95
|
CustomParameterFilterSensitiveLog: () => CustomParameterFilterSensitiveLog,
|
|
96
96
|
DataAssetActivityStatus: () => DataAssetActivityStatus,
|
|
97
|
-
DataProductSummaryFilterSensitiveLog: () => DataProductSummaryFilterSensitiveLog,
|
|
98
97
|
DataSourceConfigurationInput: () => DataSourceConfigurationInput,
|
|
99
98
|
DataSourceConfigurationOutput: () => DataSourceConfigurationOutput,
|
|
100
99
|
DataSourceErrorType: () => DataSourceErrorType,
|
|
@@ -162,6 +161,8 @@ __export(src_exports, {
|
|
|
162
161
|
GetEnvironmentBlueprintConfigurationCommand: () => GetEnvironmentBlueprintConfigurationCommand,
|
|
163
162
|
GetEnvironmentBlueprintOutputFilterSensitiveLog: () => GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
164
163
|
GetEnvironmentCommand: () => GetEnvironmentCommand,
|
|
164
|
+
GetEnvironmentCredentialsCommand: () => GetEnvironmentCredentialsCommand,
|
|
165
|
+
GetEnvironmentCredentialsOutputFilterSensitiveLog: () => GetEnvironmentCredentialsOutputFilterSensitiveLog,
|
|
165
166
|
GetEnvironmentOutputFilterSensitiveLog: () => GetEnvironmentOutputFilterSensitiveLog,
|
|
166
167
|
GetEnvironmentProfileCommand: () => GetEnvironmentProfileCommand,
|
|
167
168
|
GetEnvironmentProfileOutputFilterSensitiveLog: () => GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
@@ -1455,11 +1456,6 @@ var CreateUserProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
1455
1456
|
...obj,
|
|
1456
1457
|
...obj.details && { details: UserProfileDetailsFilterSensitiveLog(obj.details) }
|
|
1457
1458
|
}), "CreateUserProfileOutputFilterSensitiveLog");
|
|
1458
|
-
var DataProductSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1459
|
-
...obj,
|
|
1460
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1461
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
1462
|
-
}), "DataProductSummaryFilterSensitiveLog");
|
|
1463
1459
|
var DeleteDataSourceOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1464
1460
|
...obj,
|
|
1465
1461
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1557,6 +1553,9 @@ var GetEnvironmentBlueprintOutputFilterSensitiveLog = /* @__PURE__ */ __name((ob
|
|
|
1557
1553
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item))
|
|
1558
1554
|
}
|
|
1559
1555
|
}), "GetEnvironmentBlueprintOutputFilterSensitiveLog");
|
|
1556
|
+
var GetEnvironmentCredentialsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1557
|
+
...obj
|
|
1558
|
+
}), "GetEnvironmentCredentialsOutputFilterSensitiveLog");
|
|
1560
1559
|
var GetEnvironmentProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1561
1560
|
...obj,
|
|
1562
1561
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1740,8 +1739,6 @@ var SearchInventoryResultItem;
|
|
|
1740
1739
|
return visitor.glossaryTermItem(value.glossaryTermItem);
|
|
1741
1740
|
if (value.assetItem !== void 0)
|
|
1742
1741
|
return visitor.assetItem(value.assetItem);
|
|
1743
|
-
if (value.dataProductItem !== void 0)
|
|
1744
|
-
return visitor.dataProductItem(value.dataProductItem);
|
|
1745
1742
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1746
1743
|
}, "visit");
|
|
1747
1744
|
})(SearchInventoryResultItem || (SearchInventoryResultItem = {}));
|
|
@@ -1959,8 +1956,6 @@ var SearchInventoryResultItemFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
|
|
|
1959
1956
|
return { glossaryTermItem: GlossaryTermItemFilterSensitiveLog(obj.glossaryTermItem) };
|
|
1960
1957
|
if (obj.assetItem !== void 0)
|
|
1961
1958
|
return { assetItem: AssetItemFilterSensitiveLog(obj.assetItem) };
|
|
1962
|
-
if (obj.dataProductItem !== void 0)
|
|
1963
|
-
return { dataProductItem: DataProductSummaryFilterSensitiveLog(obj.dataProductItem) };
|
|
1964
1959
|
if (obj.$unknown !== void 0)
|
|
1965
1960
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1966
1961
|
}, "SearchInventoryResultItemFilterSensitiveLog");
|
|
@@ -2954,6 +2949,16 @@ var se_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
2954
2949
|
b.m("GET").h(headers).b(body);
|
|
2955
2950
|
return b.build();
|
|
2956
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");
|
|
2957
2962
|
var se_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2958
2963
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2959
2964
|
const headers = {};
|
|
@@ -5120,6 +5125,23 @@ var de_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
5120
5125
|
Object.assign(contents, doc);
|
|
5121
5126
|
return contents;
|
|
5122
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");
|
|
5123
5145
|
var de_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5124
5146
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5125
5147
|
return de_CommandError(output, context);
|
|
@@ -6735,21 +6757,6 @@ var de_AssetTypeItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
6735
6757
|
updatedBy: import_smithy_client.expectString
|
|
6736
6758
|
});
|
|
6737
6759
|
}, "de_AssetTypeItem");
|
|
6738
|
-
var de_DataProductSummary = /* @__PURE__ */ __name((output, context) => {
|
|
6739
|
-
return (0, import_smithy_client.take)(output, {
|
|
6740
|
-
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6741
|
-
createdBy: import_smithy_client.expectString,
|
|
6742
|
-
dataProductItems: import_smithy_client._json,
|
|
6743
|
-
description: import_smithy_client.expectString,
|
|
6744
|
-
domainId: import_smithy_client.expectString,
|
|
6745
|
-
glossaryTerms: import_smithy_client._json,
|
|
6746
|
-
id: import_smithy_client.expectString,
|
|
6747
|
-
name: import_smithy_client.expectString,
|
|
6748
|
-
owningProjectId: import_smithy_client.expectString,
|
|
6749
|
-
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6750
|
-
updatedBy: import_smithy_client.expectString
|
|
6751
|
-
});
|
|
6752
|
-
}, "de_DataProductSummary");
|
|
6753
6760
|
var de_DataSourceRunActivities = /* @__PURE__ */ __name((output, context) => {
|
|
6754
6761
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
6755
6762
|
return de_DataSourceRunActivity(entry, context);
|
|
@@ -7109,11 +7116,6 @@ var de_SearchInventoryResultItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
7109
7116
|
assetItem: de_AssetItem(output.assetItem, context)
|
|
7110
7117
|
};
|
|
7111
7118
|
}
|
|
7112
|
-
if (output.dataProductItem != null) {
|
|
7113
|
-
return {
|
|
7114
|
-
dataProductItem: de_DataProductSummary(output.dataProductItem, context)
|
|
7115
|
-
};
|
|
7116
|
-
}
|
|
7117
7119
|
if (output.glossaryItem != null) {
|
|
7118
7120
|
return {
|
|
7119
7121
|
glossaryItem: de_GlossaryItem(output.glossaryItem, context)
|
|
@@ -8236,6 +8238,22 @@ var _GetEnvironmentCommand = class _GetEnvironmentCommand extends import_smithy_
|
|
|
8236
8238
|
__name(_GetEnvironmentCommand, "GetEnvironmentCommand");
|
|
8237
8239
|
var GetEnvironmentCommand = _GetEnvironmentCommand;
|
|
8238
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
|
+
|
|
8239
8257
|
// src/commands/GetEnvironmentProfileCommand.ts
|
|
8240
8258
|
|
|
8241
8259
|
|
|
@@ -9365,6 +9383,7 @@ var commands = {
|
|
|
9365
9383
|
GetEnvironmentActionCommand,
|
|
9366
9384
|
GetEnvironmentBlueprintCommand,
|
|
9367
9385
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
9386
|
+
GetEnvironmentCredentialsCommand,
|
|
9368
9387
|
GetEnvironmentProfileCommand,
|
|
9369
9388
|
GetFormTypeCommand,
|
|
9370
9389
|
GetGlossaryCommand,
|
|
@@ -9605,6 +9624,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9605
9624
|
GetEnvironmentBlueprintCommand,
|
|
9606
9625
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
9607
9626
|
GetEnvironmentCommand,
|
|
9627
|
+
GetEnvironmentCredentialsCommand,
|
|
9608
9628
|
GetEnvironmentProfileCommand,
|
|
9609
9629
|
GetFormTypeCommand,
|
|
9610
9630
|
GetGlossaryCommand,
|
|
@@ -9809,7 +9829,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9809
9829
|
SsoUserProfileDetailsFilterSensitiveLog,
|
|
9810
9830
|
UserProfileDetailsFilterSensitiveLog,
|
|
9811
9831
|
CreateUserProfileOutputFilterSensitiveLog,
|
|
9812
|
-
DataProductSummaryFilterSensitiveLog,
|
|
9813
9832
|
DeleteDataSourceOutputFilterSensitiveLog,
|
|
9814
9833
|
GetDataSourceOutputFilterSensitiveLog,
|
|
9815
9834
|
ListDataSourcesInputFilterSensitiveLog,
|
|
@@ -9824,6 +9843,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
9824
9843
|
GetFormTypeOutputFilterSensitiveLog,
|
|
9825
9844
|
GetEnvironmentOutputFilterSensitiveLog,
|
|
9826
9845
|
GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
9846
|
+
GetEnvironmentCredentialsOutputFilterSensitiveLog,
|
|
9827
9847
|
GetEnvironmentProfileOutputFilterSensitiveLog,
|
|
9828
9848
|
GetGroupProfileOutputFilterSensitiveLog,
|
|
9829
9849
|
GetLineageNodeOutputFilterSensitiveLog,
|
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
|
+
}
|
|
@@ -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";
|
|
@@ -840,11 +840,6 @@ export const CreateUserProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
840
840
|
...obj,
|
|
841
841
|
...(obj.details && { details: UserProfileDetailsFilterSensitiveLog(obj.details) }),
|
|
842
842
|
});
|
|
843
|
-
export const DataProductSummaryFilterSensitiveLog = (obj) => ({
|
|
844
|
-
...obj,
|
|
845
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
846
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
847
|
-
});
|
|
848
843
|
export const DeleteDataSourceOutputFilterSensitiveLog = (obj) => ({
|
|
849
844
|
...obj,
|
|
850
845
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -942,6 +937,9 @@ export const GetEnvironmentBlueprintOutputFilterSensitiveLog = (obj) => ({
|
|
|
942
937
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item)),
|
|
943
938
|
}),
|
|
944
939
|
});
|
|
940
|
+
export const GetEnvironmentCredentialsOutputFilterSensitiveLog = (obj) => ({
|
|
941
|
+
...obj,
|
|
942
|
+
});
|
|
945
943
|
export const GetEnvironmentProfileOutputFilterSensitiveLog = (obj) => ({
|
|
946
944
|
...obj,
|
|
947
945
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -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) => {
|
|
@@ -86,8 +86,6 @@ export var SearchInventoryResultItem;
|
|
|
86
86
|
return visitor.glossaryTermItem(value.glossaryTermItem);
|
|
87
87
|
if (value.assetItem !== undefined)
|
|
88
88
|
return visitor.assetItem(value.assetItem);
|
|
89
|
-
if (value.dataProductItem !== undefined)
|
|
90
|
-
return visitor.dataProductItem(value.dataProductItem);
|
|
91
89
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
92
90
|
};
|
|
93
91
|
})(SearchInventoryResultItem || (SearchInventoryResultItem = {}));
|
|
@@ -305,8 +303,6 @@ export const SearchInventoryResultItemFilterSensitiveLog = (obj) => {
|
|
|
305
303
|
return { glossaryTermItem: GlossaryTermItemFilterSensitiveLog(obj.glossaryTermItem) };
|
|
306
304
|
if (obj.assetItem !== undefined)
|
|
307
305
|
return { assetItem: AssetItemFilterSensitiveLog(obj.assetItem) };
|
|
308
|
-
if (obj.dataProductItem !== undefined)
|
|
309
|
-
return { dataProductItem: DataProductSummaryFilterSensitiveLog(obj.dataProductItem) };
|
|
310
306
|
if (obj.$unknown !== undefined)
|
|
311
307
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
312
308
|
};
|
|
@@ -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);
|
|
@@ -4510,21 +4537,6 @@ const de_AssetTypeItem = (output, context) => {
|
|
|
4510
4537
|
updatedBy: __expectString,
|
|
4511
4538
|
});
|
|
4512
4539
|
};
|
|
4513
|
-
const de_DataProductSummary = (output, context) => {
|
|
4514
|
-
return take(output, {
|
|
4515
|
-
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4516
|
-
createdBy: __expectString,
|
|
4517
|
-
dataProductItems: _json,
|
|
4518
|
-
description: __expectString,
|
|
4519
|
-
domainId: __expectString,
|
|
4520
|
-
glossaryTerms: _json,
|
|
4521
|
-
id: __expectString,
|
|
4522
|
-
name: __expectString,
|
|
4523
|
-
owningProjectId: __expectString,
|
|
4524
|
-
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4525
|
-
updatedBy: __expectString,
|
|
4526
|
-
});
|
|
4527
|
-
};
|
|
4528
4540
|
const de_DataSourceRunActivities = (output, context) => {
|
|
4529
4541
|
const retVal = (output || [])
|
|
4530
4542
|
.filter((e) => e != null)
|
|
@@ -4912,11 +4924,6 @@ const de_SearchInventoryResultItem = (output, context) => {
|
|
|
4912
4924
|
assetItem: de_AssetItem(output.assetItem, context),
|
|
4913
4925
|
};
|
|
4914
4926
|
}
|
|
4915
|
-
if (output.dataProductItem != null) {
|
|
4916
|
-
return {
|
|
4917
|
-
dataProductItem: de_DataProductSummary(output.dataProductItem, context),
|
|
4918
|
-
};
|
|
4919
|
-
}
|
|
4920
4927
|
if (output.glossaryItem != null) {
|
|
4921
4928
|
return {
|
|
4922
4929
|
glossaryItem: de_GlossaryItem(output.glossaryItem, 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
|
+
}
|
|
@@ -160,26 +160,6 @@ declare const SearchCommand_base: {
|
|
|
160
160
|
* // ],
|
|
161
161
|
* // },
|
|
162
162
|
* // },
|
|
163
|
-
* // dataProductItem: { // DataProductSummary
|
|
164
|
-
* // domainId: "STRING_VALUE", // required
|
|
165
|
-
* // id: "STRING_VALUE", // required
|
|
166
|
-
* // name: "STRING_VALUE", // required
|
|
167
|
-
* // owningProjectId: "STRING_VALUE", // required
|
|
168
|
-
* // description: "STRING_VALUE",
|
|
169
|
-
* // glossaryTerms: [
|
|
170
|
-
* // "STRING_VALUE",
|
|
171
|
-
* // ],
|
|
172
|
-
* // dataProductItems: [ // DataProductItems
|
|
173
|
-
* // { // DataProductItem
|
|
174
|
-
* // itemId: "STRING_VALUE",
|
|
175
|
-
* // domainId: "STRING_VALUE",
|
|
176
|
-
* // },
|
|
177
|
-
* // ],
|
|
178
|
-
* // createdAt: new Date("TIMESTAMP"),
|
|
179
|
-
* // createdBy: "STRING_VALUE",
|
|
180
|
-
* // updatedAt: new Date("TIMESTAMP"),
|
|
181
|
-
* // updatedBy: "STRING_VALUE",
|
|
182
|
-
* // },
|
|
183
163
|
* // },
|
|
184
164
|
* // ],
|
|
185
165
|
* // nextToken: "STRING_VALUE",
|
|
@@ -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";
|
|
@@ -5302,89 +5302,6 @@ export declare const DataAssetActivityStatus: {
|
|
|
5302
5302
|
* @public
|
|
5303
5303
|
*/
|
|
5304
5304
|
export type DataAssetActivityStatus = (typeof DataAssetActivityStatus)[keyof typeof DataAssetActivityStatus];
|
|
5305
|
-
/**
|
|
5306
|
-
* <p/>
|
|
5307
|
-
*
|
|
5308
|
-
* @deprecated This structure is deprecated.
|
|
5309
|
-
* @public
|
|
5310
|
-
*/
|
|
5311
|
-
export interface DataProductItem {
|
|
5312
|
-
/**
|
|
5313
|
-
* <p/>
|
|
5314
|
-
* @public
|
|
5315
|
-
*/
|
|
5316
|
-
itemId?: string;
|
|
5317
|
-
/**
|
|
5318
|
-
* <p/>
|
|
5319
|
-
* @public
|
|
5320
|
-
*/
|
|
5321
|
-
domainId?: string;
|
|
5322
|
-
}
|
|
5323
|
-
/**
|
|
5324
|
-
* <p/>
|
|
5325
|
-
*
|
|
5326
|
-
* @deprecated This structure is deprecated.
|
|
5327
|
-
* @public
|
|
5328
|
-
*/
|
|
5329
|
-
export interface DataProductSummary {
|
|
5330
|
-
/**
|
|
5331
|
-
* <p/>
|
|
5332
|
-
* @public
|
|
5333
|
-
*/
|
|
5334
|
-
domainId: string | undefined;
|
|
5335
|
-
/**
|
|
5336
|
-
* <p/>
|
|
5337
|
-
* @public
|
|
5338
|
-
*/
|
|
5339
|
-
id: string | undefined;
|
|
5340
|
-
/**
|
|
5341
|
-
* <p/>
|
|
5342
|
-
* @public
|
|
5343
|
-
*/
|
|
5344
|
-
name: string | undefined;
|
|
5345
|
-
/**
|
|
5346
|
-
* <p/>
|
|
5347
|
-
* @public
|
|
5348
|
-
*/
|
|
5349
|
-
owningProjectId: string | undefined;
|
|
5350
|
-
/**
|
|
5351
|
-
* <p/>
|
|
5352
|
-
* @public
|
|
5353
|
-
*/
|
|
5354
|
-
description?: string;
|
|
5355
|
-
/**
|
|
5356
|
-
* <p/>
|
|
5357
|
-
* @public
|
|
5358
|
-
*/
|
|
5359
|
-
glossaryTerms?: string[];
|
|
5360
|
-
/**
|
|
5361
|
-
* @deprecated
|
|
5362
|
-
*
|
|
5363
|
-
* <p/>
|
|
5364
|
-
* @public
|
|
5365
|
-
*/
|
|
5366
|
-
dataProductItems?: DataProductItem[];
|
|
5367
|
-
/**
|
|
5368
|
-
* <p/>
|
|
5369
|
-
* @public
|
|
5370
|
-
*/
|
|
5371
|
-
createdAt?: Date;
|
|
5372
|
-
/**
|
|
5373
|
-
* <p/>
|
|
5374
|
-
* @public
|
|
5375
|
-
*/
|
|
5376
|
-
createdBy?: string;
|
|
5377
|
-
/**
|
|
5378
|
-
* <p/>
|
|
5379
|
-
* @public
|
|
5380
|
-
*/
|
|
5381
|
-
updatedAt?: Date;
|
|
5382
|
-
/**
|
|
5383
|
-
* <p/>
|
|
5384
|
-
* @public
|
|
5385
|
-
*/
|
|
5386
|
-
updatedBy?: string;
|
|
5387
|
-
}
|
|
5388
5305
|
/**
|
|
5389
5306
|
* @public
|
|
5390
5307
|
*/
|
|
@@ -7816,6 +7733,47 @@ export interface GetEnvironmentBlueprintOutput {
|
|
|
7816
7733
|
*/
|
|
7817
7734
|
updatedAt?: Date;
|
|
7818
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
|
+
}
|
|
7819
7777
|
/**
|
|
7820
7778
|
* @public
|
|
7821
7779
|
*/
|
|
@@ -9466,10 +9424,6 @@ export declare const UserProfileDetailsFilterSensitiveLog: (obj: UserProfileDeta
|
|
|
9466
9424
|
* @internal
|
|
9467
9425
|
*/
|
|
9468
9426
|
export declare const CreateUserProfileOutputFilterSensitiveLog: (obj: CreateUserProfileOutput) => any;
|
|
9469
|
-
/**
|
|
9470
|
-
* @internal
|
|
9471
|
-
*/
|
|
9472
|
-
export declare const DataProductSummaryFilterSensitiveLog: (obj: DataProductSummary) => any;
|
|
9473
9427
|
/**
|
|
9474
9428
|
* @internal
|
|
9475
9429
|
*/
|
|
@@ -9526,6 +9480,10 @@ export declare const GetEnvironmentOutputFilterSensitiveLog: (obj: GetEnvironmen
|
|
|
9526
9480
|
* @internal
|
|
9527
9481
|
*/
|
|
9528
9482
|
export declare const GetEnvironmentBlueprintOutputFilterSensitiveLog: (obj: GetEnvironmentBlueprintOutput) => any;
|
|
9483
|
+
/**
|
|
9484
|
+
* @internal
|
|
9485
|
+
*/
|
|
9486
|
+
export declare const GetEnvironmentCredentialsOutputFilterSensitiveLog: (obj: GetEnvironmentCredentialsOutput) => any;
|
|
9529
9487
|
/**
|
|
9530
9488
|
* @internal
|
|
9531
9489
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActionParameters, AssetItem, AssetListing, AssetListingItem, AssetTypeItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter,
|
|
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
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -2766,7 +2766,7 @@ export interface GlossaryTermItem {
|
|
|
2766
2766
|
* <p>The details of the search results.</p>
|
|
2767
2767
|
* @public
|
|
2768
2768
|
*/
|
|
2769
|
-
export type SearchInventoryResultItem = SearchInventoryResultItem.AssetItemMember | SearchInventoryResultItem.
|
|
2769
|
+
export type SearchInventoryResultItem = SearchInventoryResultItem.AssetItemMember | SearchInventoryResultItem.GlossaryItemMember | SearchInventoryResultItem.GlossaryTermItemMember | SearchInventoryResultItem.$UnknownMember;
|
|
2770
2770
|
/**
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
@@ -2779,7 +2779,6 @@ export declare namespace SearchInventoryResultItem {
|
|
|
2779
2779
|
glossaryItem: GlossaryItem;
|
|
2780
2780
|
glossaryTermItem?: never;
|
|
2781
2781
|
assetItem?: never;
|
|
2782
|
-
dataProductItem?: never;
|
|
2783
2782
|
$unknown?: never;
|
|
2784
2783
|
}
|
|
2785
2784
|
/**
|
|
@@ -2790,7 +2789,6 @@ export declare namespace SearchInventoryResultItem {
|
|
|
2790
2789
|
glossaryItem?: never;
|
|
2791
2790
|
glossaryTermItem: GlossaryTermItem;
|
|
2792
2791
|
assetItem?: never;
|
|
2793
|
-
dataProductItem?: never;
|
|
2794
2792
|
$unknown?: never;
|
|
2795
2793
|
}
|
|
2796
2794
|
/**
|
|
@@ -2801,20 +2799,6 @@ export declare namespace SearchInventoryResultItem {
|
|
|
2801
2799
|
glossaryItem?: never;
|
|
2802
2800
|
glossaryTermItem?: never;
|
|
2803
2801
|
assetItem: AssetItem;
|
|
2804
|
-
dataProductItem?: never;
|
|
2805
|
-
$unknown?: never;
|
|
2806
|
-
}
|
|
2807
|
-
/**
|
|
2808
|
-
* @deprecated
|
|
2809
|
-
*
|
|
2810
|
-
* <p>The data product item included in the search results.</p>
|
|
2811
|
-
* @public
|
|
2812
|
-
*/
|
|
2813
|
-
interface DataProductItemMember {
|
|
2814
|
-
glossaryItem?: never;
|
|
2815
|
-
glossaryTermItem?: never;
|
|
2816
|
-
assetItem?: never;
|
|
2817
|
-
dataProductItem: DataProductSummary;
|
|
2818
2802
|
$unknown?: never;
|
|
2819
2803
|
}
|
|
2820
2804
|
/**
|
|
@@ -2824,14 +2808,12 @@ export declare namespace SearchInventoryResultItem {
|
|
|
2824
2808
|
glossaryItem?: never;
|
|
2825
2809
|
glossaryTermItem?: never;
|
|
2826
2810
|
assetItem?: never;
|
|
2827
|
-
dataProductItem?: never;
|
|
2828
2811
|
$unknown: [string, any];
|
|
2829
2812
|
}
|
|
2830
2813
|
interface Visitor<T> {
|
|
2831
2814
|
glossaryItem: (value: GlossaryItem) => T;
|
|
2832
2815
|
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
2833
2816
|
assetItem: (value: AssetItem) => T;
|
|
2834
|
-
dataProductItem: (value: DataProductSummary) => T;
|
|
2835
2817
|
_: (name: string, value: any) => T;
|
|
2836
2818
|
}
|
|
2837
2819
|
const visit: <T>(value: SearchInventoryResultItem, visitor: Visitor<T>) => T;
|
|
@@ -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 {}
|
|
@@ -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";
|
|
@@ -1747,23 +1747,6 @@ export declare const DataAssetActivityStatus: {
|
|
|
1747
1747
|
};
|
|
1748
1748
|
export type DataAssetActivityStatus =
|
|
1749
1749
|
(typeof DataAssetActivityStatus)[keyof typeof DataAssetActivityStatus];
|
|
1750
|
-
export interface DataProductItem {
|
|
1751
|
-
itemId?: string;
|
|
1752
|
-
domainId?: string;
|
|
1753
|
-
}
|
|
1754
|
-
export interface DataProductSummary {
|
|
1755
|
-
domainId: string | undefined;
|
|
1756
|
-
id: string | undefined;
|
|
1757
|
-
name: string | undefined;
|
|
1758
|
-
owningProjectId: string | undefined;
|
|
1759
|
-
description?: string;
|
|
1760
|
-
glossaryTerms?: string[];
|
|
1761
|
-
dataProductItems?: DataProductItem[];
|
|
1762
|
-
createdAt?: Date;
|
|
1763
|
-
createdBy?: string;
|
|
1764
|
-
updatedAt?: Date;
|
|
1765
|
-
updatedBy?: string;
|
|
1766
|
-
}
|
|
1767
1750
|
export interface DeleteDataSourceInput {
|
|
1768
1751
|
domainIdentifier: string | undefined;
|
|
1769
1752
|
identifier: string | undefined;
|
|
@@ -2334,6 +2317,16 @@ export interface GetEnvironmentBlueprintOutput {
|
|
|
2334
2317
|
createdAt?: Date;
|
|
2335
2318
|
updatedAt?: Date;
|
|
2336
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
|
+
}
|
|
2337
2330
|
export interface GetEnvironmentProfileInput {
|
|
2338
2331
|
domainIdentifier: string | undefined;
|
|
2339
2332
|
identifier: string | undefined;
|
|
@@ -2793,9 +2786,6 @@ export declare const UserProfileDetailsFilterSensitiveLog: (
|
|
|
2793
2786
|
export declare const CreateUserProfileOutputFilterSensitiveLog: (
|
|
2794
2787
|
obj: CreateUserProfileOutput
|
|
2795
2788
|
) => any;
|
|
2796
|
-
export declare const DataProductSummaryFilterSensitiveLog: (
|
|
2797
|
-
obj: DataProductSummary
|
|
2798
|
-
) => any;
|
|
2799
2789
|
export declare const DeleteDataSourceOutputFilterSensitiveLog: (
|
|
2800
2790
|
obj: DeleteDataSourceOutput
|
|
2801
2791
|
) => any;
|
|
@@ -2836,6 +2826,9 @@ export declare const GetEnvironmentOutputFilterSensitiveLog: (
|
|
|
2836
2826
|
export declare const GetEnvironmentBlueprintOutputFilterSensitiveLog: (
|
|
2837
2827
|
obj: GetEnvironmentBlueprintOutput
|
|
2838
2828
|
) => any;
|
|
2829
|
+
export declare const GetEnvironmentCredentialsOutputFilterSensitiveLog: (
|
|
2830
|
+
obj: GetEnvironmentCredentialsOutput
|
|
2831
|
+
) => any;
|
|
2839
2832
|
export declare const GetEnvironmentProfileOutputFilterSensitiveLog: (
|
|
2840
2833
|
obj: GetEnvironmentProfileOutput
|
|
2841
2834
|
) => any;
|
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
ColumnFilterConfiguration,
|
|
8
8
|
ConfigurableEnvironmentAction,
|
|
9
9
|
CustomParameter,
|
|
10
|
-
DataProductSummary,
|
|
11
10
|
Deployment,
|
|
12
11
|
DeploymentProperties,
|
|
13
12
|
EnvironmentParameter,
|
|
@@ -699,7 +698,6 @@ export interface GlossaryTermItem {
|
|
|
699
698
|
}
|
|
700
699
|
export type SearchInventoryResultItem =
|
|
701
700
|
| SearchInventoryResultItem.AssetItemMember
|
|
702
|
-
| SearchInventoryResultItem.DataProductItemMember
|
|
703
701
|
| SearchInventoryResultItem.GlossaryItemMember
|
|
704
702
|
| SearchInventoryResultItem.GlossaryTermItemMember
|
|
705
703
|
| SearchInventoryResultItem.$UnknownMember;
|
|
@@ -708,42 +706,30 @@ export declare namespace SearchInventoryResultItem {
|
|
|
708
706
|
glossaryItem: GlossaryItem;
|
|
709
707
|
glossaryTermItem?: never;
|
|
710
708
|
assetItem?: never;
|
|
711
|
-
dataProductItem?: never;
|
|
712
709
|
$unknown?: never;
|
|
713
710
|
}
|
|
714
711
|
interface GlossaryTermItemMember {
|
|
715
712
|
glossaryItem?: never;
|
|
716
713
|
glossaryTermItem: GlossaryTermItem;
|
|
717
714
|
assetItem?: never;
|
|
718
|
-
dataProductItem?: never;
|
|
719
715
|
$unknown?: never;
|
|
720
716
|
}
|
|
721
717
|
interface AssetItemMember {
|
|
722
718
|
glossaryItem?: never;
|
|
723
719
|
glossaryTermItem?: never;
|
|
724
720
|
assetItem: AssetItem;
|
|
725
|
-
dataProductItem?: never;
|
|
726
|
-
$unknown?: never;
|
|
727
|
-
}
|
|
728
|
-
interface DataProductItemMember {
|
|
729
|
-
glossaryItem?: never;
|
|
730
|
-
glossaryTermItem?: never;
|
|
731
|
-
assetItem?: never;
|
|
732
|
-
dataProductItem: DataProductSummary;
|
|
733
721
|
$unknown?: never;
|
|
734
722
|
}
|
|
735
723
|
interface $UnknownMember {
|
|
736
724
|
glossaryItem?: never;
|
|
737
725
|
glossaryTermItem?: never;
|
|
738
726
|
assetItem?: never;
|
|
739
|
-
dataProductItem?: never;
|
|
740
727
|
$unknown: [string, any];
|
|
741
728
|
}
|
|
742
729
|
interface Visitor<T> {
|
|
743
730
|
glossaryItem: (value: GlossaryItem) => T;
|
|
744
731
|
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
745
732
|
assetItem: (value: AssetItem) => T;
|
|
746
|
-
dataProductItem: (value: DataProductSummary) => T;
|
|
747
733
|
_: (name: string, value: any) => T;
|
|
748
734
|
}
|
|
749
735
|
const visit: <T>(value: SearchInventoryResultItem, visitor: Visitor<T>) => T;
|
|
@@ -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",
|