@aws-sdk/client-datazone 3.596.0 → 3.600.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 +56 -0
- package/dist-cjs/index.js +451 -66
- package/dist-es/DataZone.js +14 -0
- package/dist-es/commands/AssociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/CreateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DeleteEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/DisassociateEnvironmentRoleCommand.js +24 -0
- package/dist-es/commands/GetEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/ListEnvironmentActionsCommand.js +24 -0
- package/dist-es/commands/ListProjectsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionRequestsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
- package/dist-es/commands/UpdateEnvironmentActionCommand.js +24 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +30 -53
- package/dist-es/models/models_1.js +53 -0
- package/dist-es/pagination/ListEnvironmentActionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +206 -0
- package/dist-types/DataZone.d.ts +49 -0
- package/dist-types/DataZoneClient.d.ts +9 -2
- package/dist-types/commands/AssociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/CreateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/DeleteEnvironmentActionCommand.d.ts +82 -0
- package/dist-types/commands/DisassociateEnvironmentRoleCommand.d.ts +81 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/GetEnvironmentActionCommand.d.ts +89 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentActionsCommand.d.ts +92 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +24 -0
- package/dist-types/commands/UpdateEnvironmentActionCommand.d.ts +99 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +516 -766
- package/dist-types/models/models_1.d.ts +808 -2
- package/dist-types/pagination/ListEnvironmentActionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/DataZone.d.ts +119 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentActionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DisassociateEnvironmentRoleCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListEnvironmentActionsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListProjectMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEnvironmentActionCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -187
- package/dist-types/ts3.4/models/models_1.d.ts +204 -2
- package/dist-types/ts3.4/pagination/ListEnvironmentActionsPaginator.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 +84 -0
- package/package.json +37 -37
package/dist-es/DataZone.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { AcceptPredictionsCommand, } from "./commands/AcceptPredictionsCommand";
|
|
3
3
|
import { AcceptSubscriptionRequestCommand, } from "./commands/AcceptSubscriptionRequestCommand";
|
|
4
|
+
import { AssociateEnvironmentRoleCommand, } from "./commands/AssociateEnvironmentRoleCommand";
|
|
4
5
|
import { CancelMetadataGenerationRunCommand, } from "./commands/CancelMetadataGenerationRunCommand";
|
|
5
6
|
import { CancelSubscriptionCommand, } from "./commands/CancelSubscriptionCommand";
|
|
6
7
|
import { CreateAssetCommand } from "./commands/CreateAssetCommand";
|
|
@@ -8,6 +9,7 @@ import { CreateAssetRevisionCommand, } from "./commands/CreateAssetRevisionComma
|
|
|
8
9
|
import { CreateAssetTypeCommand, } from "./commands/CreateAssetTypeCommand";
|
|
9
10
|
import { CreateDataSourceCommand, } from "./commands/CreateDataSourceCommand";
|
|
10
11
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
12
|
+
import { CreateEnvironmentActionCommand, } from "./commands/CreateEnvironmentActionCommand";
|
|
11
13
|
import { CreateEnvironmentCommand, } from "./commands/CreateEnvironmentCommand";
|
|
12
14
|
import { CreateEnvironmentProfileCommand, } from "./commands/CreateEnvironmentProfileCommand";
|
|
13
15
|
import { CreateFormTypeCommand, } from "./commands/CreateFormTypeCommand";
|
|
@@ -25,6 +27,7 @@ import { DeleteAssetCommand } from "./commands/DeleteAssetCommand";
|
|
|
25
27
|
import { DeleteAssetTypeCommand, } from "./commands/DeleteAssetTypeCommand";
|
|
26
28
|
import { DeleteDataSourceCommand, } from "./commands/DeleteDataSourceCommand";
|
|
27
29
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
30
|
+
import { DeleteEnvironmentActionCommand, } from "./commands/DeleteEnvironmentActionCommand";
|
|
28
31
|
import { DeleteEnvironmentBlueprintConfigurationCommand, } from "./commands/DeleteEnvironmentBlueprintConfigurationCommand";
|
|
29
32
|
import { DeleteEnvironmentCommand, } from "./commands/DeleteEnvironmentCommand";
|
|
30
33
|
import { DeleteEnvironmentProfileCommand, } from "./commands/DeleteEnvironmentProfileCommand";
|
|
@@ -38,11 +41,13 @@ import { DeleteSubscriptionGrantCommand, } from "./commands/DeleteSubscriptionGr
|
|
|
38
41
|
import { DeleteSubscriptionRequestCommand, } from "./commands/DeleteSubscriptionRequestCommand";
|
|
39
42
|
import { DeleteSubscriptionTargetCommand, } from "./commands/DeleteSubscriptionTargetCommand";
|
|
40
43
|
import { DeleteTimeSeriesDataPointsCommand, } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
44
|
+
import { DisassociateEnvironmentRoleCommand, } from "./commands/DisassociateEnvironmentRoleCommand";
|
|
41
45
|
import { GetAssetCommand } from "./commands/GetAssetCommand";
|
|
42
46
|
import { GetAssetTypeCommand, } from "./commands/GetAssetTypeCommand";
|
|
43
47
|
import { GetDataSourceCommand, } from "./commands/GetDataSourceCommand";
|
|
44
48
|
import { GetDataSourceRunCommand, } from "./commands/GetDataSourceRunCommand";
|
|
45
49
|
import { GetDomainCommand } from "./commands/GetDomainCommand";
|
|
50
|
+
import { GetEnvironmentActionCommand, } from "./commands/GetEnvironmentActionCommand";
|
|
46
51
|
import { GetEnvironmentBlueprintCommand, } from "./commands/GetEnvironmentBlueprintCommand";
|
|
47
52
|
import { GetEnvironmentBlueprintConfigurationCommand, } from "./commands/GetEnvironmentBlueprintConfigurationCommand";
|
|
48
53
|
import { GetEnvironmentCommand, } from "./commands/GetEnvironmentCommand";
|
|
@@ -66,6 +71,7 @@ import { ListDataSourceRunActivitiesCommand, } from "./commands/ListDataSourceRu
|
|
|
66
71
|
import { ListDataSourceRunsCommand, } from "./commands/ListDataSourceRunsCommand";
|
|
67
72
|
import { ListDataSourcesCommand, } from "./commands/ListDataSourcesCommand";
|
|
68
73
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
74
|
+
import { ListEnvironmentActionsCommand, } from "./commands/ListEnvironmentActionsCommand";
|
|
69
75
|
import { ListEnvironmentBlueprintConfigurationsCommand, } from "./commands/ListEnvironmentBlueprintConfigurationsCommand";
|
|
70
76
|
import { ListEnvironmentBlueprintsCommand, } from "./commands/ListEnvironmentBlueprintsCommand";
|
|
71
77
|
import { ListEnvironmentProfilesCommand, } from "./commands/ListEnvironmentProfilesCommand";
|
|
@@ -96,6 +102,7 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
|
96
102
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
97
103
|
import { UpdateDataSourceCommand, } from "./commands/UpdateDataSourceCommand";
|
|
98
104
|
import { UpdateDomainCommand, } from "./commands/UpdateDomainCommand";
|
|
105
|
+
import { UpdateEnvironmentActionCommand, } from "./commands/UpdateEnvironmentActionCommand";
|
|
99
106
|
import { UpdateEnvironmentCommand, } from "./commands/UpdateEnvironmentCommand";
|
|
100
107
|
import { UpdateEnvironmentProfileCommand, } from "./commands/UpdateEnvironmentProfileCommand";
|
|
101
108
|
import { UpdateGlossaryCommand, } from "./commands/UpdateGlossaryCommand";
|
|
@@ -110,6 +117,7 @@ import { DataZoneClient } from "./DataZoneClient";
|
|
|
110
117
|
const commands = {
|
|
111
118
|
AcceptPredictionsCommand,
|
|
112
119
|
AcceptSubscriptionRequestCommand,
|
|
120
|
+
AssociateEnvironmentRoleCommand,
|
|
113
121
|
CancelMetadataGenerationRunCommand,
|
|
114
122
|
CancelSubscriptionCommand,
|
|
115
123
|
CreateAssetCommand,
|
|
@@ -118,6 +126,7 @@ const commands = {
|
|
|
118
126
|
CreateDataSourceCommand,
|
|
119
127
|
CreateDomainCommand,
|
|
120
128
|
CreateEnvironmentCommand,
|
|
129
|
+
CreateEnvironmentActionCommand,
|
|
121
130
|
CreateEnvironmentProfileCommand,
|
|
122
131
|
CreateFormTypeCommand,
|
|
123
132
|
CreateGlossaryCommand,
|
|
@@ -135,6 +144,7 @@ const commands = {
|
|
|
135
144
|
DeleteDataSourceCommand,
|
|
136
145
|
DeleteDomainCommand,
|
|
137
146
|
DeleteEnvironmentCommand,
|
|
147
|
+
DeleteEnvironmentActionCommand,
|
|
138
148
|
DeleteEnvironmentBlueprintConfigurationCommand,
|
|
139
149
|
DeleteEnvironmentProfileCommand,
|
|
140
150
|
DeleteFormTypeCommand,
|
|
@@ -147,12 +157,14 @@ const commands = {
|
|
|
147
157
|
DeleteSubscriptionRequestCommand,
|
|
148
158
|
DeleteSubscriptionTargetCommand,
|
|
149
159
|
DeleteTimeSeriesDataPointsCommand,
|
|
160
|
+
DisassociateEnvironmentRoleCommand,
|
|
150
161
|
GetAssetCommand,
|
|
151
162
|
GetAssetTypeCommand,
|
|
152
163
|
GetDataSourceCommand,
|
|
153
164
|
GetDataSourceRunCommand,
|
|
154
165
|
GetDomainCommand,
|
|
155
166
|
GetEnvironmentCommand,
|
|
167
|
+
GetEnvironmentActionCommand,
|
|
156
168
|
GetEnvironmentBlueprintCommand,
|
|
157
169
|
GetEnvironmentBlueprintConfigurationCommand,
|
|
158
170
|
GetEnvironmentProfileCommand,
|
|
@@ -175,6 +187,7 @@ const commands = {
|
|
|
175
187
|
ListDataSourceRunsCommand,
|
|
176
188
|
ListDataSourcesCommand,
|
|
177
189
|
ListDomainsCommand,
|
|
190
|
+
ListEnvironmentActionsCommand,
|
|
178
191
|
ListEnvironmentBlueprintConfigurationsCommand,
|
|
179
192
|
ListEnvironmentBlueprintsCommand,
|
|
180
193
|
ListEnvironmentProfilesCommand,
|
|
@@ -206,6 +219,7 @@ const commands = {
|
|
|
206
219
|
UpdateDataSourceCommand,
|
|
207
220
|
UpdateDomainCommand,
|
|
208
221
|
UpdateEnvironmentCommand,
|
|
222
|
+
UpdateEnvironmentActionCommand,
|
|
209
223
|
UpdateEnvironmentProfileCommand,
|
|
210
224
|
UpdateGlossaryCommand,
|
|
211
225
|
UpdateGlossaryTermCommand,
|
|
@@ -0,0 +1,24 @@
|
|
|
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_AssociateEnvironmentRoleCommand, se_AssociateEnvironmentRoleCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AssociateEnvironmentRoleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "AssociateEnvironmentRole", {})
|
|
19
|
+
.n("DataZoneClient", "AssociateEnvironmentRoleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_AssociateEnvironmentRoleCommand)
|
|
22
|
+
.de(de_AssociateEnvironmentRoleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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_CreateEnvironmentActionCommand, se_CreateEnvironmentActionCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateEnvironmentActionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "CreateEnvironmentAction", {})
|
|
19
|
+
.n("DataZoneClient", "CreateEnvironmentActionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_CreateEnvironmentActionCommand)
|
|
22
|
+
.de(de_CreateEnvironmentActionCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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_DeleteEnvironmentActionCommand, se_DeleteEnvironmentActionCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteEnvironmentActionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "DeleteEnvironmentAction", {})
|
|
19
|
+
.n("DataZoneClient", "DeleteEnvironmentActionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_DeleteEnvironmentActionCommand)
|
|
22
|
+
.de(de_DeleteEnvironmentActionCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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_DisassociateEnvironmentRoleCommand, se_DisassociateEnvironmentRoleCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DisassociateEnvironmentRoleCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "DisassociateEnvironmentRole", {})
|
|
19
|
+
.n("DataZoneClient", "DisassociateEnvironmentRoleCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_DisassociateEnvironmentRoleCommand)
|
|
22
|
+
.de(de_DisassociateEnvironmentRoleCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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_GetEnvironmentActionCommand, se_GetEnvironmentActionCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetEnvironmentActionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "GetEnvironmentAction", {})
|
|
19
|
+
.n("DataZoneClient", "GetEnvironmentActionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_GetEnvironmentActionCommand)
|
|
22
|
+
.de(de_GetEnvironmentActionCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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_ListEnvironmentActionsCommand, se_ListEnvironmentActionsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListEnvironmentActionsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "ListEnvironmentActions", {})
|
|
19
|
+
.n("DataZoneClient", "ListEnvironmentActionsCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_ListEnvironmentActionsCommand)
|
|
22
|
+
.de(de_ListEnvironmentActionsCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -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 { ListProjectsInputFilterSensitiveLog, ListProjectsOutputFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { ListProjectsInputFilterSensitiveLog, ListProjectsOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_ListProjectsCommand, se_ListProjectsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListProjectsCommand extends $Command
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListSubscriptionRequestsOutputFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { ListSubscriptionRequestsOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_ListSubscriptionRequestsCommand, se_ListSubscriptionRequestsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListSubscriptionRequestsCommand extends $Command
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListSubscriptionsOutputFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { ListSubscriptionsOutputFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_ListSubscriptionsCommand, se_ListSubscriptionsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListSubscriptionsCommand extends $Command
|
|
@@ -0,0 +1,24 @@
|
|
|
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_UpdateEnvironmentActionCommand, se_UpdateEnvironmentActionCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateEnvironmentActionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("DataZone", "UpdateEnvironmentAction", {})
|
|
19
|
+
.n("DataZoneClient", "UpdateEnvironmentActionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateEnvironmentActionCommand)
|
|
22
|
+
.de(de_UpdateEnvironmentActionCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AcceptPredictionsCommand";
|
|
2
2
|
export * from "./AcceptSubscriptionRequestCommand";
|
|
3
|
+
export * from "./AssociateEnvironmentRoleCommand";
|
|
3
4
|
export * from "./CancelMetadataGenerationRunCommand";
|
|
4
5
|
export * from "./CancelSubscriptionCommand";
|
|
5
6
|
export * from "./CreateAssetCommand";
|
|
@@ -7,6 +8,7 @@ export * from "./CreateAssetRevisionCommand";
|
|
|
7
8
|
export * from "./CreateAssetTypeCommand";
|
|
8
9
|
export * from "./CreateDataSourceCommand";
|
|
9
10
|
export * from "./CreateDomainCommand";
|
|
11
|
+
export * from "./CreateEnvironmentActionCommand";
|
|
10
12
|
export * from "./CreateEnvironmentCommand";
|
|
11
13
|
export * from "./CreateEnvironmentProfileCommand";
|
|
12
14
|
export * from "./CreateFormTypeCommand";
|
|
@@ -24,6 +26,7 @@ export * from "./DeleteAssetCommand";
|
|
|
24
26
|
export * from "./DeleteAssetTypeCommand";
|
|
25
27
|
export * from "./DeleteDataSourceCommand";
|
|
26
28
|
export * from "./DeleteDomainCommand";
|
|
29
|
+
export * from "./DeleteEnvironmentActionCommand";
|
|
27
30
|
export * from "./DeleteEnvironmentBlueprintConfigurationCommand";
|
|
28
31
|
export * from "./DeleteEnvironmentCommand";
|
|
29
32
|
export * from "./DeleteEnvironmentProfileCommand";
|
|
@@ -37,11 +40,13 @@ export * from "./DeleteSubscriptionGrantCommand";
|
|
|
37
40
|
export * from "./DeleteSubscriptionRequestCommand";
|
|
38
41
|
export * from "./DeleteSubscriptionTargetCommand";
|
|
39
42
|
export * from "./DeleteTimeSeriesDataPointsCommand";
|
|
43
|
+
export * from "./DisassociateEnvironmentRoleCommand";
|
|
40
44
|
export * from "./GetAssetCommand";
|
|
41
45
|
export * from "./GetAssetTypeCommand";
|
|
42
46
|
export * from "./GetDataSourceCommand";
|
|
43
47
|
export * from "./GetDataSourceRunCommand";
|
|
44
48
|
export * from "./GetDomainCommand";
|
|
49
|
+
export * from "./GetEnvironmentActionCommand";
|
|
45
50
|
export * from "./GetEnvironmentBlueprintCommand";
|
|
46
51
|
export * from "./GetEnvironmentBlueprintConfigurationCommand";
|
|
47
52
|
export * from "./GetEnvironmentCommand";
|
|
@@ -65,6 +70,7 @@ export * from "./ListDataSourceRunActivitiesCommand";
|
|
|
65
70
|
export * from "./ListDataSourceRunsCommand";
|
|
66
71
|
export * from "./ListDataSourcesCommand";
|
|
67
72
|
export * from "./ListDomainsCommand";
|
|
73
|
+
export * from "./ListEnvironmentActionsCommand";
|
|
68
74
|
export * from "./ListEnvironmentBlueprintConfigurationsCommand";
|
|
69
75
|
export * from "./ListEnvironmentBlueprintsCommand";
|
|
70
76
|
export * from "./ListEnvironmentProfilesCommand";
|
|
@@ -95,6 +101,7 @@ export * from "./TagResourceCommand";
|
|
|
95
101
|
export * from "./UntagResourceCommand";
|
|
96
102
|
export * from "./UpdateDataSourceCommand";
|
|
97
103
|
export * from "./UpdateDomainCommand";
|
|
104
|
+
export * from "./UpdateEnvironmentActionCommand";
|
|
98
105
|
export * from "./UpdateEnvironmentCommand";
|
|
99
106
|
export * from "./UpdateEnvironmentProfileCommand";
|
|
100
107
|
export * from "./UpdateGlossaryCommand";
|
|
@@ -111,6 +111,14 @@ export var SubscribedPrincipal;
|
|
|
111
111
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
112
112
|
};
|
|
113
113
|
})(SubscribedPrincipal || (SubscribedPrincipal = {}));
|
|
114
|
+
export var ActionParameters;
|
|
115
|
+
(function (ActionParameters) {
|
|
116
|
+
ActionParameters.visit = (value, visitor) => {
|
|
117
|
+
if (value.awsConsoleLink !== undefined)
|
|
118
|
+
return visitor.awsConsoleLink(value.awsConsoleLink);
|
|
119
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
120
|
+
};
|
|
121
|
+
})(ActionParameters || (ActionParameters = {}));
|
|
114
122
|
export const ListingStatus = {
|
|
115
123
|
ACTIVE: "ACTIVE",
|
|
116
124
|
CREATING: "CREATING",
|
|
@@ -445,6 +453,25 @@ export const DataAssetActivityStatus = {
|
|
|
445
453
|
SUCCEEDED_UPDATED: "SUCCEEDED_UPDATED",
|
|
446
454
|
UNCHANGED: "UNCHANGED",
|
|
447
455
|
};
|
|
456
|
+
export const SelfGrantStatus = {
|
|
457
|
+
GRANTED: "GRANTED",
|
|
458
|
+
GRANT_FAILED: "GRANT_FAILED",
|
|
459
|
+
GRANT_IN_PROGRESS: "GRANT_IN_PROGRESS",
|
|
460
|
+
GRANT_PENDING: "GRANT_PENDING",
|
|
461
|
+
REVOKE_FAILED: "REVOKE_FAILED",
|
|
462
|
+
REVOKE_IN_PROGRESS: "REVOKE_IN_PROGRESS",
|
|
463
|
+
REVOKE_PENDING: "REVOKE_PENDING",
|
|
464
|
+
};
|
|
465
|
+
export var SelfGrantStatusOutput;
|
|
466
|
+
(function (SelfGrantStatusOutput) {
|
|
467
|
+
SelfGrantStatusOutput.visit = (value, visitor) => {
|
|
468
|
+
if (value.glueSelfGrantStatus !== undefined)
|
|
469
|
+
return visitor.glueSelfGrantStatus(value.glueSelfGrantStatus);
|
|
470
|
+
if (value.redshiftSelfGrantStatus !== undefined)
|
|
471
|
+
return visitor.redshiftSelfGrantStatus(value.redshiftSelfGrantStatus);
|
|
472
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
473
|
+
};
|
|
474
|
+
})(SelfGrantStatusOutput || (SelfGrantStatusOutput = {}));
|
|
448
475
|
export const DataSourceRunType = {
|
|
449
476
|
PRIORITIZED: "PRIORITIZED",
|
|
450
477
|
SCHEDULED: "SCHEDULED",
|
|
@@ -486,20 +513,6 @@ export const SortOrder = {
|
|
|
486
513
|
ASCENDING: "ASCENDING",
|
|
487
514
|
DESCENDING: "DESCENDING",
|
|
488
515
|
};
|
|
489
|
-
export var MemberDetails;
|
|
490
|
-
(function (MemberDetails) {
|
|
491
|
-
MemberDetails.visit = (value, visitor) => {
|
|
492
|
-
if (value.user !== undefined)
|
|
493
|
-
return visitor.user(value.user);
|
|
494
|
-
if (value.group !== undefined)
|
|
495
|
-
return visitor.group(value.group);
|
|
496
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
497
|
-
};
|
|
498
|
-
})(MemberDetails || (MemberDetails = {}));
|
|
499
|
-
export const SortKey = {
|
|
500
|
-
CREATED_AT: "CREATED_AT",
|
|
501
|
-
UPDATED_AT: "UPDATED_AT",
|
|
502
|
-
};
|
|
503
516
|
export const AcceptChoiceFilterSensitiveLog = (obj) => ({
|
|
504
517
|
...obj,
|
|
505
518
|
...(obj.editedValue && { editedValue: SENSITIVE_STRING }),
|
|
@@ -827,6 +840,7 @@ export const DeleteDataSourceOutputFilterSensitiveLog = (obj) => ({
|
|
|
827
840
|
assetFormsOutput: obj.assetFormsOutput.map((item) => FormOutputFilterSensitiveLog(item)),
|
|
828
841
|
}),
|
|
829
842
|
...(obj.schedule && { schedule: SENSITIVE_STRING }),
|
|
843
|
+
...(obj.selfGrantStatus && { selfGrantStatus: obj.selfGrantStatus }),
|
|
830
844
|
});
|
|
831
845
|
export const GetDataSourceOutputFilterSensitiveLog = (obj) => ({
|
|
832
846
|
...obj,
|
|
@@ -837,6 +851,7 @@ export const GetDataSourceOutputFilterSensitiveLog = (obj) => ({
|
|
|
837
851
|
assetFormsOutput: obj.assetFormsOutput.map((item) => FormOutputFilterSensitiveLog(item)),
|
|
838
852
|
}),
|
|
839
853
|
...(obj.schedule && { schedule: SENSITIVE_STRING }),
|
|
854
|
+
...(obj.selfGrantStatus && { selfGrantStatus: obj.selfGrantStatus }),
|
|
840
855
|
});
|
|
841
856
|
export const ListDataSourcesInputFilterSensitiveLog = (obj) => ({
|
|
842
857
|
...obj,
|
|
@@ -868,6 +883,7 @@ export const UpdateDataSourceOutputFilterSensitiveLog = (obj) => ({
|
|
|
868
883
|
assetFormsOutput: obj.assetFormsOutput.map((item) => FormOutputFilterSensitiveLog(item)),
|
|
869
884
|
}),
|
|
870
885
|
...(obj.schedule && { schedule: SENSITIVE_STRING }),
|
|
886
|
+
...(obj.selfGrantStatus && { selfGrantStatus: obj.selfGrantStatus }),
|
|
871
887
|
});
|
|
872
888
|
export const DataSourceRunActivityFilterSensitiveLog = (obj) => ({
|
|
873
889
|
...obj,
|
|
@@ -1046,42 +1062,3 @@ export const ListNotificationsOutputFilterSensitiveLog = (obj) => ({
|
|
|
1046
1062
|
notifications: obj.notifications.map((item) => NotificationOutputFilterSensitiveLog(item)),
|
|
1047
1063
|
}),
|
|
1048
1064
|
});
|
|
1049
|
-
export const ListProjectsInputFilterSensitiveLog = (obj) => ({
|
|
1050
|
-
...obj,
|
|
1051
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1052
|
-
});
|
|
1053
|
-
export const ProjectSummaryFilterSensitiveLog = (obj) => ({
|
|
1054
|
-
...obj,
|
|
1055
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1056
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1057
|
-
});
|
|
1058
|
-
export const ListProjectsOutputFilterSensitiveLog = (obj) => ({
|
|
1059
|
-
...obj,
|
|
1060
|
-
...(obj.items && { items: obj.items.map((item) => ProjectSummaryFilterSensitiveLog(item)) }),
|
|
1061
|
-
});
|
|
1062
|
-
export const SubscriptionRequestSummaryFilterSensitiveLog = (obj) => ({
|
|
1063
|
-
...obj,
|
|
1064
|
-
...(obj.requestReason && { requestReason: SENSITIVE_STRING }),
|
|
1065
|
-
...(obj.subscribedPrincipals && {
|
|
1066
|
-
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item)),
|
|
1067
|
-
}),
|
|
1068
|
-
...(obj.subscribedListings && {
|
|
1069
|
-
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
1070
|
-
}),
|
|
1071
|
-
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
1072
|
-
});
|
|
1073
|
-
export const ListSubscriptionRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
1074
|
-
...obj,
|
|
1075
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionRequestSummaryFilterSensitiveLog(item)) }),
|
|
1076
|
-
});
|
|
1077
|
-
export const SubscriptionSummaryFilterSensitiveLog = (obj) => ({
|
|
1078
|
-
...obj,
|
|
1079
|
-
...(obj.subscribedPrincipal && {
|
|
1080
|
-
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal),
|
|
1081
|
-
}),
|
|
1082
|
-
...(obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }),
|
|
1083
|
-
});
|
|
1084
|
-
export const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
1085
|
-
...obj,
|
|
1086
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
1087
|
-
});
|
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, CustomParameterFilterSensitiveLog, DataProductSummaryFilterSensitiveLog, ImportFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_0";
|
|
3
|
+
export var MemberDetails;
|
|
4
|
+
(function (MemberDetails) {
|
|
5
|
+
MemberDetails.visit = (value, visitor) => {
|
|
6
|
+
if (value.user !== undefined)
|
|
7
|
+
return visitor.user(value.user);
|
|
8
|
+
if (value.group !== undefined)
|
|
9
|
+
return visitor.group(value.group);
|
|
10
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
11
|
+
};
|
|
12
|
+
})(MemberDetails || (MemberDetails = {}));
|
|
13
|
+
export const SortKey = {
|
|
14
|
+
CREATED_AT: "CREATED_AT",
|
|
15
|
+
UPDATED_AT: "UPDATED_AT",
|
|
16
|
+
};
|
|
3
17
|
export const MetadataGenerationRunStatus = {
|
|
4
18
|
CANCELED: "CANCELED",
|
|
5
19
|
FAILED: "FAILED",
|
|
@@ -84,6 +98,45 @@ export var FilterClause;
|
|
|
84
98
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
85
99
|
};
|
|
86
100
|
})(FilterClause || (FilterClause = {}));
|
|
101
|
+
export const ListProjectsInputFilterSensitiveLog = (obj) => ({
|
|
102
|
+
...obj,
|
|
103
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
104
|
+
});
|
|
105
|
+
export const ProjectSummaryFilterSensitiveLog = (obj) => ({
|
|
106
|
+
...obj,
|
|
107
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
108
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
109
|
+
});
|
|
110
|
+
export const ListProjectsOutputFilterSensitiveLog = (obj) => ({
|
|
111
|
+
...obj,
|
|
112
|
+
...(obj.items && { items: obj.items.map((item) => ProjectSummaryFilterSensitiveLog(item)) }),
|
|
113
|
+
});
|
|
114
|
+
export const SubscriptionRequestSummaryFilterSensitiveLog = (obj) => ({
|
|
115
|
+
...obj,
|
|
116
|
+
...(obj.requestReason && { requestReason: SENSITIVE_STRING }),
|
|
117
|
+
...(obj.subscribedPrincipals && {
|
|
118
|
+
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item)),
|
|
119
|
+
}),
|
|
120
|
+
...(obj.subscribedListings && {
|
|
121
|
+
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item)),
|
|
122
|
+
}),
|
|
123
|
+
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
124
|
+
});
|
|
125
|
+
export const ListSubscriptionRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
126
|
+
...obj,
|
|
127
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionRequestSummaryFilterSensitiveLog(item)) }),
|
|
128
|
+
});
|
|
129
|
+
export const SubscriptionSummaryFilterSensitiveLog = (obj) => ({
|
|
130
|
+
...obj,
|
|
131
|
+
...(obj.subscribedPrincipal && {
|
|
132
|
+
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal),
|
|
133
|
+
}),
|
|
134
|
+
...(obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }),
|
|
135
|
+
});
|
|
136
|
+
export const ListSubscriptionsOutputFilterSensitiveLog = (obj) => ({
|
|
137
|
+
...obj,
|
|
138
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }),
|
|
139
|
+
});
|
|
87
140
|
export const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
88
141
|
...obj,
|
|
89
142
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListEnvironmentActionsCommand, } from "../commands/ListEnvironmentActionsCommand";
|
|
3
|
+
import { DataZoneClient } from "../DataZoneClient";
|
|
4
|
+
export const paginateListEnvironmentActions = createPaginator(DataZoneClient, ListEnvironmentActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -4,6 +4,7 @@ export * from "./ListDataSourceRunActivitiesPaginator";
|
|
|
4
4
|
export * from "./ListDataSourceRunsPaginator";
|
|
5
5
|
export * from "./ListDataSourcesPaginator";
|
|
6
6
|
export * from "./ListDomainsPaginator";
|
|
7
|
+
export * from "./ListEnvironmentActionsPaginator";
|
|
7
8
|
export * from "./ListEnvironmentBlueprintConfigurationsPaginator";
|
|
8
9
|
export * from "./ListEnvironmentBlueprintsPaginator";
|
|
9
10
|
export * from "./ListEnvironmentProfilesPaginator";
|