@aws-sdk/client-datazone 3.616.0 → 3.618.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 +40 -0
- package/dist-cjs/index.js +567 -104
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
- package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
- package/dist-es/commands/GetAssetFilterCommand.js +25 -0
- package/dist-es/commands/GetListingCommand.js +1 -1
- package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +49 -64
- package/dist-es/models/models_1.js +113 -5
- package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +270 -21
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +7 -2
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +2 -1
- package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
- package/dist-types/commands/SearchCommand.d.ts +0 -20
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +722 -829
- package/dist-types/models/models_1.d.ts +1116 -20
- package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +346 -205
- package/dist-types/ts3.4/models/models_1.d.ts +330 -17
- package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { _json, collectBody, decorateServiceException as __decorateServiceExcept
|
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { DataZoneServiceException as __BaseException } from "../models/DataZoneServiceException";
|
|
6
6
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, UnauthorizedException, ValidationException, } from "../models/models_0";
|
|
7
|
-
import { FilterClause, } from "../models/models_1";
|
|
7
|
+
import { AssetFilterConfiguration, FilterClause, RowFilter, } from "../models/models_1";
|
|
8
8
|
export const se_AcceptPredictionsCommand = async (input, context) => {
|
|
9
9
|
const b = rb(input, context);
|
|
10
10
|
const headers = {
|
|
@@ -94,6 +94,24 @@ export const se_CreateAssetCommand = async (input, context) => {
|
|
|
94
94
|
b.m("POST").h(headers).b(body);
|
|
95
95
|
return b.build();
|
|
96
96
|
};
|
|
97
|
+
export const se_CreateAssetFilterCommand = async (input, context) => {
|
|
98
|
+
const b = rb(input, context);
|
|
99
|
+
const headers = {
|
|
100
|
+
"content-type": "application/json",
|
|
101
|
+
};
|
|
102
|
+
b.bp("/v2/domains/{domainIdentifier}/assets/{assetIdentifier}/filters");
|
|
103
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
104
|
+
b.p("assetIdentifier", () => input.assetIdentifier, "{assetIdentifier}", false);
|
|
105
|
+
let body;
|
|
106
|
+
body = JSON.stringify(take(input, {
|
|
107
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
108
|
+
configuration: (_) => se_AssetFilterConfiguration(_, context),
|
|
109
|
+
description: [],
|
|
110
|
+
name: [],
|
|
111
|
+
}));
|
|
112
|
+
b.m("POST").h(headers).b(body);
|
|
113
|
+
return b.build();
|
|
114
|
+
};
|
|
97
115
|
export const se_CreateAssetRevisionCommand = async (input, context) => {
|
|
98
116
|
const b = rb(input, context);
|
|
99
117
|
const headers = {
|
|
@@ -439,6 +457,17 @@ export const se_DeleteAssetCommand = async (input, context) => {
|
|
|
439
457
|
b.m("DELETE").h(headers).b(body);
|
|
440
458
|
return b.build();
|
|
441
459
|
};
|
|
460
|
+
export const se_DeleteAssetFilterCommand = async (input, context) => {
|
|
461
|
+
const b = rb(input, context);
|
|
462
|
+
const headers = {};
|
|
463
|
+
b.bp("/v2/domains/{domainIdentifier}/assets/{assetIdentifier}/filters/{identifier}");
|
|
464
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
465
|
+
b.p("assetIdentifier", () => input.assetIdentifier, "{assetIdentifier}", false);
|
|
466
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
467
|
+
let body;
|
|
468
|
+
b.m("DELETE").h(headers).b(body);
|
|
469
|
+
return b.build();
|
|
470
|
+
};
|
|
442
471
|
export const se_DeleteAssetTypeCommand = async (input, context) => {
|
|
443
472
|
const b = rb(input, context);
|
|
444
473
|
const headers = {};
|
|
@@ -655,6 +684,17 @@ export const se_GetAssetCommand = async (input, context) => {
|
|
|
655
684
|
b.m("GET").h(headers).q(query).b(body);
|
|
656
685
|
return b.build();
|
|
657
686
|
};
|
|
687
|
+
export const se_GetAssetFilterCommand = async (input, context) => {
|
|
688
|
+
const b = rb(input, context);
|
|
689
|
+
const headers = {};
|
|
690
|
+
b.bp("/v2/domains/{domainIdentifier}/assets/{assetIdentifier}/filters/{identifier}");
|
|
691
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
692
|
+
b.p("assetIdentifier", () => input.assetIdentifier, "{assetIdentifier}", false);
|
|
693
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
694
|
+
let body;
|
|
695
|
+
b.m("GET").h(headers).b(body);
|
|
696
|
+
return b.build();
|
|
697
|
+
};
|
|
658
698
|
export const se_GetAssetTypeCommand = async (input, context) => {
|
|
659
699
|
const b = rb(input, context);
|
|
660
700
|
const headers = {};
|
|
@@ -915,6 +955,21 @@ export const se_GetUserProfileCommand = async (input, context) => {
|
|
|
915
955
|
b.m("GET").h(headers).q(query).b(body);
|
|
916
956
|
return b.build();
|
|
917
957
|
};
|
|
958
|
+
export const se_ListAssetFiltersCommand = async (input, context) => {
|
|
959
|
+
const b = rb(input, context);
|
|
960
|
+
const headers = {};
|
|
961
|
+
b.bp("/v2/domains/{domainIdentifier}/assets/{assetIdentifier}/filters");
|
|
962
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
963
|
+
b.p("assetIdentifier", () => input.assetIdentifier, "{assetIdentifier}", false);
|
|
964
|
+
const query = map({
|
|
965
|
+
[_s]: [, input[_s]],
|
|
966
|
+
[_nT]: [, input[_nT]],
|
|
967
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
968
|
+
});
|
|
969
|
+
let body;
|
|
970
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
971
|
+
return b.build();
|
|
972
|
+
};
|
|
918
973
|
export const se_ListAssetRevisionsCommand = async (input, context) => {
|
|
919
974
|
const b = rb(input, context);
|
|
920
975
|
const headers = {};
|
|
@@ -1301,6 +1356,7 @@ export const se_PutEnvironmentBlueprintConfigurationCommand = async (input, cont
|
|
|
1301
1356
|
body = JSON.stringify(take(input, {
|
|
1302
1357
|
enabledRegions: (_) => _json(_),
|
|
1303
1358
|
manageAccessRoleArn: [],
|
|
1359
|
+
provisioningConfigurations: (_) => _json(_),
|
|
1304
1360
|
provisioningRoleArn: [],
|
|
1305
1361
|
regionalParameters: (_) => _json(_),
|
|
1306
1362
|
}));
|
|
@@ -1515,6 +1571,24 @@ export const se_UntagResourceCommand = async (input, context) => {
|
|
|
1515
1571
|
b.m("DELETE").h(headers).q(query).b(body);
|
|
1516
1572
|
return b.build();
|
|
1517
1573
|
};
|
|
1574
|
+
export const se_UpdateAssetFilterCommand = async (input, context) => {
|
|
1575
|
+
const b = rb(input, context);
|
|
1576
|
+
const headers = {
|
|
1577
|
+
"content-type": "application/json",
|
|
1578
|
+
};
|
|
1579
|
+
b.bp("/v2/domains/{domainIdentifier}/assets/{assetIdentifier}/filters/{identifier}");
|
|
1580
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
1581
|
+
b.p("assetIdentifier", () => input.assetIdentifier, "{assetIdentifier}", false);
|
|
1582
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
1583
|
+
let body;
|
|
1584
|
+
body = JSON.stringify(take(input, {
|
|
1585
|
+
configuration: (_) => se_AssetFilterConfiguration(_, context),
|
|
1586
|
+
description: [],
|
|
1587
|
+
name: [],
|
|
1588
|
+
}));
|
|
1589
|
+
b.m("PATCH").h(headers).b(body);
|
|
1590
|
+
return b.build();
|
|
1591
|
+
};
|
|
1518
1592
|
export const se_UpdateDataSourceCommand = async (input, context) => {
|
|
1519
1593
|
const b = rb(input, context);
|
|
1520
1594
|
const headers = {
|
|
@@ -1869,6 +1943,30 @@ export const de_CreateAssetCommand = async (output, context) => {
|
|
|
1869
1943
|
Object.assign(contents, doc);
|
|
1870
1944
|
return contents;
|
|
1871
1945
|
};
|
|
1946
|
+
export const de_CreateAssetFilterCommand = async (output, context) => {
|
|
1947
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1948
|
+
return de_CommandError(output, context);
|
|
1949
|
+
}
|
|
1950
|
+
const contents = map({
|
|
1951
|
+
$metadata: deserializeMetadata(output),
|
|
1952
|
+
});
|
|
1953
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1954
|
+
const doc = take(data, {
|
|
1955
|
+
assetId: __expectString,
|
|
1956
|
+
configuration: (_) => de_AssetFilterConfiguration(__expectUnion(_), context),
|
|
1957
|
+
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1958
|
+
description: __expectString,
|
|
1959
|
+
domainId: __expectString,
|
|
1960
|
+
effectiveColumnNames: _json,
|
|
1961
|
+
effectiveRowFilter: __expectString,
|
|
1962
|
+
errorMessage: __expectString,
|
|
1963
|
+
id: __expectString,
|
|
1964
|
+
name: __expectString,
|
|
1965
|
+
status: __expectString,
|
|
1966
|
+
});
|
|
1967
|
+
Object.assign(contents, doc);
|
|
1968
|
+
return contents;
|
|
1969
|
+
};
|
|
1872
1970
|
export const de_CreateAssetRevisionCommand = async (output, context) => {
|
|
1873
1971
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1874
1972
|
return de_CommandError(output, context);
|
|
@@ -2291,6 +2389,16 @@ export const de_DeleteAssetCommand = async (output, context) => {
|
|
|
2291
2389
|
await collectBody(output.body, context);
|
|
2292
2390
|
return contents;
|
|
2293
2391
|
};
|
|
2392
|
+
export const de_DeleteAssetFilterCommand = async (output, context) => {
|
|
2393
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
2394
|
+
return de_CommandError(output, context);
|
|
2395
|
+
}
|
|
2396
|
+
const contents = map({
|
|
2397
|
+
$metadata: deserializeMetadata(output),
|
|
2398
|
+
});
|
|
2399
|
+
await collectBody(output.body, context);
|
|
2400
|
+
return contents;
|
|
2401
|
+
};
|
|
2294
2402
|
export const de_DeleteAssetTypeCommand = async (output, context) => {
|
|
2295
2403
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
2296
2404
|
return de_CommandError(output, context);
|
|
@@ -2544,6 +2652,30 @@ export const de_GetAssetCommand = async (output, context) => {
|
|
|
2544
2652
|
Object.assign(contents, doc);
|
|
2545
2653
|
return contents;
|
|
2546
2654
|
};
|
|
2655
|
+
export const de_GetAssetFilterCommand = async (output, context) => {
|
|
2656
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2657
|
+
return de_CommandError(output, context);
|
|
2658
|
+
}
|
|
2659
|
+
const contents = map({
|
|
2660
|
+
$metadata: deserializeMetadata(output),
|
|
2661
|
+
});
|
|
2662
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2663
|
+
const doc = take(data, {
|
|
2664
|
+
assetId: __expectString,
|
|
2665
|
+
configuration: (_) => de_AssetFilterConfiguration(__expectUnion(_), context),
|
|
2666
|
+
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2667
|
+
description: __expectString,
|
|
2668
|
+
domainId: __expectString,
|
|
2669
|
+
effectiveColumnNames: _json,
|
|
2670
|
+
effectiveRowFilter: __expectString,
|
|
2671
|
+
errorMessage: __expectString,
|
|
2672
|
+
id: __expectString,
|
|
2673
|
+
name: __expectString,
|
|
2674
|
+
status: __expectString,
|
|
2675
|
+
});
|
|
2676
|
+
Object.assign(contents, doc);
|
|
2677
|
+
return contents;
|
|
2678
|
+
};
|
|
2547
2679
|
export const de_GetAssetTypeCommand = async (output, context) => {
|
|
2548
2680
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2549
2681
|
return de_CommandError(output, context);
|
|
@@ -2745,6 +2877,7 @@ export const de_GetEnvironmentBlueprintConfigurationCommand = async (output, con
|
|
|
2745
2877
|
enabledRegions: _json,
|
|
2746
2878
|
environmentBlueprintId: __expectString,
|
|
2747
2879
|
manageAccessRoleArn: __expectString,
|
|
2880
|
+
provisioningConfigurations: _json,
|
|
2748
2881
|
provisioningRoleArn: __expectString,
|
|
2749
2882
|
regionalParameters: _json,
|
|
2750
2883
|
updatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
@@ -3115,6 +3248,21 @@ export const de_GetUserProfileCommand = async (output, context) => {
|
|
|
3115
3248
|
Object.assign(contents, doc);
|
|
3116
3249
|
return contents;
|
|
3117
3250
|
};
|
|
3251
|
+
export const de_ListAssetFiltersCommand = async (output, context) => {
|
|
3252
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3253
|
+
return de_CommandError(output, context);
|
|
3254
|
+
}
|
|
3255
|
+
const contents = map({
|
|
3256
|
+
$metadata: deserializeMetadata(output),
|
|
3257
|
+
});
|
|
3258
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3259
|
+
const doc = take(data, {
|
|
3260
|
+
items: (_) => de_AssetFilters(_, context),
|
|
3261
|
+
nextToken: __expectString,
|
|
3262
|
+
});
|
|
3263
|
+
Object.assign(contents, doc);
|
|
3264
|
+
return contents;
|
|
3265
|
+
};
|
|
3118
3266
|
export const de_ListAssetRevisionsCommand = async (output, context) => {
|
|
3119
3267
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3120
3268
|
return de_CommandError(output, context);
|
|
@@ -3470,6 +3618,7 @@ export const de_PutEnvironmentBlueprintConfigurationCommand = async (output, con
|
|
|
3470
3618
|
enabledRegions: _json,
|
|
3471
3619
|
environmentBlueprintId: __expectString,
|
|
3472
3620
|
manageAccessRoleArn: __expectString,
|
|
3621
|
+
provisioningConfigurations: _json,
|
|
3473
3622
|
provisioningRoleArn: __expectString,
|
|
3474
3623
|
regionalParameters: _json,
|
|
3475
3624
|
updatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
@@ -3686,6 +3835,30 @@ export const de_UntagResourceCommand = async (output, context) => {
|
|
|
3686
3835
|
await collectBody(output.body, context);
|
|
3687
3836
|
return contents;
|
|
3688
3837
|
};
|
|
3838
|
+
export const de_UpdateAssetFilterCommand = async (output, context) => {
|
|
3839
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3840
|
+
return de_CommandError(output, context);
|
|
3841
|
+
}
|
|
3842
|
+
const contents = map({
|
|
3843
|
+
$metadata: deserializeMetadata(output),
|
|
3844
|
+
});
|
|
3845
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3846
|
+
const doc = take(data, {
|
|
3847
|
+
assetId: __expectString,
|
|
3848
|
+
configuration: (_) => de_AssetFilterConfiguration(__expectUnion(_), context),
|
|
3849
|
+
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3850
|
+
description: __expectString,
|
|
3851
|
+
domainId: __expectString,
|
|
3852
|
+
effectiveColumnNames: _json,
|
|
3853
|
+
effectiveRowFilter: __expectString,
|
|
3854
|
+
errorMessage: __expectString,
|
|
3855
|
+
id: __expectString,
|
|
3856
|
+
name: __expectString,
|
|
3857
|
+
status: __expectString,
|
|
3858
|
+
});
|
|
3859
|
+
Object.assign(contents, doc);
|
|
3860
|
+
return contents;
|
|
3861
|
+
};
|
|
3689
3862
|
export const de_UpdateDataSourceCommand = async (output, context) => {
|
|
3690
3863
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3691
3864
|
return de_CommandError(output, context);
|
|
@@ -4144,6 +4317,13 @@ const se_AcceptRule = (input, context) => {
|
|
|
4144
4317
|
threshold: __serializeFloat,
|
|
4145
4318
|
});
|
|
4146
4319
|
};
|
|
4320
|
+
const se_AssetFilterConfiguration = (input, context) => {
|
|
4321
|
+
return AssetFilterConfiguration.visit(input, {
|
|
4322
|
+
columnConfiguration: (value) => ({ columnConfiguration: _json(value) }),
|
|
4323
|
+
rowConfiguration: (value) => ({ rowConfiguration: se_RowFilterConfiguration(value, context) }),
|
|
4324
|
+
_: (name, value) => ({ name: value }),
|
|
4325
|
+
});
|
|
4326
|
+
};
|
|
4147
4327
|
const se_FilterClause = (input, context) => {
|
|
4148
4328
|
return FilterClause.visit(input, {
|
|
4149
4329
|
and: (value) => ({ and: se_FilterList(value, context) }),
|
|
@@ -4165,6 +4345,27 @@ const se_RejectRule = (input, context) => {
|
|
|
4165
4345
|
threshold: __serializeFloat,
|
|
4166
4346
|
});
|
|
4167
4347
|
};
|
|
4348
|
+
const se_RowFilter = (input, context) => {
|
|
4349
|
+
return RowFilter.visit(input, {
|
|
4350
|
+
and: (value) => ({ and: se_RowFilterList(value, context) }),
|
|
4351
|
+
expression: (value) => ({ expression: _json(value) }),
|
|
4352
|
+
or: (value) => ({ or: se_RowFilterList(value, context) }),
|
|
4353
|
+
_: (name, value) => ({ name: value }),
|
|
4354
|
+
});
|
|
4355
|
+
};
|
|
4356
|
+
const se_RowFilterConfiguration = (input, context) => {
|
|
4357
|
+
return take(input, {
|
|
4358
|
+
rowFilter: (_) => se_RowFilter(_, context),
|
|
4359
|
+
sensitive: [],
|
|
4360
|
+
});
|
|
4361
|
+
};
|
|
4362
|
+
const se_RowFilterList = (input, context) => {
|
|
4363
|
+
return input
|
|
4364
|
+
.filter((e) => e != null)
|
|
4365
|
+
.map((entry) => {
|
|
4366
|
+
return se_RowFilter(entry, context);
|
|
4367
|
+
});
|
|
4368
|
+
};
|
|
4168
4369
|
const se_TimeSeriesDataPointFormInput = (input, context) => {
|
|
4169
4370
|
return take(input, {
|
|
4170
4371
|
content: [],
|
|
@@ -4181,6 +4382,41 @@ const se_TimeSeriesDataPointFormInputList = (input, context) => {
|
|
|
4181
4382
|
return se_TimeSeriesDataPointFormInput(entry, context);
|
|
4182
4383
|
});
|
|
4183
4384
|
};
|
|
4385
|
+
const de_AssetFilterConfiguration = (output, context) => {
|
|
4386
|
+
if (output.columnConfiguration != null) {
|
|
4387
|
+
return {
|
|
4388
|
+
columnConfiguration: _json(output.columnConfiguration),
|
|
4389
|
+
};
|
|
4390
|
+
}
|
|
4391
|
+
if (output.rowConfiguration != null) {
|
|
4392
|
+
return {
|
|
4393
|
+
rowConfiguration: de_RowFilterConfiguration(output.rowConfiguration, context),
|
|
4394
|
+
};
|
|
4395
|
+
}
|
|
4396
|
+
return { $unknown: Object.entries(output)[0] };
|
|
4397
|
+
};
|
|
4398
|
+
const de_AssetFilters = (output, context) => {
|
|
4399
|
+
const retVal = (output || [])
|
|
4400
|
+
.filter((e) => e != null)
|
|
4401
|
+
.map((entry) => {
|
|
4402
|
+
return de_AssetFilterSummary(entry, context);
|
|
4403
|
+
});
|
|
4404
|
+
return retVal;
|
|
4405
|
+
};
|
|
4406
|
+
const de_AssetFilterSummary = (output, context) => {
|
|
4407
|
+
return take(output, {
|
|
4408
|
+
assetId: __expectString,
|
|
4409
|
+
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4410
|
+
description: __expectString,
|
|
4411
|
+
domainId: __expectString,
|
|
4412
|
+
effectiveColumnNames: _json,
|
|
4413
|
+
effectiveRowFilter: __expectString,
|
|
4414
|
+
errorMessage: __expectString,
|
|
4415
|
+
id: __expectString,
|
|
4416
|
+
name: __expectString,
|
|
4417
|
+
status: __expectString,
|
|
4418
|
+
});
|
|
4419
|
+
};
|
|
4184
4420
|
const de_AssetItem = (output, context) => {
|
|
4185
4421
|
return take(output, {
|
|
4186
4422
|
additionalAttributes: (_) => de_AssetItemAdditionalAttributes(_, context),
|
|
@@ -4274,21 +4510,6 @@ const de_AssetTypeItem = (output, context) => {
|
|
|
4274
4510
|
updatedBy: __expectString,
|
|
4275
4511
|
});
|
|
4276
4512
|
};
|
|
4277
|
-
const de_DataProductSummary = (output, context) => {
|
|
4278
|
-
return take(output, {
|
|
4279
|
-
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4280
|
-
createdBy: __expectString,
|
|
4281
|
-
dataProductItems: _json,
|
|
4282
|
-
description: __expectString,
|
|
4283
|
-
domainId: __expectString,
|
|
4284
|
-
glossaryTerms: _json,
|
|
4285
|
-
id: __expectString,
|
|
4286
|
-
name: __expectString,
|
|
4287
|
-
owningProjectId: __expectString,
|
|
4288
|
-
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4289
|
-
updatedBy: __expectString,
|
|
4290
|
-
});
|
|
4291
|
-
};
|
|
4292
4513
|
const de_DataSourceRunActivities = (output, context) => {
|
|
4293
4514
|
const retVal = (output || [])
|
|
4294
4515
|
.filter((e) => e != null)
|
|
@@ -4388,6 +4609,7 @@ const de_EnvironmentBlueprintConfigurationItem = (output, context) => {
|
|
|
4388
4609
|
enabledRegions: _json,
|
|
4389
4610
|
environmentBlueprintId: __expectString,
|
|
4390
4611
|
manageAccessRoleArn: __expectString,
|
|
4612
|
+
provisioningConfigurations: _json,
|
|
4391
4613
|
provisioningRoleArn: __expectString,
|
|
4392
4614
|
regionalParameters: _json,
|
|
4393
4615
|
updatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
@@ -4637,15 +4859,42 @@ const de_ProjectSummary = (output, context) => {
|
|
|
4637
4859
|
updatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
4638
4860
|
});
|
|
4639
4861
|
};
|
|
4640
|
-
const
|
|
4641
|
-
if (output.
|
|
4862
|
+
const de_RowFilter = (output, context) => {
|
|
4863
|
+
if (output.and != null) {
|
|
4642
4864
|
return {
|
|
4643
|
-
|
|
4865
|
+
and: de_RowFilterList(output.and, context),
|
|
4644
4866
|
};
|
|
4645
4867
|
}
|
|
4646
|
-
if (output.
|
|
4868
|
+
if (output.expression != null) {
|
|
4869
|
+
return {
|
|
4870
|
+
expression: _json(__expectUnion(output.expression)),
|
|
4871
|
+
};
|
|
4872
|
+
}
|
|
4873
|
+
if (output.or != null) {
|
|
4874
|
+
return {
|
|
4875
|
+
or: de_RowFilterList(output.or, context),
|
|
4876
|
+
};
|
|
4877
|
+
}
|
|
4878
|
+
return { $unknown: Object.entries(output)[0] };
|
|
4879
|
+
};
|
|
4880
|
+
const de_RowFilterConfiguration = (output, context) => {
|
|
4881
|
+
return take(output, {
|
|
4882
|
+
rowFilter: (_) => de_RowFilter(__expectUnion(_), context),
|
|
4883
|
+
sensitive: __expectBoolean,
|
|
4884
|
+
});
|
|
4885
|
+
};
|
|
4886
|
+
const de_RowFilterList = (output, context) => {
|
|
4887
|
+
const retVal = (output || [])
|
|
4888
|
+
.filter((e) => e != null)
|
|
4889
|
+
.map((entry) => {
|
|
4890
|
+
return de_RowFilter(__expectUnion(entry), context);
|
|
4891
|
+
});
|
|
4892
|
+
return retVal;
|
|
4893
|
+
};
|
|
4894
|
+
const de_SearchInventoryResultItem = (output, context) => {
|
|
4895
|
+
if (output.assetItem != null) {
|
|
4647
4896
|
return {
|
|
4648
|
-
|
|
4897
|
+
assetItem: de_AssetItem(output.assetItem, context),
|
|
4649
4898
|
};
|
|
4650
4899
|
}
|
|
4651
4900
|
if (output.glossaryItem != null) {
|
package/dist-types/DataZone.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOu
|
|
|
5
5
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "./commands/CancelMetadataGenerationRunCommand";
|
|
6
6
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "./commands/CancelSubscriptionCommand";
|
|
7
7
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
8
|
+
import { CreateAssetFilterCommandInput, CreateAssetFilterCommandOutput } from "./commands/CreateAssetFilterCommand";
|
|
8
9
|
import { CreateAssetRevisionCommandInput, CreateAssetRevisionCommandOutput } from "./commands/CreateAssetRevisionCommand";
|
|
9
10
|
import { CreateAssetTypeCommandInput, CreateAssetTypeCommandOutput } from "./commands/CreateAssetTypeCommand";
|
|
10
11
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
|
|
@@ -24,6 +25,7 @@ import { CreateSubscriptionRequestCommandInput, CreateSubscriptionRequestCommand
|
|
|
24
25
|
import { CreateSubscriptionTargetCommandInput, CreateSubscriptionTargetCommandOutput } from "./commands/CreateSubscriptionTargetCommand";
|
|
25
26
|
import { CreateUserProfileCommandInput, CreateUserProfileCommandOutput } from "./commands/CreateUserProfileCommand";
|
|
26
27
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
28
|
+
import { DeleteAssetFilterCommandInput, DeleteAssetFilterCommandOutput } from "./commands/DeleteAssetFilterCommand";
|
|
27
29
|
import { DeleteAssetTypeCommandInput, DeleteAssetTypeCommandOutput } from "./commands/DeleteAssetTypeCommand";
|
|
28
30
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
29
31
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
@@ -43,6 +45,7 @@ import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOu
|
|
|
43
45
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
44
46
|
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "./commands/DisassociateEnvironmentRoleCommand";
|
|
45
47
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
|
|
48
|
+
import { GetAssetFilterCommandInput, GetAssetFilterCommandOutput } from "./commands/GetAssetFilterCommand";
|
|
46
49
|
import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "./commands/GetAssetTypeCommand";
|
|
47
50
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
|
|
48
51
|
import { GetDataSourceRunCommandInput, GetDataSourceRunCommandOutput } from "./commands/GetDataSourceRunCommand";
|
|
@@ -67,6 +70,7 @@ import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetail
|
|
|
67
70
|
import { GetSubscriptionTargetCommandInput, GetSubscriptionTargetCommandOutput } from "./commands/GetSubscriptionTargetCommand";
|
|
68
71
|
import { GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput } from "./commands/GetTimeSeriesDataPointCommand";
|
|
69
72
|
import { GetUserProfileCommandInput, GetUserProfileCommandOutput } from "./commands/GetUserProfileCommand";
|
|
73
|
+
import { ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput } from "./commands/ListAssetFiltersCommand";
|
|
70
74
|
import { ListAssetRevisionsCommandInput, ListAssetRevisionsCommandOutput } from "./commands/ListAssetRevisionsCommand";
|
|
71
75
|
import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCommandOutput } from "./commands/ListDataSourceRunActivitiesCommand";
|
|
72
76
|
import { ListDataSourceRunsCommandInput, ListDataSourceRunsCommandOutput } from "./commands/ListDataSourceRunsCommand";
|
|
@@ -103,6 +107,7 @@ import { StartDataSourceRunCommandInput, StartDataSourceRunCommandOutput } from
|
|
|
103
107
|
import { StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput } from "./commands/StartMetadataGenerationRunCommand";
|
|
104
108
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
105
109
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
110
|
+
import { UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput } from "./commands/UpdateAssetFilterCommand";
|
|
106
111
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
|
|
107
112
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
108
113
|
import { UpdateEnvironmentActionCommandInput, UpdateEnvironmentActionCommandOutput } from "./commands/UpdateEnvironmentActionCommand";
|
|
@@ -154,6 +159,12 @@ export interface DataZone {
|
|
|
154
159
|
createAsset(args: CreateAssetCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssetCommandOutput>;
|
|
155
160
|
createAsset(args: CreateAssetCommandInput, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
|
|
156
161
|
createAsset(args: CreateAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
|
|
162
|
+
/**
|
|
163
|
+
* @see {@link CreateAssetFilterCommand}
|
|
164
|
+
*/
|
|
165
|
+
createAssetFilter(args: CreateAssetFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssetFilterCommandOutput>;
|
|
166
|
+
createAssetFilter(args: CreateAssetFilterCommandInput, cb: (err: any, data?: CreateAssetFilterCommandOutput) => void): void;
|
|
167
|
+
createAssetFilter(args: CreateAssetFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssetFilterCommandOutput) => void): void;
|
|
157
168
|
/**
|
|
158
169
|
* @see {@link CreateAssetRevisionCommand}
|
|
159
170
|
*/
|
|
@@ -268,6 +279,12 @@ export interface DataZone {
|
|
|
268
279
|
deleteAsset(args: DeleteAssetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssetCommandOutput>;
|
|
269
280
|
deleteAsset(args: DeleteAssetCommandInput, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
|
|
270
281
|
deleteAsset(args: DeleteAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* @see {@link DeleteAssetFilterCommand}
|
|
284
|
+
*/
|
|
285
|
+
deleteAssetFilter(args: DeleteAssetFilterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssetFilterCommandOutput>;
|
|
286
|
+
deleteAssetFilter(args: DeleteAssetFilterCommandInput, cb: (err: any, data?: DeleteAssetFilterCommandOutput) => void): void;
|
|
287
|
+
deleteAssetFilter(args: DeleteAssetFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssetFilterCommandOutput) => void): void;
|
|
271
288
|
/**
|
|
272
289
|
* @see {@link DeleteAssetTypeCommand}
|
|
273
290
|
*/
|
|
@@ -382,6 +399,12 @@ export interface DataZone {
|
|
|
382
399
|
getAsset(args: GetAssetCommandInput, options?: __HttpHandlerOptions): Promise<GetAssetCommandOutput>;
|
|
383
400
|
getAsset(args: GetAssetCommandInput, cb: (err: any, data?: GetAssetCommandOutput) => void): void;
|
|
384
401
|
getAsset(args: GetAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssetCommandOutput) => void): void;
|
|
402
|
+
/**
|
|
403
|
+
* @see {@link GetAssetFilterCommand}
|
|
404
|
+
*/
|
|
405
|
+
getAssetFilter(args: GetAssetFilterCommandInput, options?: __HttpHandlerOptions): Promise<GetAssetFilterCommandOutput>;
|
|
406
|
+
getAssetFilter(args: GetAssetFilterCommandInput, cb: (err: any, data?: GetAssetFilterCommandOutput) => void): void;
|
|
407
|
+
getAssetFilter(args: GetAssetFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssetFilterCommandOutput) => void): void;
|
|
385
408
|
/**
|
|
386
409
|
* @see {@link GetAssetTypeCommand}
|
|
387
410
|
*/
|
|
@@ -526,6 +549,12 @@ export interface DataZone {
|
|
|
526
549
|
getUserProfile(args: GetUserProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetUserProfileCommandOutput>;
|
|
527
550
|
getUserProfile(args: GetUserProfileCommandInput, cb: (err: any, data?: GetUserProfileCommandOutput) => void): void;
|
|
528
551
|
getUserProfile(args: GetUserProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserProfileCommandOutput) => void): void;
|
|
552
|
+
/**
|
|
553
|
+
* @see {@link ListAssetFiltersCommand}
|
|
554
|
+
*/
|
|
555
|
+
listAssetFilters(args: ListAssetFiltersCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetFiltersCommandOutput>;
|
|
556
|
+
listAssetFilters(args: ListAssetFiltersCommandInput, cb: (err: any, data?: ListAssetFiltersCommandOutput) => void): void;
|
|
557
|
+
listAssetFilters(args: ListAssetFiltersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetFiltersCommandOutput) => void): void;
|
|
529
558
|
/**
|
|
530
559
|
* @see {@link ListAssetRevisionsCommand}
|
|
531
560
|
*/
|
|
@@ -743,6 +772,12 @@ export interface DataZone {
|
|
|
743
772
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
744
773
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
745
774
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
775
|
+
/**
|
|
776
|
+
* @see {@link UpdateAssetFilterCommand}
|
|
777
|
+
*/
|
|
778
|
+
updateAssetFilter(args: UpdateAssetFilterCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssetFilterCommandOutput>;
|
|
779
|
+
updateAssetFilter(args: UpdateAssetFilterCommandInput, cb: (err: any, data?: UpdateAssetFilterCommandOutput) => void): void;
|
|
780
|
+
updateAssetFilter(args: UpdateAssetFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssetFilterCommandOutput) => void): void;
|
|
746
781
|
/**
|
|
747
782
|
* @see {@link UpdateDataSourceCommand}
|
|
748
783
|
*/
|
|
@@ -13,6 +13,7 @@ import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOu
|
|
|
13
13
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "./commands/CancelMetadataGenerationRunCommand";
|
|
14
14
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "./commands/CancelSubscriptionCommand";
|
|
15
15
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "./commands/CreateAssetCommand";
|
|
16
|
+
import { CreateAssetFilterCommandInput, CreateAssetFilterCommandOutput } from "./commands/CreateAssetFilterCommand";
|
|
16
17
|
import { CreateAssetRevisionCommandInput, CreateAssetRevisionCommandOutput } from "./commands/CreateAssetRevisionCommand";
|
|
17
18
|
import { CreateAssetTypeCommandInput, CreateAssetTypeCommandOutput } from "./commands/CreateAssetTypeCommand";
|
|
18
19
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
|
|
@@ -32,6 +33,7 @@ import { CreateSubscriptionRequestCommandInput, CreateSubscriptionRequestCommand
|
|
|
32
33
|
import { CreateSubscriptionTargetCommandInput, CreateSubscriptionTargetCommandOutput } from "./commands/CreateSubscriptionTargetCommand";
|
|
33
34
|
import { CreateUserProfileCommandInput, CreateUserProfileCommandOutput } from "./commands/CreateUserProfileCommand";
|
|
34
35
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
36
|
+
import { DeleteAssetFilterCommandInput, DeleteAssetFilterCommandOutput } from "./commands/DeleteAssetFilterCommand";
|
|
35
37
|
import { DeleteAssetTypeCommandInput, DeleteAssetTypeCommandOutput } from "./commands/DeleteAssetTypeCommand";
|
|
36
38
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
37
39
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
@@ -51,6 +53,7 @@ import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOu
|
|
|
51
53
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
52
54
|
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "./commands/DisassociateEnvironmentRoleCommand";
|
|
53
55
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
|
|
56
|
+
import { GetAssetFilterCommandInput, GetAssetFilterCommandOutput } from "./commands/GetAssetFilterCommand";
|
|
54
57
|
import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "./commands/GetAssetTypeCommand";
|
|
55
58
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
|
|
56
59
|
import { GetDataSourceRunCommandInput, GetDataSourceRunCommandOutput } from "./commands/GetDataSourceRunCommand";
|
|
@@ -75,6 +78,7 @@ import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetail
|
|
|
75
78
|
import { GetSubscriptionTargetCommandInput, GetSubscriptionTargetCommandOutput } from "./commands/GetSubscriptionTargetCommand";
|
|
76
79
|
import { GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput } from "./commands/GetTimeSeriesDataPointCommand";
|
|
77
80
|
import { GetUserProfileCommandInput, GetUserProfileCommandOutput } from "./commands/GetUserProfileCommand";
|
|
81
|
+
import { ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput } from "./commands/ListAssetFiltersCommand";
|
|
78
82
|
import { ListAssetRevisionsCommandInput, ListAssetRevisionsCommandOutput } from "./commands/ListAssetRevisionsCommand";
|
|
79
83
|
import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCommandOutput } from "./commands/ListDataSourceRunActivitiesCommand";
|
|
80
84
|
import { ListDataSourceRunsCommandInput, ListDataSourceRunsCommandOutput } from "./commands/ListDataSourceRunsCommand";
|
|
@@ -111,6 +115,7 @@ import { StartDataSourceRunCommandInput, StartDataSourceRunCommandOutput } from
|
|
|
111
115
|
import { StartMetadataGenerationRunCommandInput, StartMetadataGenerationRunCommandOutput } from "./commands/StartMetadataGenerationRunCommand";
|
|
112
116
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
113
117
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
118
|
+
import { UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput } from "./commands/UpdateAssetFilterCommand";
|
|
114
119
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
|
|
115
120
|
import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
|
|
116
121
|
import { UpdateEnvironmentActionCommandInput, UpdateEnvironmentActionCommandOutput } from "./commands/UpdateEnvironmentActionCommand";
|
|
@@ -130,11 +135,11 @@ export { __Client };
|
|
|
130
135
|
/**
|
|
131
136
|
* @public
|
|
132
137
|
*/
|
|
133
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AssociateEnvironmentRoleCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAssetCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAssetCommandInput | DeleteAssetTypeCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | GetAssetCommandInput | GetAssetTypeCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | 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 | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
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;
|
|
134
139
|
/**
|
|
135
140
|
* @public
|
|
136
141
|
*/
|
|
137
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AssociateEnvironmentRoleCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAssetCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAssetCommandOutput | DeleteAssetTypeCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | GetAssetCommandOutput | GetAssetTypeCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | 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 | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
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;
|
|
138
143
|
/**
|
|
139
144
|
* @public
|
|
140
145
|
*/
|