@aws-sdk/client-datazone 3.921.0 → 3.925.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/dist-cjs/index.js +38 -8
- package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +3 -8
- package/dist-es/models/models_2.js +11 -1
- package/dist-es/protocols/Aws_restJson1.js +20 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectMembershipCommand.d.ts +1 -1
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +18 -0
- package/dist-types/commands/GetProjectCommand.d.ts +7 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +9 -0
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -2
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +43 -30
- package/dist-types/models/models_1.d.ts +102 -140
- package/dist-types/models/models_2.d.ts +181 -2
- package/dist-types/ts3.4/commands/CreateProjectMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +13 -7
- package/dist-types/ts3.4/models/models_1.d.ts +23 -35
- package/dist-types/ts3.4/models/models_2.d.ts +47 -1
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -895,6 +895,10 @@ const ProjectStatus = {
|
|
|
895
895
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
896
896
|
UPDATING: "UPDATING",
|
|
897
897
|
};
|
|
898
|
+
const ResourceTagSource = {
|
|
899
|
+
PROJECT: "PROJECT",
|
|
900
|
+
PROJECT_PROFILE: "PROJECT_PROFILE",
|
|
901
|
+
};
|
|
898
902
|
const UserDesignation = {
|
|
899
903
|
PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
|
|
900
904
|
PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
|
|
@@ -1766,6 +1770,7 @@ const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
|
|
|
1766
1770
|
...obj,
|
|
1767
1771
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
1768
1772
|
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
1773
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: smithyClient.SENSITIVE_STRING }),
|
|
1769
1774
|
...(obj.environmentConfigurations && {
|
|
1770
1775
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
1771
1776
|
}),
|
|
@@ -1774,6 +1779,7 @@ const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
1774
1779
|
...obj,
|
|
1775
1780
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
1776
1781
|
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
1782
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: smithyClient.SENSITIVE_STRING }),
|
|
1777
1783
|
...(obj.environmentConfigurations && {
|
|
1778
1784
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
1779
1785
|
}),
|
|
@@ -2041,6 +2047,7 @@ const GetProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
2041
2047
|
...obj,
|
|
2042
2048
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2043
2049
|
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
2050
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: smithyClient.SENSITIVE_STRING }),
|
|
2044
2051
|
...(obj.environmentConfigurations && {
|
|
2045
2052
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
2046
2053
|
}),
|
|
@@ -2241,14 +2248,6 @@ const SubscriptionSummaryFilterSensitiveLog = (obj) => ({
|
|
|
2241
2248
|
}),
|
|
2242
2249
|
...(obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }),
|
|
2243
2250
|
});
|
|
2244
|
-
const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
2245
|
-
...obj,
|
|
2246
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
2247
|
-
});
|
|
2248
|
-
const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
2249
|
-
...obj,
|
|
2250
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2251
|
-
});
|
|
2252
2251
|
|
|
2253
2252
|
const MetadataGenerationRunStatus = {
|
|
2254
2253
|
CANCELED: "CANCELED",
|
|
@@ -2363,6 +2362,14 @@ exports.AssetFilterConfiguration = void 0;
|
|
|
2363
2362
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2364
2363
|
};
|
|
2365
2364
|
})(exports.AssetFilterConfiguration || (exports.AssetFilterConfiguration = {}));
|
|
2365
|
+
const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
2366
|
+
...obj,
|
|
2367
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
2368
|
+
});
|
|
2369
|
+
const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
2370
|
+
...obj,
|
|
2371
|
+
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2372
|
+
});
|
|
2366
2373
|
const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
2367
2374
|
...obj,
|
|
2368
2375
|
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
@@ -2601,6 +2608,7 @@ const UpdateProjectProfileInputFilterSensitiveLog = (obj) => ({
|
|
|
2601
2608
|
...obj,
|
|
2602
2609
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2603
2610
|
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
2611
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: smithyClient.SENSITIVE_STRING }),
|
|
2604
2612
|
...(obj.environmentConfigurations && {
|
|
2605
2613
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
2606
2614
|
}),
|
|
@@ -2609,6 +2617,7 @@ const UpdateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
2609
2617
|
...obj,
|
|
2610
2618
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2611
2619
|
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
2620
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: smithyClient.SENSITIVE_STRING }),
|
|
2612
2621
|
...(obj.environmentConfigurations && {
|
|
2613
2622
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
2614
2623
|
}),
|
|
@@ -3193,6 +3202,7 @@ const se_CreateProjectCommand = async (input, context) => {
|
|
|
3193
3202
|
glossaryTerms: (_) => smithyClient._json(_),
|
|
3194
3203
|
name: [],
|
|
3195
3204
|
projectProfileId: [],
|
|
3205
|
+
resourceTags: (_) => smithyClient._json(_),
|
|
3196
3206
|
userParameters: (_) => smithyClient._json(_),
|
|
3197
3207
|
}));
|
|
3198
3208
|
b.m("POST").h(headers).b(body);
|
|
@@ -3223,10 +3233,13 @@ const se_CreateProjectProfileCommand = async (input, context) => {
|
|
|
3223
3233
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3224
3234
|
let body;
|
|
3225
3235
|
body = JSON.stringify(smithyClient.take(input, {
|
|
3236
|
+
allowCustomProjectResourceTags: [],
|
|
3226
3237
|
description: [],
|
|
3227
3238
|
domainUnitIdentifier: [],
|
|
3228
3239
|
environmentConfigurations: (_) => smithyClient._json(_),
|
|
3229
3240
|
name: [],
|
|
3241
|
+
projectResourceTags: (_) => smithyClient._json(_),
|
|
3242
|
+
projectResourceTagsDescription: [],
|
|
3230
3243
|
status: [],
|
|
3231
3244
|
}));
|
|
3232
3245
|
b.m("POST").h(headers).b(body);
|
|
@@ -5105,6 +5118,7 @@ const se_UpdateProjectCommand = async (input, context) => {
|
|
|
5105
5118
|
glossaryTerms: (_) => smithyClient._json(_),
|
|
5106
5119
|
name: [],
|
|
5107
5120
|
projectProfileVersion: [],
|
|
5121
|
+
resourceTags: (_) => smithyClient._json(_),
|
|
5108
5122
|
userParameters: (_) => smithyClient._json(_),
|
|
5109
5123
|
}));
|
|
5110
5124
|
b.m("PATCH").h(headers).b(body);
|
|
@@ -5120,10 +5134,13 @@ const se_UpdateProjectProfileCommand = async (input, context) => {
|
|
|
5120
5134
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
5121
5135
|
let body;
|
|
5122
5136
|
body = JSON.stringify(smithyClient.take(input, {
|
|
5137
|
+
allowCustomProjectResourceTags: [],
|
|
5123
5138
|
description: [],
|
|
5124
5139
|
domainUnitIdentifier: [],
|
|
5125
5140
|
environmentConfigurations: (_) => smithyClient._json(_),
|
|
5126
5141
|
name: [],
|
|
5142
|
+
projectResourceTags: (_) => smithyClient._json(_),
|
|
5143
|
+
projectResourceTagsDescription: [],
|
|
5127
5144
|
status: [],
|
|
5128
5145
|
}));
|
|
5129
5146
|
b.m("PATCH").h(headers).b(body);
|
|
@@ -5857,6 +5874,7 @@ const de_CreateProjectCommand = async (output, context) => {
|
|
|
5857
5874
|
name: smithyClient.expectString,
|
|
5858
5875
|
projectProfileId: smithyClient.expectString,
|
|
5859
5876
|
projectStatus: smithyClient.expectString,
|
|
5877
|
+
resourceTags: smithyClient._json,
|
|
5860
5878
|
userParameters: smithyClient._json,
|
|
5861
5879
|
});
|
|
5862
5880
|
Object.assign(contents, doc);
|
|
@@ -5881,6 +5899,7 @@ const de_CreateProjectProfileCommand = async (output, context) => {
|
|
|
5881
5899
|
});
|
|
5882
5900
|
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
5883
5901
|
const doc = smithyClient.take(data, {
|
|
5902
|
+
allowCustomProjectResourceTags: smithyClient.expectBoolean,
|
|
5884
5903
|
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
5885
5904
|
createdBy: smithyClient.expectString,
|
|
5886
5905
|
description: smithyClient.expectString,
|
|
@@ -5890,6 +5909,8 @@ const de_CreateProjectProfileCommand = async (output, context) => {
|
|
|
5890
5909
|
id: smithyClient.expectString,
|
|
5891
5910
|
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
5892
5911
|
name: smithyClient.expectString,
|
|
5912
|
+
projectResourceTags: smithyClient._json,
|
|
5913
|
+
projectResourceTagsDescription: smithyClient.expectString,
|
|
5893
5914
|
status: smithyClient.expectString,
|
|
5894
5915
|
});
|
|
5895
5916
|
Object.assign(contents, doc);
|
|
@@ -7001,6 +7022,7 @@ const de_GetProjectCommand = async (output, context) => {
|
|
|
7001
7022
|
name: smithyClient.expectString,
|
|
7002
7023
|
projectProfileId: smithyClient.expectString,
|
|
7003
7024
|
projectStatus: smithyClient.expectString,
|
|
7025
|
+
resourceTags: smithyClient._json,
|
|
7004
7026
|
userParameters: smithyClient._json,
|
|
7005
7027
|
});
|
|
7006
7028
|
Object.assign(contents, doc);
|
|
@@ -7015,6 +7037,7 @@ const de_GetProjectProfileCommand = async (output, context) => {
|
|
|
7015
7037
|
});
|
|
7016
7038
|
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
7017
7039
|
const doc = smithyClient.take(data, {
|
|
7040
|
+
allowCustomProjectResourceTags: smithyClient.expectBoolean,
|
|
7018
7041
|
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
7019
7042
|
createdBy: smithyClient.expectString,
|
|
7020
7043
|
description: smithyClient.expectString,
|
|
@@ -7024,6 +7047,8 @@ const de_GetProjectProfileCommand = async (output, context) => {
|
|
|
7024
7047
|
id: smithyClient.expectString,
|
|
7025
7048
|
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
7026
7049
|
name: smithyClient.expectString,
|
|
7050
|
+
projectResourceTags: smithyClient._json,
|
|
7051
|
+
projectResourceTagsDescription: smithyClient.expectString,
|
|
7027
7052
|
status: smithyClient.expectString,
|
|
7028
7053
|
});
|
|
7029
7054
|
Object.assign(contents, doc);
|
|
@@ -8311,6 +8336,7 @@ const de_UpdateProjectCommand = async (output, context) => {
|
|
|
8311
8336
|
name: smithyClient.expectString,
|
|
8312
8337
|
projectProfileId: smithyClient.expectString,
|
|
8313
8338
|
projectStatus: smithyClient.expectString,
|
|
8339
|
+
resourceTags: smithyClient._json,
|
|
8314
8340
|
userParameters: smithyClient._json,
|
|
8315
8341
|
});
|
|
8316
8342
|
Object.assign(contents, doc);
|
|
@@ -8325,6 +8351,7 @@ const de_UpdateProjectProfileCommand = async (output, context) => {
|
|
|
8325
8351
|
});
|
|
8326
8352
|
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
8327
8353
|
const doc = smithyClient.take(data, {
|
|
8354
|
+
allowCustomProjectResourceTags: smithyClient.expectBoolean,
|
|
8328
8355
|
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
8329
8356
|
createdBy: smithyClient.expectString,
|
|
8330
8357
|
description: smithyClient.expectString,
|
|
@@ -8334,6 +8361,8 @@ const de_UpdateProjectProfileCommand = async (output, context) => {
|
|
|
8334
8361
|
id: smithyClient.expectString,
|
|
8335
8362
|
lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
8336
8363
|
name: smithyClient.expectString,
|
|
8364
|
+
projectResourceTags: smithyClient._json,
|
|
8365
|
+
projectResourceTagsDescription: smithyClient.expectString,
|
|
8337
8366
|
status: smithyClient.expectString,
|
|
8338
8367
|
});
|
|
8339
8368
|
Object.assign(contents, doc);
|
|
@@ -13344,6 +13373,7 @@ exports.RemoveEntityOwnerCommand = RemoveEntityOwnerCommand;
|
|
|
13344
13373
|
exports.RemovePolicyGrantCommand = RemovePolicyGrantCommand;
|
|
13345
13374
|
exports.ResolutionStrategy = ResolutionStrategy;
|
|
13346
13375
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
13376
|
+
exports.ResourceTagSource = ResourceTagSource;
|
|
13347
13377
|
exports.RevokeSubscriptionCommand = RevokeSubscriptionCommand;
|
|
13348
13378
|
exports.RevokeSubscriptionOutputFilterSensitiveLog = RevokeSubscriptionOutputFilterSensitiveLog;
|
|
13349
13379
|
exports.RuleAction = RuleAction;
|
|
@@ -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 { ListSubscriptionTargetsOutputFilterSensitiveLog } from "../models/models_2";
|
|
5
|
+
import { ListSubscriptionTargetsOutputFilterSensitiveLog, } from "../models/models_2";
|
|
6
6
|
import { de_ListSubscriptionTargetsCommand, se_ListSubscriptionTargetsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListSubscriptionTargetsCommand extends $Command
|
|
@@ -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 { ListSubscriptionsOutputFilterSensitiveLog
|
|
5
|
+
import { ListSubscriptionsOutputFilterSensitiveLog } from "../models/models_2";
|
|
6
6
|
import { de_ListSubscriptionsCommand, se_ListSubscriptionsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListSubscriptionsCommand extends $Command
|
|
@@ -779,6 +779,10 @@ export const ProjectStatus = {
|
|
|
779
779
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
780
780
|
UPDATING: "UPDATING",
|
|
781
781
|
};
|
|
782
|
+
export const ResourceTagSource = {
|
|
783
|
+
PROJECT: "PROJECT",
|
|
784
|
+
PROJECT_PROFILE: "PROJECT_PROFILE",
|
|
785
|
+
};
|
|
782
786
|
export const UserDesignation = {
|
|
783
787
|
PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
|
|
784
788
|
PROJECT_CATALOG_STEWARD: "PROJECT_CATALOG_STEWARD",
|
|
@@ -291,6 +291,7 @@ export const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
|
|
|
291
291
|
...obj,
|
|
292
292
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
293
293
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
294
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: SENSITIVE_STRING }),
|
|
294
295
|
...(obj.environmentConfigurations && {
|
|
295
296
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
296
297
|
}),
|
|
@@ -299,6 +300,7 @@ export const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
299
300
|
...obj,
|
|
300
301
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
301
302
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
303
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: SENSITIVE_STRING }),
|
|
302
304
|
...(obj.environmentConfigurations && {
|
|
303
305
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
304
306
|
}),
|
|
@@ -566,6 +568,7 @@ export const GetProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
566
568
|
...obj,
|
|
567
569
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
568
570
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
571
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: SENSITIVE_STRING }),
|
|
569
572
|
...(obj.environmentConfigurations && {
|
|
570
573
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
571
574
|
}),
|
|
@@ -766,11 +769,3 @@ export const SubscriptionSummaryFilterSensitiveLog = (obj) => ({
|
|
|
766
769
|
}),
|
|
767
770
|
...(obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }),
|
|
768
771
|
});
|
|
769
|
-
export const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
770
|
-
...obj,
|
|
771
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
772
|
-
});
|
|
773
|
-
export const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
774
|
-
...obj,
|
|
775
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
776
|
-
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountSourceFilterSensitiveLog, AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionPropertiesPatchFilterSensitiveLog, CustomParameterFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
|
|
3
|
-
import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, ImportFilterSensitiveLog,
|
|
3
|
+
import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, ImportFilterSensitiveLog, SubscriptionSummaryFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
|
|
4
4
|
export const MetadataGenerationRunStatus = {
|
|
5
5
|
CANCELED: "CANCELED",
|
|
6
6
|
FAILED: "FAILED",
|
|
@@ -114,6 +114,14 @@ export var AssetFilterConfiguration;
|
|
|
114
114
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
115
115
|
};
|
|
116
116
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
117
|
+
export const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
118
|
+
...obj,
|
|
119
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
120
|
+
});
|
|
121
|
+
export const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
122
|
+
...obj,
|
|
123
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
124
|
+
});
|
|
117
125
|
export const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
118
126
|
...obj,
|
|
119
127
|
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
@@ -352,6 +360,7 @@ export const UpdateProjectProfileInputFilterSensitiveLog = (obj) => ({
|
|
|
352
360
|
...obj,
|
|
353
361
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
354
362
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
363
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: SENSITIVE_STRING }),
|
|
355
364
|
...(obj.environmentConfigurations && {
|
|
356
365
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
357
366
|
}),
|
|
@@ -360,6 +369,7 @@ export const UpdateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
|
360
369
|
...obj,
|
|
361
370
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
362
371
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
372
|
+
...(obj.projectResourceTagsDescription && { projectResourceTagsDescription: SENSITIVE_STRING }),
|
|
363
373
|
...(obj.environmentConfigurations && {
|
|
364
374
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
365
375
|
}),
|
|
@@ -527,6 +527,7 @@ export const se_CreateProjectCommand = async (input, context) => {
|
|
|
527
527
|
glossaryTerms: (_) => _json(_),
|
|
528
528
|
name: [],
|
|
529
529
|
projectProfileId: [],
|
|
530
|
+
resourceTags: (_) => _json(_),
|
|
530
531
|
userParameters: (_) => _json(_),
|
|
531
532
|
}));
|
|
532
533
|
b.m("POST").h(headers).b(body);
|
|
@@ -557,10 +558,13 @@ export const se_CreateProjectProfileCommand = async (input, context) => {
|
|
|
557
558
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
558
559
|
let body;
|
|
559
560
|
body = JSON.stringify(take(input, {
|
|
561
|
+
allowCustomProjectResourceTags: [],
|
|
560
562
|
description: [],
|
|
561
563
|
domainUnitIdentifier: [],
|
|
562
564
|
environmentConfigurations: (_) => _json(_),
|
|
563
565
|
name: [],
|
|
566
|
+
projectResourceTags: (_) => _json(_),
|
|
567
|
+
projectResourceTagsDescription: [],
|
|
564
568
|
status: [],
|
|
565
569
|
}));
|
|
566
570
|
b.m("POST").h(headers).b(body);
|
|
@@ -2439,6 +2443,7 @@ export const se_UpdateProjectCommand = async (input, context) => {
|
|
|
2439
2443
|
glossaryTerms: (_) => _json(_),
|
|
2440
2444
|
name: [],
|
|
2441
2445
|
projectProfileVersion: [],
|
|
2446
|
+
resourceTags: (_) => _json(_),
|
|
2442
2447
|
userParameters: (_) => _json(_),
|
|
2443
2448
|
}));
|
|
2444
2449
|
b.m("PATCH").h(headers).b(body);
|
|
@@ -2454,10 +2459,13 @@ export const se_UpdateProjectProfileCommand = async (input, context) => {
|
|
|
2454
2459
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
2455
2460
|
let body;
|
|
2456
2461
|
body = JSON.stringify(take(input, {
|
|
2462
|
+
allowCustomProjectResourceTags: [],
|
|
2457
2463
|
description: [],
|
|
2458
2464
|
domainUnitIdentifier: [],
|
|
2459
2465
|
environmentConfigurations: (_) => _json(_),
|
|
2460
2466
|
name: [],
|
|
2467
|
+
projectResourceTags: (_) => _json(_),
|
|
2468
|
+
projectResourceTagsDescription: [],
|
|
2461
2469
|
status: [],
|
|
2462
2470
|
}));
|
|
2463
2471
|
b.m("PATCH").h(headers).b(body);
|
|
@@ -3191,6 +3199,7 @@ export const de_CreateProjectCommand = async (output, context) => {
|
|
|
3191
3199
|
name: __expectString,
|
|
3192
3200
|
projectProfileId: __expectString,
|
|
3193
3201
|
projectStatus: __expectString,
|
|
3202
|
+
resourceTags: _json,
|
|
3194
3203
|
userParameters: _json,
|
|
3195
3204
|
});
|
|
3196
3205
|
Object.assign(contents, doc);
|
|
@@ -3215,6 +3224,7 @@ export const de_CreateProjectProfileCommand = async (output, context) => {
|
|
|
3215
3224
|
});
|
|
3216
3225
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3217
3226
|
const doc = take(data, {
|
|
3227
|
+
allowCustomProjectResourceTags: __expectBoolean,
|
|
3218
3228
|
createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
3219
3229
|
createdBy: __expectString,
|
|
3220
3230
|
description: __expectString,
|
|
@@ -3224,6 +3234,8 @@ export const de_CreateProjectProfileCommand = async (output, context) => {
|
|
|
3224
3234
|
id: __expectString,
|
|
3225
3235
|
lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
3226
3236
|
name: __expectString,
|
|
3237
|
+
projectResourceTags: _json,
|
|
3238
|
+
projectResourceTagsDescription: __expectString,
|
|
3227
3239
|
status: __expectString,
|
|
3228
3240
|
});
|
|
3229
3241
|
Object.assign(contents, doc);
|
|
@@ -4335,6 +4347,7 @@ export const de_GetProjectCommand = async (output, context) => {
|
|
|
4335
4347
|
name: __expectString,
|
|
4336
4348
|
projectProfileId: __expectString,
|
|
4337
4349
|
projectStatus: __expectString,
|
|
4350
|
+
resourceTags: _json,
|
|
4338
4351
|
userParameters: _json,
|
|
4339
4352
|
});
|
|
4340
4353
|
Object.assign(contents, doc);
|
|
@@ -4349,6 +4362,7 @@ export const de_GetProjectProfileCommand = async (output, context) => {
|
|
|
4349
4362
|
});
|
|
4350
4363
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4351
4364
|
const doc = take(data, {
|
|
4365
|
+
allowCustomProjectResourceTags: __expectBoolean,
|
|
4352
4366
|
createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
4353
4367
|
createdBy: __expectString,
|
|
4354
4368
|
description: __expectString,
|
|
@@ -4358,6 +4372,8 @@ export const de_GetProjectProfileCommand = async (output, context) => {
|
|
|
4358
4372
|
id: __expectString,
|
|
4359
4373
|
lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
4360
4374
|
name: __expectString,
|
|
4375
|
+
projectResourceTags: _json,
|
|
4376
|
+
projectResourceTagsDescription: __expectString,
|
|
4361
4377
|
status: __expectString,
|
|
4362
4378
|
});
|
|
4363
4379
|
Object.assign(contents, doc);
|
|
@@ -5645,6 +5661,7 @@ export const de_UpdateProjectCommand = async (output, context) => {
|
|
|
5645
5661
|
name: __expectString,
|
|
5646
5662
|
projectProfileId: __expectString,
|
|
5647
5663
|
projectStatus: __expectString,
|
|
5664
|
+
resourceTags: _json,
|
|
5648
5665
|
userParameters: _json,
|
|
5649
5666
|
});
|
|
5650
5667
|
Object.assign(contents, doc);
|
|
@@ -5659,6 +5676,7 @@ export const de_UpdateProjectProfileCommand = async (output, context) => {
|
|
|
5659
5676
|
});
|
|
5660
5677
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
5661
5678
|
const doc = take(data, {
|
|
5679
|
+
allowCustomProjectResourceTags: __expectBoolean,
|
|
5662
5680
|
createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
5663
5681
|
createdBy: __expectString,
|
|
5664
5682
|
description: __expectString,
|
|
@@ -5668,6 +5686,8 @@ export const de_UpdateProjectProfileCommand = async (output, context) => {
|
|
|
5668
5686
|
id: __expectString,
|
|
5669
5687
|
lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
5670
5688
|
name: __expectString,
|
|
5689
|
+
projectResourceTags: _json,
|
|
5690
|
+
projectResourceTagsDescription: __expectString,
|
|
5671
5691
|
status: __expectString,
|
|
5672
5692
|
});
|
|
5673
5693
|
Object.assign(contents, doc);
|
|
@@ -26,7 +26,7 @@ export interface DataZoneHttpAuthSchemeProvider extends HttpAuthSchemeProvider<D
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const defaultDataZoneHttpAuthSchemeProvider: DataZoneHttpAuthSchemeProvider;
|
|
28
28
|
/**
|
|
29
|
-
* @
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
@@ -40,6 +40,9 @@ declare const CreateProjectCommand_base: {
|
|
|
40
40
|
* domainIdentifier: "STRING_VALUE", // required
|
|
41
41
|
* name: "STRING_VALUE", // required
|
|
42
42
|
* description: "STRING_VALUE",
|
|
43
|
+
* resourceTags: { // Tags
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
43
46
|
* glossaryTerms: [ // GlossaryTerms
|
|
44
47
|
* "STRING_VALUE",
|
|
45
48
|
* ],
|
|
@@ -80,6 +83,13 @@ declare const CreateProjectCommand_base: {
|
|
|
80
83
|
* // createdBy: "STRING_VALUE", // required
|
|
81
84
|
* // createdAt: new Date("TIMESTAMP"),
|
|
82
85
|
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
86
|
+
* // resourceTags: [ // ResourceTags
|
|
87
|
+
* // { // ResourceTag
|
|
88
|
+
* // key: "STRING_VALUE", // required
|
|
89
|
+
* // value: "STRING_VALUE", // required
|
|
90
|
+
* // source: "PROJECT" || "PROJECT_PROFILE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
83
93
|
* // glossaryTerms: [ // GlossaryTerms
|
|
84
94
|
* // "STRING_VALUE",
|
|
85
95
|
* // ],
|
|
@@ -1,7 +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 { CreateProjectMembershipInput, CreateProjectMembershipOutput } from "../models/
|
|
4
|
+
import { CreateProjectMembershipInput, CreateProjectMembershipOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -41,6 +41,15 @@ declare const CreateProjectProfileCommand_base: {
|
|
|
41
41
|
* name: "STRING_VALUE", // required
|
|
42
42
|
* description: "STRING_VALUE",
|
|
43
43
|
* status: "ENABLED" || "DISABLED",
|
|
44
|
+
* projectResourceTags: [ // ProjectResourceTagParameters
|
|
45
|
+
* { // ResourceTagParameter
|
|
46
|
+
* key: "STRING_VALUE", // required
|
|
47
|
+
* value: "STRING_VALUE", // required
|
|
48
|
+
* isValueEditable: true || false, // required
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* allowCustomProjectResourceTags: true || false,
|
|
52
|
+
* projectResourceTagsDescription: "STRING_VALUE",
|
|
44
53
|
* environmentConfigurations: [ // EnvironmentConfigurationsList
|
|
45
54
|
* { // EnvironmentConfiguration
|
|
46
55
|
* name: "STRING_VALUE", // required
|
|
@@ -89,6 +98,15 @@ declare const CreateProjectProfileCommand_base: {
|
|
|
89
98
|
* // name: "STRING_VALUE", // required
|
|
90
99
|
* // description: "STRING_VALUE",
|
|
91
100
|
* // status: "ENABLED" || "DISABLED",
|
|
101
|
+
* // projectResourceTags: [ // ProjectResourceTagParameters
|
|
102
|
+
* // { // ResourceTagParameter
|
|
103
|
+
* // key: "STRING_VALUE", // required
|
|
104
|
+
* // value: "STRING_VALUE", // required
|
|
105
|
+
* // isValueEditable: true || false, // required
|
|
106
|
+
* // },
|
|
107
|
+
* // ],
|
|
108
|
+
* // allowCustomProjectResourceTags: true || false,
|
|
109
|
+
* // projectResourceTagsDescription: "STRING_VALUE",
|
|
92
110
|
* // environmentConfigurations: [ // EnvironmentConfigurationsList
|
|
93
111
|
* // { // EnvironmentConfiguration
|
|
94
112
|
* // name: "STRING_VALUE", // required
|
|
@@ -57,6 +57,13 @@ declare const GetProjectCommand_base: {
|
|
|
57
57
|
* // createdBy: "STRING_VALUE", // required
|
|
58
58
|
* // createdAt: new Date("TIMESTAMP"),
|
|
59
59
|
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // resourceTags: [ // ResourceTags
|
|
61
|
+
* // { // ResourceTag
|
|
62
|
+
* // key: "STRING_VALUE", // required
|
|
63
|
+
* // value: "STRING_VALUE", // required
|
|
64
|
+
* // source: "PROJECT" || "PROJECT_PROFILE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
60
67
|
* // glossaryTerms: [ // GlossaryTerms
|
|
61
68
|
* // "STRING_VALUE",
|
|
62
69
|
* // ],
|
|
@@ -48,6 +48,15 @@ declare const GetProjectProfileCommand_base: {
|
|
|
48
48
|
* // name: "STRING_VALUE", // required
|
|
49
49
|
* // description: "STRING_VALUE",
|
|
50
50
|
* // status: "ENABLED" || "DISABLED",
|
|
51
|
+
* // projectResourceTags: [ // ProjectResourceTagParameters
|
|
52
|
+
* // { // ResourceTagParameter
|
|
53
|
+
* // key: "STRING_VALUE", // required
|
|
54
|
+
* // value: "STRING_VALUE", // required
|
|
55
|
+
* // isValueEditable: true || false, // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // allowCustomProjectResourceTags: true || false,
|
|
59
|
+
* // projectResourceTagsDescription: "STRING_VALUE",
|
|
51
60
|
* // environmentConfigurations: [ // EnvironmentConfigurationsList
|
|
52
61
|
* // { // EnvironmentConfiguration
|
|
53
62
|
* // name: "STRING_VALUE", // required
|
|
@@ -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 { ListSubscriptionTargetsInput } from "../models/
|
|
5
|
-
import { ListSubscriptionTargetsOutput } from "../models/models_2";
|
|
4
|
+
import { ListSubscriptionTargetsInput, ListSubscriptionTargetsOutput } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
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 { ListSubscriptionsInput
|
|
4
|
+
import { ListSubscriptionsInput } from "../models/models_1";
|
|
5
|
+
import { ListSubscriptionsOutput } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -41,6 +41,9 @@ declare const UpdateProjectCommand_base: {
|
|
|
41
41
|
* identifier: "STRING_VALUE", // required
|
|
42
42
|
* name: "STRING_VALUE",
|
|
43
43
|
* description: "STRING_VALUE",
|
|
44
|
+
* resourceTags: { // Tags
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
44
47
|
* glossaryTerms: [ // GlossaryTerms
|
|
45
48
|
* "STRING_VALUE",
|
|
46
49
|
* ],
|
|
@@ -92,6 +95,13 @@ declare const UpdateProjectCommand_base: {
|
|
|
92
95
|
* // createdBy: "STRING_VALUE", // required
|
|
93
96
|
* // createdAt: new Date("TIMESTAMP"),
|
|
94
97
|
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
98
|
+
* // resourceTags: [ // ResourceTags
|
|
99
|
+
* // { // ResourceTag
|
|
100
|
+
* // key: "STRING_VALUE", // required
|
|
101
|
+
* // value: "STRING_VALUE", // required
|
|
102
|
+
* // source: "PROJECT" || "PROJECT_PROFILE", // required
|
|
103
|
+
* // },
|
|
104
|
+
* // ],
|
|
95
105
|
* // glossaryTerms: [ // GlossaryTerms
|
|
96
106
|
* // "STRING_VALUE",
|
|
97
107
|
* // ],
|
|
@@ -42,6 +42,15 @@ declare const UpdateProjectProfileCommand_base: {
|
|
|
42
42
|
* name: "STRING_VALUE",
|
|
43
43
|
* description: "STRING_VALUE",
|
|
44
44
|
* status: "ENABLED" || "DISABLED",
|
|
45
|
+
* projectResourceTags: [ // ProjectResourceTagParameters
|
|
46
|
+
* { // ResourceTagParameter
|
|
47
|
+
* key: "STRING_VALUE", // required
|
|
48
|
+
* value: "STRING_VALUE", // required
|
|
49
|
+
* isValueEditable: true || false, // required
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* allowCustomProjectResourceTags: true || false,
|
|
53
|
+
* projectResourceTagsDescription: "STRING_VALUE",
|
|
45
54
|
* environmentConfigurations: [ // EnvironmentConfigurationsList
|
|
46
55
|
* { // EnvironmentConfiguration
|
|
47
56
|
* name: "STRING_VALUE", // required
|
|
@@ -90,6 +99,15 @@ declare const UpdateProjectProfileCommand_base: {
|
|
|
90
99
|
* // name: "STRING_VALUE", // required
|
|
91
100
|
* // description: "STRING_VALUE",
|
|
92
101
|
* // status: "ENABLED" || "DISABLED",
|
|
102
|
+
* // projectResourceTags: [ // ProjectResourceTagParameters
|
|
103
|
+
* // { // ResourceTagParameter
|
|
104
|
+
* // key: "STRING_VALUE", // required
|
|
105
|
+
* // value: "STRING_VALUE", // required
|
|
106
|
+
* // isValueEditable: true || false, // required
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // allowCustomProjectResourceTags: true || false,
|
|
110
|
+
* // projectResourceTagsDescription: "STRING_VALUE",
|
|
93
111
|
* // environmentConfigurations: [ // EnvironmentConfigurationsList
|
|
94
112
|
* // { // EnvironmentConfiguration
|
|
95
113
|
* // name: "STRING_VALUE", // required
|