@aws-sdk/client-datazone 3.643.0 → 3.645.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 +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +16 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +8 -0
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +8 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +8 -0
- package/dist-types/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSubscriptionGrantCommand.d.ts +8 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/GetSubscriptionCommand.d.ts +8 -0
- package/dist-types/commands/GetSubscriptionGrantCommand.d.ts +8 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +8 -0
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +8 -0
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +8 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +8 -0
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +8 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +8 -0
- package/dist-types/commands/UpdateSubscriptionGrantStatusCommand.d.ts +8 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +61 -24
- package/dist-types/models/models_1.d.ts +20 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +13 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -2454,6 +2454,7 @@ var se_AcceptSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2454
2454
|
let body;
|
|
2455
2455
|
body = JSON.stringify(
|
|
2456
2456
|
(0, import_smithy_client.take)(input, {
|
|
2457
|
+
assetScopes: (_) => (0, import_smithy_client._json)(_),
|
|
2457
2458
|
decisionComment: []
|
|
2458
2459
|
})
|
|
2459
2460
|
);
|
|
@@ -8103,6 +8104,7 @@ var de_SubscribedAsset = /* @__PURE__ */ __name((output, context) => {
|
|
|
8103
8104
|
return (0, import_smithy_client.take)(output, {
|
|
8104
8105
|
assetId: import_smithy_client.expectString,
|
|
8105
8106
|
assetRevision: import_smithy_client.expectString,
|
|
8107
|
+
assetScope: import_smithy_client._json,
|
|
8106
8108
|
failureCause: import_smithy_client._json,
|
|
8107
8109
|
failureTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
8108
8110
|
grantedTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -35,6 +35,7 @@ export const se_AcceptSubscriptionRequestCommand = async (input, context) => {
|
|
|
35
35
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
36
36
|
let body;
|
|
37
37
|
body = JSON.stringify(take(input, {
|
|
38
|
+
assetScopes: (_) => _json(_),
|
|
38
39
|
decisionComment: [],
|
|
39
40
|
}));
|
|
40
41
|
b.m("PUT").h(headers).b(body);
|
|
@@ -5604,6 +5605,7 @@ const de_SubscribedAsset = (output, context) => {
|
|
|
5604
5605
|
return take(output, {
|
|
5605
5606
|
assetId: __expectString,
|
|
5606
5607
|
assetRevision: __expectString,
|
|
5608
|
+
assetScope: _json,
|
|
5607
5609
|
failureCause: _json,
|
|
5608
5610
|
failureTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5609
5611
|
grantedTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -38,6 +38,14 @@ declare const AcceptSubscriptionRequestCommand_base: {
|
|
|
38
38
|
* domainIdentifier: "STRING_VALUE", // required
|
|
39
39
|
* identifier: "STRING_VALUE", // required
|
|
40
40
|
* decisionComment: "STRING_VALUE",
|
|
41
|
+
* assetScopes: [ // AcceptedAssetScopes
|
|
42
|
+
* { // AcceptedAssetScope
|
|
43
|
+
* assetId: "STRING_VALUE", // required
|
|
44
|
+
* filterIds: [ // FilterIds // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
41
49
|
* };
|
|
42
50
|
* const command = new AcceptSubscriptionRequestCommand(input);
|
|
43
51
|
* const response = await client.send(command);
|
|
@@ -76,6 +84,14 @@ declare const AcceptSubscriptionRequestCommand_base: {
|
|
|
76
84
|
* // shortDescription: "STRING_VALUE",
|
|
77
85
|
* // },
|
|
78
86
|
* // ],
|
|
87
|
+
* // assetScope: { // AssetScope
|
|
88
|
+
* // assetId: "STRING_VALUE", // required
|
|
89
|
+
* // filterIds: [ // FilterIds // required
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // status: "STRING_VALUE", // required
|
|
93
|
+
* // errorMessage: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
79
95
|
* // },
|
|
80
96
|
* // productListing: { // SubscribedProductListing
|
|
81
97
|
* // entityId: "STRING_VALUE",
|
|
@@ -71,6 +71,14 @@ declare const CancelSubscriptionCommand_base: {
|
|
|
71
71
|
* // shortDescription: "STRING_VALUE",
|
|
72
72
|
* // },
|
|
73
73
|
* // ],
|
|
74
|
+
* // assetScope: { // AssetScope
|
|
75
|
+
* // assetId: "STRING_VALUE", // required
|
|
76
|
+
* // filterIds: [ // FilterIds // required
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // status: "STRING_VALUE", // required
|
|
80
|
+
* // errorMessage: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
74
82
|
* // },
|
|
75
83
|
* // productListing: { // SubscribedProductListing
|
|
76
84
|
* // entityId: "STRING_VALUE",
|
|
@@ -80,6 +80,14 @@ declare const CreateSubscriptionGrantCommand_base: {
|
|
|
80
80
|
* // },
|
|
81
81
|
* // grantedTimestamp: new Date("TIMESTAMP"),
|
|
82
82
|
* // failureTimestamp: new Date("TIMESTAMP"),
|
|
83
|
+
* // assetScope: { // AssetScope
|
|
84
|
+
* // assetId: "STRING_VALUE", // required
|
|
85
|
+
* // filterIds: [ // FilterIds // required
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // status: "STRING_VALUE", // required
|
|
89
|
+
* // errorMessage: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
83
91
|
* // },
|
|
84
92
|
* // ],
|
|
85
93
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -88,6 +88,14 @@ declare const CreateSubscriptionRequestCommand_base: {
|
|
|
88
88
|
* // shortDescription: "STRING_VALUE",
|
|
89
89
|
* // },
|
|
90
90
|
* // ],
|
|
91
|
+
* // assetScope: { // AssetScope
|
|
92
|
+
* // assetId: "STRING_VALUE", // required
|
|
93
|
+
* // filterIds: [ // FilterIds // required
|
|
94
|
+
* // "STRING_VALUE",
|
|
95
|
+
* // ],
|
|
96
|
+
* // status: "STRING_VALUE", // required
|
|
97
|
+
* // errorMessage: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
91
99
|
* // },
|
|
92
100
|
* // productListing: { // SubscribedProductListing
|
|
93
101
|
* // entityId: "STRING_VALUE",
|
|
@@ -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 { DeleteEnvironmentBlueprintConfigurationInput
|
|
4
|
+
import { DeleteEnvironmentBlueprintConfigurationInput } from "../models/models_0";
|
|
5
|
+
import { DeleteEnvironmentBlueprintConfigurationOutput } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -66,6 +66,14 @@ declare const DeleteSubscriptionGrantCommand_base: {
|
|
|
66
66
|
* // },
|
|
67
67
|
* // grantedTimestamp: new Date("TIMESTAMP"),
|
|
68
68
|
* // failureTimestamp: new Date("TIMESTAMP"),
|
|
69
|
+
* // assetScope: { // AssetScope
|
|
70
|
+
* // assetId: "STRING_VALUE", // required
|
|
71
|
+
* // filterIds: [ // FilterIds // required
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // status: "STRING_VALUE", // required
|
|
75
|
+
* // errorMessage: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
69
77
|
* // },
|
|
70
78
|
* // ],
|
|
71
79
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -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 { GetEnvironmentBlueprintConfigurationInput } from "../models/
|
|
5
|
-
import { GetEnvironmentBlueprintConfigurationOutput } from "../models/models_1";
|
|
4
|
+
import { GetEnvironmentBlueprintConfigurationInput, GetEnvironmentBlueprintConfigurationOutput } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -71,6 +71,14 @@ declare const GetSubscriptionCommand_base: {
|
|
|
71
71
|
* // shortDescription: "STRING_VALUE",
|
|
72
72
|
* // },
|
|
73
73
|
* // ],
|
|
74
|
+
* // assetScope: { // AssetScope
|
|
75
|
+
* // assetId: "STRING_VALUE", // required
|
|
76
|
+
* // filterIds: [ // FilterIds // required
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // status: "STRING_VALUE", // required
|
|
80
|
+
* // errorMessage: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
74
82
|
* // },
|
|
75
83
|
* // productListing: { // SubscribedProductListing
|
|
76
84
|
* // entityId: "STRING_VALUE",
|
|
@@ -66,6 +66,14 @@ declare const GetSubscriptionGrantCommand_base: {
|
|
|
66
66
|
* // },
|
|
67
67
|
* // grantedTimestamp: new Date("TIMESTAMP"),
|
|
68
68
|
* // failureTimestamp: new Date("TIMESTAMP"),
|
|
69
|
+
* // assetScope: { // AssetScope
|
|
70
|
+
* // assetId: "STRING_VALUE", // required
|
|
71
|
+
* // filterIds: [ // FilterIds // required
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // status: "STRING_VALUE", // required
|
|
75
|
+
* // errorMessage: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
69
77
|
* // },
|
|
70
78
|
* // ],
|
|
71
79
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -75,6 +75,14 @@ declare const GetSubscriptionRequestDetailsCommand_base: {
|
|
|
75
75
|
* // shortDescription: "STRING_VALUE",
|
|
76
76
|
* // },
|
|
77
77
|
* // ],
|
|
78
|
+
* // assetScope: { // AssetScope
|
|
79
|
+
* // assetId: "STRING_VALUE", // required
|
|
80
|
+
* // filterIds: [ // FilterIds // required
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // status: "STRING_VALUE", // required
|
|
84
|
+
* // errorMessage: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
78
86
|
* // },
|
|
79
87
|
* // productListing: { // SubscribedProductListing
|
|
80
88
|
* // entityId: "STRING_VALUE",
|
|
@@ -76,6 +76,14 @@ declare const ListSubscriptionGrantsCommand_base: {
|
|
|
76
76
|
* // },
|
|
77
77
|
* // grantedTimestamp: new Date("TIMESTAMP"),
|
|
78
78
|
* // failureTimestamp: new Date("TIMESTAMP"),
|
|
79
|
+
* // assetScope: { // AssetScope
|
|
80
|
+
* // assetId: "STRING_VALUE", // required
|
|
81
|
+
* // filterIds: [ // FilterIds // required
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // status: "STRING_VALUE", // required
|
|
85
|
+
* // errorMessage: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
79
87
|
* // },
|
|
80
88
|
* // ],
|
|
81
89
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -84,6 +84,14 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
84
84
|
* // shortDescription: "STRING_VALUE",
|
|
85
85
|
* // },
|
|
86
86
|
* // ],
|
|
87
|
+
* // assetScope: { // AssetScope
|
|
88
|
+
* // assetId: "STRING_VALUE", // required
|
|
89
|
+
* // filterIds: [ // FilterIds // required
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // status: "STRING_VALUE", // required
|
|
93
|
+
* // errorMessage: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
87
95
|
* // },
|
|
88
96
|
* // productListing: { // SubscribedProductListing
|
|
89
97
|
* // entityId: "STRING_VALUE",
|
|
@@ -81,6 +81,14 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
81
81
|
* // shortDescription: "STRING_VALUE",
|
|
82
82
|
* // },
|
|
83
83
|
* // ],
|
|
84
|
+
* // assetScope: { // AssetScope
|
|
85
|
+
* // assetId: "STRING_VALUE", // required
|
|
86
|
+
* // filterIds: [ // FilterIds // required
|
|
87
|
+
* // "STRING_VALUE",
|
|
88
|
+
* // ],
|
|
89
|
+
* // status: "STRING_VALUE", // required
|
|
90
|
+
* // errorMessage: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
84
92
|
* // },
|
|
85
93
|
* // productListing: { // SubscribedProductListing
|
|
86
94
|
* // entityId: "STRING_VALUE",
|
|
@@ -76,6 +76,14 @@ declare const RejectSubscriptionRequestCommand_base: {
|
|
|
76
76
|
* // shortDescription: "STRING_VALUE",
|
|
77
77
|
* // },
|
|
78
78
|
* // ],
|
|
79
|
+
* // assetScope: { // AssetScope
|
|
80
|
+
* // assetId: "STRING_VALUE", // required
|
|
81
|
+
* // filterIds: [ // FilterIds // required
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // status: "STRING_VALUE", // required
|
|
85
|
+
* // errorMessage: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
79
87
|
* // },
|
|
80
88
|
* // productListing: { // SubscribedProductListing
|
|
81
89
|
* // entityId: "STRING_VALUE",
|
|
@@ -72,6 +72,14 @@ declare const RevokeSubscriptionCommand_base: {
|
|
|
72
72
|
* // shortDescription: "STRING_VALUE",
|
|
73
73
|
* // },
|
|
74
74
|
* // ],
|
|
75
|
+
* // assetScope: { // AssetScope
|
|
76
|
+
* // assetId: "STRING_VALUE", // required
|
|
77
|
+
* // filterIds: [ // FilterIds // required
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // status: "STRING_VALUE", // required
|
|
81
|
+
* // errorMessage: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
75
83
|
* // },
|
|
76
84
|
* // productListing: { // SubscribedProductListing
|
|
77
85
|
* // entityId: "STRING_VALUE",
|
|
@@ -72,6 +72,14 @@ declare const UpdateSubscriptionGrantStatusCommand_base: {
|
|
|
72
72
|
* // },
|
|
73
73
|
* // grantedTimestamp: new Date("TIMESTAMP"),
|
|
74
74
|
* // failureTimestamp: new Date("TIMESTAMP"),
|
|
75
|
+
* // assetScope: { // AssetScope
|
|
76
|
+
* // assetId: "STRING_VALUE", // required
|
|
77
|
+
* // filterIds: [ // FilterIds // required
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // status: "STRING_VALUE", // required
|
|
81
|
+
* // errorMessage: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
75
83
|
* // },
|
|
76
84
|
* // ],
|
|
77
85
|
* // subscriptionId: "STRING_VALUE",
|
|
@@ -76,6 +76,14 @@ declare const UpdateSubscriptionRequestCommand_base: {
|
|
|
76
76
|
* // shortDescription: "STRING_VALUE",
|
|
77
77
|
* // },
|
|
78
78
|
* // ],
|
|
79
|
+
* // assetScope: { // AssetScope
|
|
80
|
+
* // assetId: "STRING_VALUE", // required
|
|
81
|
+
* // filterIds: [ // FilterIds // required
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // status: "STRING_VALUE", // required
|
|
85
|
+
* // errorMessage: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
79
87
|
* // },
|
|
80
88
|
* // productListing: { // SubscribedProductListing
|
|
81
89
|
* // entityId: "STRING_VALUE",
|
|
@@ -24,6 +24,22 @@ export interface AcceptChoice {
|
|
|
24
24
|
*/
|
|
25
25
|
editedValue?: string;
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The accepted asset scope.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface AcceptedAssetScope {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The asset ID of the accepted asset scope.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
assetId: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The filter IDs of the accepted asset scope.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
filterIds: string[] | undefined;
|
|
42
|
+
}
|
|
27
43
|
/**
|
|
28
44
|
* @public
|
|
29
45
|
* @enum
|
|
@@ -216,6 +232,11 @@ export interface AcceptSubscriptionRequestInput {
|
|
|
216
232
|
* @public
|
|
217
233
|
*/
|
|
218
234
|
decisionComment?: string;
|
|
235
|
+
/**
|
|
236
|
+
* <p>The asset scopes of the accept subscription request.</p>
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
assetScopes?: AcceptedAssetScope[];
|
|
219
240
|
}
|
|
220
241
|
/**
|
|
221
242
|
* @public
|
|
@@ -230,6 +251,32 @@ export declare const SubscriptionRequestStatus: {
|
|
|
230
251
|
* @public
|
|
231
252
|
*/
|
|
232
253
|
export type SubscriptionRequestStatus = (typeof SubscriptionRequestStatus)[keyof typeof SubscriptionRequestStatus];
|
|
254
|
+
/**
|
|
255
|
+
* <p>The asset scope.</p>
|
|
256
|
+
* @public
|
|
257
|
+
*/
|
|
258
|
+
export interface AssetScope {
|
|
259
|
+
/**
|
|
260
|
+
* <p>The asset ID of the asset scope.</p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
assetId: string | undefined;
|
|
264
|
+
/**
|
|
265
|
+
* <p>The filter IDs of the asset scope.</p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
filterIds: string[] | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* <p>The status of the asset scope.</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
status: string | undefined;
|
|
274
|
+
/**
|
|
275
|
+
* <p>The error message of the asset scope.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
errorMessage?: string;
|
|
279
|
+
}
|
|
233
280
|
/**
|
|
234
281
|
* <p>Details of a glossary term attached to the inventory asset.</p>
|
|
235
282
|
* @public
|
|
@@ -279,6 +326,11 @@ export interface SubscribedAssetListing {
|
|
|
279
326
|
* @public
|
|
280
327
|
*/
|
|
281
328
|
glossaryTerms?: DetailedGlossaryTerm[];
|
|
329
|
+
/**
|
|
330
|
+
* <p>The asset scope of the subscribed asset listing.</p>
|
|
331
|
+
* @public
|
|
332
|
+
*/
|
|
333
|
+
assetScope?: AssetScope;
|
|
282
334
|
}
|
|
283
335
|
/**
|
|
284
336
|
* <p>The listing of the asset in a data product.</p>
|
|
@@ -1098,8 +1150,8 @@ export type DomainUnitDesignation = (typeof DomainUnitDesignation)[keyof typeof
|
|
|
1098
1150
|
export interface AllDomainUnitsGrantFilter {
|
|
1099
1151
|
}
|
|
1100
1152
|
/**
|
|
1101
|
-
* <p>The grant filter for the domain unit. In the current release of Amazon DataZone, the
|
|
1102
|
-
* supported filter is the <code>allDomainUnitsGrantFilter</code>.</p>
|
|
1153
|
+
* <p>The grant filter for the domain unit. In the current release of Amazon DataZone, the
|
|
1154
|
+
* only supported filter is the <code>allDomainUnitsGrantFilter</code>.</p>
|
|
1103
1155
|
* @public
|
|
1104
1156
|
*/
|
|
1105
1157
|
export type DomainUnitGrantFilter = DomainUnitGrantFilter.AllDomainUnitsGrantFilterMember | DomainUnitGrantFilter.$UnknownMember;
|
|
@@ -5710,8 +5762,8 @@ export interface CreateProjectInput {
|
|
|
5710
5762
|
*/
|
|
5711
5763
|
glossaryTerms?: string[];
|
|
5712
5764
|
/**
|
|
5713
|
-
* <p>The ID of the domain unit. This parameter is not required and if it is not specified,
|
|
5714
|
-
* the project is created at the root domain unit level.</p>
|
|
5765
|
+
* <p>The ID of the domain unit. This parameter is not required and if it is not specified,
|
|
5766
|
+
* then the project is created at the root domain unit level.</p>
|
|
5715
5767
|
* @public
|
|
5716
5768
|
*/
|
|
5717
5769
|
domainUnitId?: string;
|
|
@@ -6047,6 +6099,11 @@ export interface SubscribedAsset {
|
|
|
6047
6099
|
* @public
|
|
6048
6100
|
*/
|
|
6049
6101
|
failureTimestamp?: Date;
|
|
6102
|
+
/**
|
|
6103
|
+
* <p>The asset scope of the subscribed asset.</p>
|
|
6104
|
+
* @public
|
|
6105
|
+
*/
|
|
6106
|
+
assetScope?: AssetScope;
|
|
6050
6107
|
}
|
|
6051
6108
|
/**
|
|
6052
6109
|
* <p>A revision of an asset published in a Amazon DataZone catalog.</p>
|
|
@@ -9003,26 +9060,6 @@ export interface DeleteEnvironmentBlueprintConfigurationInput {
|
|
|
9003
9060
|
*/
|
|
9004
9061
|
environmentBlueprintIdentifier: string | undefined;
|
|
9005
9062
|
}
|
|
9006
|
-
/**
|
|
9007
|
-
* @public
|
|
9008
|
-
*/
|
|
9009
|
-
export interface DeleteEnvironmentBlueprintConfigurationOutput {
|
|
9010
|
-
}
|
|
9011
|
-
/**
|
|
9012
|
-
* @public
|
|
9013
|
-
*/
|
|
9014
|
-
export interface GetEnvironmentBlueprintConfigurationInput {
|
|
9015
|
-
/**
|
|
9016
|
-
* <p>The ID of the Amazon DataZone domain where this blueprint exists.</p>
|
|
9017
|
-
* @public
|
|
9018
|
-
*/
|
|
9019
|
-
domainIdentifier: string | undefined;
|
|
9020
|
-
/**
|
|
9021
|
-
* <p>He ID of the blueprint.</p>
|
|
9022
|
-
* @public
|
|
9023
|
-
*/
|
|
9024
|
-
environmentBlueprintIdentifier: string | undefined;
|
|
9025
|
-
}
|
|
9026
9063
|
/**
|
|
9027
9064
|
* @internal
|
|
9028
9065
|
*/
|
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
import { ActionParameters, AssetFilterSummary, AssetItem, AssetListing, AssetListingItem, AssetRevision, AssetTypeItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, DataAssetActivityStatus, DataProductListing, DataProductListingItem, DataProductResultItem, DataProductRevision, DataSourceRunActivity, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, ListingStatus, ManagedPolicyType, Model, OwnerProperties, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput, TimeSeriesEntityType, UserDesignation, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface DeleteEnvironmentBlueprintConfigurationOutput {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface GetEnvironmentBlueprintConfigurationInput {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ID of the Amazon DataZone domain where this blueprint exists.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
domainIdentifier: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>He ID of the blueprint.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
environmentBlueprintIdentifier: string | undefined;
|
|
21
|
+
}
|
|
2
22
|
/**
|
|
3
23
|
* <p>The Lake Formation configuration of the Data Lake blueprint.</p>
|
|
4
24
|
* @public
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DeleteEnvironmentBlueprintConfigurationOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DeleteEnvironmentBlueprintConfigurationInput } from "../models/models_0";
|
|
9
|
+
import { DeleteEnvironmentBlueprintConfigurationOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DeleteEnvironmentBlueprintConfigurationCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetEnvironmentBlueprintConfigurationInput,
|
|
10
|
+
GetEnvironmentBlueprintConfigurationOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface GetEnvironmentBlueprintConfigurationCommandInput
|
|
@@ -5,6 +5,10 @@ export interface AcceptChoice {
|
|
|
5
5
|
predictionChoice?: number;
|
|
6
6
|
editedValue?: string;
|
|
7
7
|
}
|
|
8
|
+
export interface AcceptedAssetScope {
|
|
9
|
+
assetId: string | undefined;
|
|
10
|
+
filterIds: string[] | undefined;
|
|
11
|
+
}
|
|
8
12
|
export declare const AcceptRuleBehavior: {
|
|
9
13
|
readonly ALL: "ALL";
|
|
10
14
|
readonly NONE: "NONE";
|
|
@@ -81,6 +85,7 @@ export interface AcceptSubscriptionRequestInput {
|
|
|
81
85
|
domainIdentifier: string | undefined;
|
|
82
86
|
identifier: string | undefined;
|
|
83
87
|
decisionComment?: string;
|
|
88
|
+
assetScopes?: AcceptedAssetScope[];
|
|
84
89
|
}
|
|
85
90
|
export declare const SubscriptionRequestStatus: {
|
|
86
91
|
readonly ACCEPTED: "ACCEPTED";
|
|
@@ -89,6 +94,12 @@ export declare const SubscriptionRequestStatus: {
|
|
|
89
94
|
};
|
|
90
95
|
export type SubscriptionRequestStatus =
|
|
91
96
|
(typeof SubscriptionRequestStatus)[keyof typeof SubscriptionRequestStatus];
|
|
97
|
+
export interface AssetScope {
|
|
98
|
+
assetId: string | undefined;
|
|
99
|
+
filterIds: string[] | undefined;
|
|
100
|
+
status: string | undefined;
|
|
101
|
+
errorMessage?: string;
|
|
102
|
+
}
|
|
92
103
|
export interface DetailedGlossaryTerm {
|
|
93
104
|
name?: string;
|
|
94
105
|
shortDescription?: string;
|
|
@@ -99,6 +110,7 @@ export interface SubscribedAssetListing {
|
|
|
99
110
|
entityType?: string;
|
|
100
111
|
forms?: string;
|
|
101
112
|
glossaryTerms?: DetailedGlossaryTerm[];
|
|
113
|
+
assetScope?: AssetScope;
|
|
102
114
|
}
|
|
103
115
|
export interface AssetInDataProductListingItem {
|
|
104
116
|
entityId?: string;
|
|
@@ -2158,6 +2170,7 @@ export interface SubscribedAsset {
|
|
|
2158
2170
|
failureCause?: FailureCause;
|
|
2159
2171
|
grantedTimestamp?: Date;
|
|
2160
2172
|
failureTimestamp?: Date;
|
|
2173
|
+
assetScope?: AssetScope;
|
|
2161
2174
|
}
|
|
2162
2175
|
export interface ListingRevision {
|
|
2163
2176
|
id: string | undefined;
|
|
@@ -2903,11 +2916,6 @@ export interface DeleteEnvironmentBlueprintConfigurationInput {
|
|
|
2903
2916
|
domainIdentifier: string | undefined;
|
|
2904
2917
|
environmentBlueprintIdentifier: string | undefined;
|
|
2905
2918
|
}
|
|
2906
|
-
export interface DeleteEnvironmentBlueprintConfigurationOutput {}
|
|
2907
|
-
export interface GetEnvironmentBlueprintConfigurationInput {
|
|
2908
|
-
domainIdentifier: string | undefined;
|
|
2909
|
-
environmentBlueprintIdentifier: string | undefined;
|
|
2910
|
-
}
|
|
2911
2919
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2912
2920
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2913
2921
|
obj: AcceptPredictionsInput
|
|
@@ -57,6 +57,11 @@ import {
|
|
|
57
57
|
UserProfileStatus,
|
|
58
58
|
UserProfileType,
|
|
59
59
|
} from "./models_0";
|
|
60
|
+
export interface DeleteEnvironmentBlueprintConfigurationOutput {}
|
|
61
|
+
export interface GetEnvironmentBlueprintConfigurationInput {
|
|
62
|
+
domainIdentifier: string | undefined;
|
|
63
|
+
environmentBlueprintIdentifier: string | undefined;
|
|
64
|
+
}
|
|
60
65
|
export interface LakeFormationConfiguration {
|
|
61
66
|
locationRegistrationRole?: string;
|
|
62
67
|
locationRegistrationExcludeS3Locations?: string[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.645.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.645.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.645.0",
|
|
25
25
|
"@aws-sdk/core": "3.635.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.645.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.645.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.645.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|