@aws-sdk/client-datazone 3.693.0 → 3.697.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 +478 -45
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/CreateRuleCommand.js +23 -0
- package/dist-es/commands/DeleteRuleCommand.js +22 -0
- package/dist-es/commands/GetDomainUnitCommand.js +1 -1
- package/dist-es/commands/GetRuleCommand.js +23 -0
- package/dist-es/commands/ListDomainsCommand.js +1 -1
- package/dist-es/commands/ListRulesCommand.js +23 -0
- package/dist-es/commands/UpdateDomainUnitCommand.js +1 -1
- package/dist-es/commands/UpdateRuleCommand.js +23 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +50 -30
- package/dist-es/models/models_1.js +65 -0
- package/dist-es/pagination/ListRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +227 -0
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +7 -2
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +174 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +17 -0
- package/dist-types/commands/DeleteDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/DeleteRuleCommand.d.ts +97 -0
- package/dist-types/commands/GetDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/GetRuleCommand.d.ts +138 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +9 -0
- package/dist-types/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +2 -1
- package/dist-types/commands/ListRulesCommand.d.ts +142 -0
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +8 -0
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainUnitCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleCommand.d.ts +170 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +741 -824
- package/dist-types/models/models_1.d.ts +3458 -2583
- package/dist-types/pagination/ListRulesPaginator.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/CreateRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainUnitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +120 -111
- package/dist-types/ts3.4/models/models_1.d.ts +221 -0
- package/dist-types/ts3.4/pagination/ListRulesPaginator.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 +35 -35
package/dist-es/DataZone.js
CHANGED
|
@@ -25,6 +25,7 @@ import { CreateGroupProfileCommand, } from "./commands/CreateGroupProfileCommand
|
|
|
25
25
|
import { CreateListingChangeSetCommand, } from "./commands/CreateListingChangeSetCommand";
|
|
26
26
|
import { CreateProjectCommand, } from "./commands/CreateProjectCommand";
|
|
27
27
|
import { CreateProjectMembershipCommand, } from "./commands/CreateProjectMembershipCommand";
|
|
28
|
+
import { CreateRuleCommand } from "./commands/CreateRuleCommand";
|
|
28
29
|
import { CreateSubscriptionGrantCommand, } from "./commands/CreateSubscriptionGrantCommand";
|
|
29
30
|
import { CreateSubscriptionRequestCommand, } from "./commands/CreateSubscriptionRequestCommand";
|
|
30
31
|
import { CreateSubscriptionTargetCommand, } from "./commands/CreateSubscriptionTargetCommand";
|
|
@@ -46,6 +47,7 @@ import { DeleteGlossaryTermCommand, } from "./commands/DeleteGlossaryTermCommand
|
|
|
46
47
|
import { DeleteListingCommand, } from "./commands/DeleteListingCommand";
|
|
47
48
|
import { DeleteProjectCommand, } from "./commands/DeleteProjectCommand";
|
|
48
49
|
import { DeleteProjectMembershipCommand, } from "./commands/DeleteProjectMembershipCommand";
|
|
50
|
+
import { DeleteRuleCommand } from "./commands/DeleteRuleCommand";
|
|
49
51
|
import { DeleteSubscriptionGrantCommand, } from "./commands/DeleteSubscriptionGrantCommand";
|
|
50
52
|
import { DeleteSubscriptionRequestCommand, } from "./commands/DeleteSubscriptionRequestCommand";
|
|
51
53
|
import { DeleteSubscriptionTargetCommand, } from "./commands/DeleteSubscriptionTargetCommand";
|
|
@@ -74,6 +76,7 @@ import { GetLineageNodeCommand, } from "./commands/GetLineageNodeCommand";
|
|
|
74
76
|
import { GetListingCommand } from "./commands/GetListingCommand";
|
|
75
77
|
import { GetMetadataGenerationRunCommand, } from "./commands/GetMetadataGenerationRunCommand";
|
|
76
78
|
import { GetProjectCommand } from "./commands/GetProjectCommand";
|
|
79
|
+
import { GetRuleCommand } from "./commands/GetRuleCommand";
|
|
77
80
|
import { GetSubscriptionCommand, } from "./commands/GetSubscriptionCommand";
|
|
78
81
|
import { GetSubscriptionGrantCommand, } from "./commands/GetSubscriptionGrantCommand";
|
|
79
82
|
import { GetSubscriptionRequestDetailsCommand, } from "./commands/GetSubscriptionRequestDetailsCommand";
|
|
@@ -100,6 +103,7 @@ import { ListNotificationsCommand, } from "./commands/ListNotificationsCommand";
|
|
|
100
103
|
import { ListPolicyGrantsCommand, } from "./commands/ListPolicyGrantsCommand";
|
|
101
104
|
import { ListProjectMembershipsCommand, } from "./commands/ListProjectMembershipsCommand";
|
|
102
105
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
106
|
+
import { ListRulesCommand } from "./commands/ListRulesCommand";
|
|
103
107
|
import { ListSubscriptionGrantsCommand, } from "./commands/ListSubscriptionGrantsCommand";
|
|
104
108
|
import { ListSubscriptionRequestsCommand, } from "./commands/ListSubscriptionRequestsCommand";
|
|
105
109
|
import { ListSubscriptionsCommand, } from "./commands/ListSubscriptionsCommand";
|
|
@@ -134,6 +138,7 @@ import { UpdateGlossaryCommand, } from "./commands/UpdateGlossaryCommand";
|
|
|
134
138
|
import { UpdateGlossaryTermCommand, } from "./commands/UpdateGlossaryTermCommand";
|
|
135
139
|
import { UpdateGroupProfileCommand, } from "./commands/UpdateGroupProfileCommand";
|
|
136
140
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
141
|
+
import { UpdateRuleCommand } from "./commands/UpdateRuleCommand";
|
|
137
142
|
import { UpdateSubscriptionGrantStatusCommand, } from "./commands/UpdateSubscriptionGrantStatusCommand";
|
|
138
143
|
import { UpdateSubscriptionRequestCommand, } from "./commands/UpdateSubscriptionRequestCommand";
|
|
139
144
|
import { UpdateSubscriptionTargetCommand, } from "./commands/UpdateSubscriptionTargetCommand";
|
|
@@ -166,6 +171,7 @@ const commands = {
|
|
|
166
171
|
CreateListingChangeSetCommand,
|
|
167
172
|
CreateProjectCommand,
|
|
168
173
|
CreateProjectMembershipCommand,
|
|
174
|
+
CreateRuleCommand,
|
|
169
175
|
CreateSubscriptionGrantCommand,
|
|
170
176
|
CreateSubscriptionRequestCommand,
|
|
171
177
|
CreateSubscriptionTargetCommand,
|
|
@@ -187,6 +193,7 @@ const commands = {
|
|
|
187
193
|
DeleteListingCommand,
|
|
188
194
|
DeleteProjectCommand,
|
|
189
195
|
DeleteProjectMembershipCommand,
|
|
196
|
+
DeleteRuleCommand,
|
|
190
197
|
DeleteSubscriptionGrantCommand,
|
|
191
198
|
DeleteSubscriptionRequestCommand,
|
|
192
199
|
DeleteSubscriptionTargetCommand,
|
|
@@ -215,6 +222,7 @@ const commands = {
|
|
|
215
222
|
GetListingCommand,
|
|
216
223
|
GetMetadataGenerationRunCommand,
|
|
217
224
|
GetProjectCommand,
|
|
225
|
+
GetRuleCommand,
|
|
218
226
|
GetSubscriptionCommand,
|
|
219
227
|
GetSubscriptionGrantCommand,
|
|
220
228
|
GetSubscriptionRequestDetailsCommand,
|
|
@@ -241,6 +249,7 @@ const commands = {
|
|
|
241
249
|
ListPolicyGrantsCommand,
|
|
242
250
|
ListProjectMembershipsCommand,
|
|
243
251
|
ListProjectsCommand,
|
|
252
|
+
ListRulesCommand,
|
|
244
253
|
ListSubscriptionGrantsCommand,
|
|
245
254
|
ListSubscriptionRequestsCommand,
|
|
246
255
|
ListSubscriptionsCommand,
|
|
@@ -275,6 +284,7 @@ const commands = {
|
|
|
275
284
|
UpdateGlossaryTermCommand,
|
|
276
285
|
UpdateGroupProfileCommand,
|
|
277
286
|
UpdateProjectCommand,
|
|
287
|
+
UpdateRuleCommand,
|
|
278
288
|
UpdateSubscriptionGrantStatusCommand,
|
|
279
289
|
UpdateSubscriptionRequestCommand,
|
|
280
290
|
UpdateSubscriptionTargetCommand,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateRuleInputFilterSensitiveLog, CreateRuleOutputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateRuleCommand, se_CreateRuleCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateRuleCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("DataZone", "CreateRule", {})
|
|
18
|
+
.n("DataZoneClient", "CreateRuleCommand")
|
|
19
|
+
.f(CreateRuleInputFilterSensitiveLog, CreateRuleOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_CreateRuleCommand)
|
|
21
|
+
.de(de_CreateRuleCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteRuleCommand, se_DeleteRuleCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteRuleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("DataZone", "DeleteRule", {})
|
|
17
|
+
.n("DataZoneClient", "DeleteRuleCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteRuleCommand)
|
|
20
|
+
.de(de_DeleteRuleCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -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 { GetDomainUnitOutputFilterSensitiveLog } from "../models/
|
|
5
|
+
import { GetDomainUnitOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
6
|
import { de_GetDomainUnitCommand, se_GetDomainUnitCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetDomainUnitCommand extends $Command
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetRuleOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
|
+
import { de_GetRuleCommand, se_GetRuleCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetRuleCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("DataZone", "GetRule", {})
|
|
18
|
+
.n("DataZoneClient", "GetRuleCommand")
|
|
19
|
+
.f(void 0, GetRuleOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetRuleCommand)
|
|
21
|
+
.de(de_GetRuleCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -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 { ListDomainsOutputFilterSensitiveLog } from "../models/
|
|
5
|
+
import { ListDomainsOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
6
|
import { de_ListDomainsCommand, se_ListDomainsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListDomainsCommand extends $Command
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListRulesOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
|
+
import { de_ListRulesCommand, se_ListRulesCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListRulesCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("DataZone", "ListRules", {})
|
|
18
|
+
.n("DataZoneClient", "ListRulesCommand")
|
|
19
|
+
.f(void 0, ListRulesOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListRulesCommand)
|
|
21
|
+
.de(de_ListRulesCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -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 { UpdateDomainUnitInputFilterSensitiveLog, UpdateDomainUnitOutputFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { UpdateDomainUnitInputFilterSensitiveLog, UpdateDomainUnitOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_UpdateDomainUnitCommand, se_UpdateDomainUnitCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateDomainUnitCommand extends $Command
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateRuleInputFilterSensitiveLog, UpdateRuleOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
|
+
import { de_UpdateRuleCommand, se_UpdateRuleCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class UpdateRuleCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("DataZone", "UpdateRule", {})
|
|
18
|
+
.n("DataZoneClient", "UpdateRuleCommand")
|
|
19
|
+
.f(UpdateRuleInputFilterSensitiveLog, UpdateRuleOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_UpdateRuleCommand)
|
|
21
|
+
.de(de_UpdateRuleCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -24,6 +24,7 @@ export * from "./CreateGroupProfileCommand";
|
|
|
24
24
|
export * from "./CreateListingChangeSetCommand";
|
|
25
25
|
export * from "./CreateProjectCommand";
|
|
26
26
|
export * from "./CreateProjectMembershipCommand";
|
|
27
|
+
export * from "./CreateRuleCommand";
|
|
27
28
|
export * from "./CreateSubscriptionGrantCommand";
|
|
28
29
|
export * from "./CreateSubscriptionRequestCommand";
|
|
29
30
|
export * from "./CreateSubscriptionTargetCommand";
|
|
@@ -45,6 +46,7 @@ export * from "./DeleteGlossaryTermCommand";
|
|
|
45
46
|
export * from "./DeleteListingCommand";
|
|
46
47
|
export * from "./DeleteProjectCommand";
|
|
47
48
|
export * from "./DeleteProjectMembershipCommand";
|
|
49
|
+
export * from "./DeleteRuleCommand";
|
|
48
50
|
export * from "./DeleteSubscriptionGrantCommand";
|
|
49
51
|
export * from "./DeleteSubscriptionRequestCommand";
|
|
50
52
|
export * from "./DeleteSubscriptionTargetCommand";
|
|
@@ -73,6 +75,7 @@ export * from "./GetLineageNodeCommand";
|
|
|
73
75
|
export * from "./GetListingCommand";
|
|
74
76
|
export * from "./GetMetadataGenerationRunCommand";
|
|
75
77
|
export * from "./GetProjectCommand";
|
|
78
|
+
export * from "./GetRuleCommand";
|
|
76
79
|
export * from "./GetSubscriptionCommand";
|
|
77
80
|
export * from "./GetSubscriptionGrantCommand";
|
|
78
81
|
export * from "./GetSubscriptionRequestDetailsCommand";
|
|
@@ -99,6 +102,7 @@ export * from "./ListNotificationsCommand";
|
|
|
99
102
|
export * from "./ListPolicyGrantsCommand";
|
|
100
103
|
export * from "./ListProjectMembershipsCommand";
|
|
101
104
|
export * from "./ListProjectsCommand";
|
|
105
|
+
export * from "./ListRulesCommand";
|
|
102
106
|
export * from "./ListSubscriptionGrantsCommand";
|
|
103
107
|
export * from "./ListSubscriptionRequestsCommand";
|
|
104
108
|
export * from "./ListSubscriptionTargetsCommand";
|
|
@@ -133,6 +137,7 @@ export * from "./UpdateGlossaryCommand";
|
|
|
133
137
|
export * from "./UpdateGlossaryTermCommand";
|
|
134
138
|
export * from "./UpdateGroupProfileCommand";
|
|
135
139
|
export * from "./UpdateProjectCommand";
|
|
140
|
+
export * from "./UpdateRuleCommand";
|
|
136
141
|
export * from "./UpdateSubscriptionGrantStatusCommand";
|
|
137
142
|
export * from "./UpdateSubscriptionRequestCommand";
|
|
138
143
|
export * from "./UpdateSubscriptionTargetCommand";
|
|
@@ -287,6 +287,10 @@ export const FilterStatus = {
|
|
|
287
287
|
INVALID: "INVALID",
|
|
288
288
|
VALID: "VALID",
|
|
289
289
|
};
|
|
290
|
+
export const RuleScopeSelectionMode = {
|
|
291
|
+
ALL: "ALL",
|
|
292
|
+
SPECIFIC: "SPECIFIC",
|
|
293
|
+
};
|
|
290
294
|
export const AuthType = {
|
|
291
295
|
DISABLED: "DISABLED",
|
|
292
296
|
IAM_IDC: "IAM_IDC",
|
|
@@ -548,6 +552,31 @@ export var Member;
|
|
|
548
552
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
549
553
|
};
|
|
550
554
|
})(Member || (Member = {}));
|
|
555
|
+
export const RuleAction = {
|
|
556
|
+
CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST",
|
|
557
|
+
};
|
|
558
|
+
export var RuleDetail;
|
|
559
|
+
(function (RuleDetail) {
|
|
560
|
+
RuleDetail.visit = (value, visitor) => {
|
|
561
|
+
if (value.metadataFormEnforcementDetail !== undefined)
|
|
562
|
+
return visitor.metadataFormEnforcementDetail(value.metadataFormEnforcementDetail);
|
|
563
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
564
|
+
};
|
|
565
|
+
})(RuleDetail || (RuleDetail = {}));
|
|
566
|
+
export var RuleTarget;
|
|
567
|
+
(function (RuleTarget) {
|
|
568
|
+
RuleTarget.visit = (value, visitor) => {
|
|
569
|
+
if (value.domainUnitTarget !== undefined)
|
|
570
|
+
return visitor.domainUnitTarget(value.domainUnitTarget);
|
|
571
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
572
|
+
};
|
|
573
|
+
})(RuleTarget || (RuleTarget = {}));
|
|
574
|
+
export const RuleType = {
|
|
575
|
+
METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT",
|
|
576
|
+
};
|
|
577
|
+
export const RuleTargetType = {
|
|
578
|
+
DOMAIN_UNIT: "DOMAIN_UNIT",
|
|
579
|
+
};
|
|
551
580
|
export var GrantedEntityInput;
|
|
552
581
|
(function (GrantedEntityInput) {
|
|
553
582
|
GrantedEntityInput.visit = (value, visitor) => {
|
|
@@ -665,6 +694,10 @@ export const AcceptSubscriptionRequestInputFilterSensitiveLog = (obj) => ({
|
|
|
665
694
|
...obj,
|
|
666
695
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
667
696
|
});
|
|
697
|
+
export const FormOutputFilterSensitiveLog = (obj) => ({
|
|
698
|
+
...obj,
|
|
699
|
+
...(obj.typeName && { typeName: SENSITIVE_STRING }),
|
|
700
|
+
});
|
|
668
701
|
export const DetailedGlossaryTermFilterSensitiveLog = (obj) => ({
|
|
669
702
|
...obj,
|
|
670
703
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -715,6 +748,7 @@ export const AcceptSubscriptionRequestOutputFilterSensitiveLog = (obj) => ({
|
|
|
715
748
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
716
749
|
}),
|
|
717
750
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
751
|
+
...(obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }),
|
|
718
752
|
});
|
|
719
753
|
export const FormInputFilterSensitiveLog = (obj) => ({
|
|
720
754
|
...obj,
|
|
@@ -726,10 +760,6 @@ export const CreateAssetInputFilterSensitiveLog = (obj) => ({
|
|
|
726
760
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
727
761
|
...(obj.formsInput && { formsInput: SENSITIVE_STRING }),
|
|
728
762
|
});
|
|
729
|
-
export const FormOutputFilterSensitiveLog = (obj) => ({
|
|
730
|
-
...obj,
|
|
731
|
-
...(obj.typeName && { typeName: SENSITIVE_STRING }),
|
|
732
|
-
});
|
|
733
763
|
export const CreateAssetOutputFilterSensitiveLog = (obj) => ({
|
|
734
764
|
...obj,
|
|
735
765
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -972,10 +1002,25 @@ export const CreateProjectOutputFilterSensitiveLog = (obj) => ({
|
|
|
972
1002
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
973
1003
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
974
1004
|
});
|
|
1005
|
+
export const CreateRuleInputFilterSensitiveLog = (obj) => ({
|
|
1006
|
+
...obj,
|
|
1007
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1008
|
+
...(obj.target && { target: obj.target }),
|
|
1009
|
+
...(obj.detail && { detail: obj.detail }),
|
|
1010
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1011
|
+
});
|
|
1012
|
+
export const CreateRuleOutputFilterSensitiveLog = (obj) => ({
|
|
1013
|
+
...obj,
|
|
1014
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1015
|
+
...(obj.target && { target: obj.target }),
|
|
1016
|
+
...(obj.detail && { detail: obj.detail }),
|
|
1017
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1018
|
+
});
|
|
975
1019
|
export const CreateSubscriptionRequestInputFilterSensitiveLog = (obj) => ({
|
|
976
1020
|
...obj,
|
|
977
1021
|
...(obj.subscribedPrincipals && { subscribedPrincipals: obj.subscribedPrincipals.map((item) => item) }),
|
|
978
1022
|
...(obj.requestReason && { requestReason: SENSITIVE_STRING }),
|
|
1023
|
+
...(obj.metadataForms && { metadataForms: SENSITIVE_STRING }),
|
|
979
1024
|
});
|
|
980
1025
|
export const CreateSubscriptionRequestOutputFilterSensitiveLog = (obj) => ({
|
|
981
1026
|
...obj,
|
|
@@ -987,6 +1032,7 @@ export const CreateSubscriptionRequestOutputFilterSensitiveLog = (obj) => ({
|
|
|
987
1032
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
988
1033
|
}),
|
|
989
1034
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
1035
|
+
...(obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }),
|
|
990
1036
|
});
|
|
991
1037
|
export const CreateSubscriptionTargetInputFilterSensitiveLog = (obj) => ({
|
|
992
1038
|
...obj,
|
|
@@ -1111,29 +1157,3 @@ export const DataSourceRunActivityFilterSensitiveLog = (obj) => ({
|
|
|
1111
1157
|
...(obj.technicalName && { technicalName: SENSITIVE_STRING }),
|
|
1112
1158
|
...(obj.technicalDescription && { technicalDescription: SENSITIVE_STRING }),
|
|
1113
1159
|
});
|
|
1114
|
-
export const DomainSummaryFilterSensitiveLog = (obj) => ({
|
|
1115
|
-
...obj,
|
|
1116
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1117
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1118
|
-
});
|
|
1119
|
-
export const ListDomainsOutputFilterSensitiveLog = (obj) => ({
|
|
1120
|
-
...obj,
|
|
1121
|
-
...(obj.items && { items: obj.items.map((item) => DomainSummaryFilterSensitiveLog(item)) }),
|
|
1122
|
-
});
|
|
1123
|
-
export const GetDomainUnitOutputFilterSensitiveLog = (obj) => ({
|
|
1124
|
-
...obj,
|
|
1125
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1126
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1127
|
-
...(obj.owners && { owners: obj.owners.map((item) => item) }),
|
|
1128
|
-
});
|
|
1129
|
-
export const UpdateDomainUnitInputFilterSensitiveLog = (obj) => ({
|
|
1130
|
-
...obj,
|
|
1131
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1132
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1133
|
-
});
|
|
1134
|
-
export const UpdateDomainUnitOutputFilterSensitiveLog = (obj) => ({
|
|
1135
|
-
...obj,
|
|
1136
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1137
|
-
...(obj.owners && { owners: obj.owners.map((item) => item) }),
|
|
1138
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1139
|
-
});
|
|
@@ -183,6 +183,32 @@ export var AssetFilterConfiguration;
|
|
|
183
183
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
184
184
|
};
|
|
185
185
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
186
|
+
export const DomainSummaryFilterSensitiveLog = (obj) => ({
|
|
187
|
+
...obj,
|
|
188
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
189
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
190
|
+
});
|
|
191
|
+
export const ListDomainsOutputFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
...(obj.items && { items: obj.items.map((item) => DomainSummaryFilterSensitiveLog(item)) }),
|
|
194
|
+
});
|
|
195
|
+
export const GetDomainUnitOutputFilterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
198
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
199
|
+
...(obj.owners && { owners: obj.owners.map((item) => item) }),
|
|
200
|
+
});
|
|
201
|
+
export const UpdateDomainUnitInputFilterSensitiveLog = (obj) => ({
|
|
202
|
+
...obj,
|
|
203
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
204
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
205
|
+
});
|
|
206
|
+
export const UpdateDomainUnitOutputFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
209
|
+
...(obj.owners && { owners: obj.owners.map((item) => item) }),
|
|
210
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
211
|
+
});
|
|
186
212
|
export const ImportFilterSensitiveLog = (obj) => ({
|
|
187
213
|
...obj,
|
|
188
214
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -252,6 +278,7 @@ export const GetSubscriptionRequestDetailsOutputFilterSensitiveLog = (obj) => ({
|
|
|
252
278
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
253
279
|
}),
|
|
254
280
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
281
|
+
...(obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }),
|
|
255
282
|
});
|
|
256
283
|
export const GetSubscriptionTargetOutputFilterSensitiveLog = (obj) => ({
|
|
257
284
|
...obj,
|
|
@@ -371,6 +398,10 @@ export const ListProjectsOutputFilterSensitiveLog = (obj) => ({
|
|
|
371
398
|
...obj,
|
|
372
399
|
...(obj.items && { items: obj.items.map((item) => ProjectSummaryFilterSensitiveLog(item)) }),
|
|
373
400
|
});
|
|
401
|
+
export const MetadataFormSummaryFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
...(obj.typeName && { typeName: SENSITIVE_STRING }),
|
|
404
|
+
});
|
|
374
405
|
export const SubscriptionRequestSummaryFilterSensitiveLog = (obj) => ({
|
|
375
406
|
...obj,
|
|
376
407
|
...(obj.requestReason && { requestReason: SENSITIVE_STRING }),
|
|
@@ -381,6 +412,9 @@ export const SubscriptionRequestSummaryFilterSensitiveLog = (obj) => ({
|
|
|
381
412
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
382
413
|
}),
|
|
383
414
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
415
|
+
...(obj.metadataFormsSummary && {
|
|
416
|
+
metadataFormsSummary: obj.metadataFormsSummary.map((item) => MetadataFormSummaryFilterSensitiveLog(item)),
|
|
417
|
+
}),
|
|
384
418
|
});
|
|
385
419
|
export const ListSubscriptionRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
386
420
|
...obj,
|
|
@@ -423,6 +457,7 @@ export const RejectSubscriptionRequestOutputFilterSensitiveLog = (obj) => ({
|
|
|
423
457
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
424
458
|
}),
|
|
425
459
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
460
|
+
...(obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }),
|
|
426
461
|
});
|
|
427
462
|
export const RevokeSubscriptionOutputFilterSensitiveLog = (obj) => ({
|
|
428
463
|
...obj,
|
|
@@ -431,6 +466,35 @@ export const RevokeSubscriptionOutputFilterSensitiveLog = (obj) => ({
|
|
|
431
466
|
}),
|
|
432
467
|
...(obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }),
|
|
433
468
|
});
|
|
469
|
+
export const GetRuleOutputFilterSensitiveLog = (obj) => ({
|
|
470
|
+
...obj,
|
|
471
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
472
|
+
...(obj.target && { target: obj.target }),
|
|
473
|
+
...(obj.detail && { detail: obj.detail }),
|
|
474
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
475
|
+
});
|
|
476
|
+
export const RuleSummaryFilterSensitiveLog = (obj) => ({
|
|
477
|
+
...obj,
|
|
478
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
479
|
+
...(obj.target && { target: obj.target }),
|
|
480
|
+
});
|
|
481
|
+
export const ListRulesOutputFilterSensitiveLog = (obj) => ({
|
|
482
|
+
...obj,
|
|
483
|
+
...(obj.items && { items: obj.items.map((item) => RuleSummaryFilterSensitiveLog(item)) }),
|
|
484
|
+
});
|
|
485
|
+
export const UpdateRuleInputFilterSensitiveLog = (obj) => ({
|
|
486
|
+
...obj,
|
|
487
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
488
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
489
|
+
...(obj.detail && { detail: obj.detail }),
|
|
490
|
+
});
|
|
491
|
+
export const UpdateRuleOutputFilterSensitiveLog = (obj) => ({
|
|
492
|
+
...obj,
|
|
493
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
494
|
+
...(obj.target && { target: obj.target }),
|
|
495
|
+
...(obj.detail && { detail: obj.detail }),
|
|
496
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
497
|
+
});
|
|
434
498
|
export const GlossaryItemFilterSensitiveLog = (obj) => ({
|
|
435
499
|
...obj,
|
|
436
500
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -570,6 +634,7 @@ export const UpdateSubscriptionRequestOutputFilterSensitiveLog = (obj) => ({
|
|
|
570
634
|
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
571
635
|
}),
|
|
572
636
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
637
|
+
...(obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }),
|
|
573
638
|
});
|
|
574
639
|
export const UpdateSubscriptionTargetInputFilterSensitiveLog = (obj) => ({
|
|
575
640
|
...obj,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRulesCommand } from "../commands/ListRulesCommand";
|
|
3
|
+
import { DataZoneClient } from "../DataZoneClient";
|
|
4
|
+
export const paginateListRules = createPaginator(DataZoneClient, ListRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -19,6 +19,7 @@ export * from "./ListNotificationsPaginator";
|
|
|
19
19
|
export * from "./ListPolicyGrantsPaginator";
|
|
20
20
|
export * from "./ListProjectMembershipsPaginator";
|
|
21
21
|
export * from "./ListProjectsPaginator";
|
|
22
|
+
export * from "./ListRulesPaginator";
|
|
22
23
|
export * from "./ListSubscriptionGrantsPaginator";
|
|
23
24
|
export * from "./ListSubscriptionRequestsPaginator";
|
|
24
25
|
export * from "./ListSubscriptionTargetsPaginator";
|