@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
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { ListRulesInput, ListRulesOutput } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListRulesCommandInput extends ListRulesInput {}
|
|
12
|
+
export interface ListRulesCommandOutput
|
|
13
|
+
extends ListRulesOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListRulesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListRulesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListRulesCommandInput,
|
|
20
|
+
ListRulesCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: ListRulesCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListRulesCommandInput,
|
|
29
|
+
ListRulesCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListRulesCommand extends ListRulesCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListRulesInput;
|
|
40
|
+
output: ListRulesOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListRulesCommandInput;
|
|
44
|
+
output: ListRulesCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { UpdateDomainInput, UpdateDomainOutput } from "../models/
|
|
8
|
+
import { UpdateDomainInput, UpdateDomainOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateDomainCommandInput extends UpdateDomainInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateDomainUnitInput,
|
|
10
10
|
UpdateDomainUnitOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateDomainUnitCommandInput extends UpdateDomainUnitInput {}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import { UpdateRuleInput, UpdateRuleOutput } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateRuleCommandInput extends UpdateRuleInput {}
|
|
12
|
+
export interface UpdateRuleCommandOutput
|
|
13
|
+
extends UpdateRuleOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdateRuleCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateRuleCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateRuleCommandInput,
|
|
20
|
+
UpdateRuleCommandOutput,
|
|
21
|
+
DataZoneClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateRuleCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateRuleCommandInput,
|
|
29
|
+
UpdateRuleCommandOutput,
|
|
30
|
+
DataZoneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateRuleCommand extends UpdateRuleCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateRuleInput;
|
|
40
|
+
output: UpdateRuleOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateRuleCommandInput;
|
|
44
|
+
output: UpdateRuleCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -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";
|
|
@@ -87,6 +87,12 @@ export interface AcceptSubscriptionRequestInput {
|
|
|
87
87
|
decisionComment?: string | undefined;
|
|
88
88
|
assetScopes?: AcceptedAssetScope[] | undefined;
|
|
89
89
|
}
|
|
90
|
+
export interface FormOutput {
|
|
91
|
+
formName: string | undefined;
|
|
92
|
+
typeName?: string | undefined;
|
|
93
|
+
typeRevision?: string | undefined;
|
|
94
|
+
content?: string | undefined;
|
|
95
|
+
}
|
|
90
96
|
export declare const SubscriptionRequestStatus: {
|
|
91
97
|
readonly ACCEPTED: "ACCEPTED";
|
|
92
98
|
readonly PENDING: "PENDING";
|
|
@@ -196,6 +202,8 @@ export interface AcceptSubscriptionRequestOutput {
|
|
|
196
202
|
subscribedListings: SubscribedListing[] | undefined;
|
|
197
203
|
reviewerId?: string | undefined;
|
|
198
204
|
decisionComment?: string | undefined;
|
|
205
|
+
existingSubscriptionId?: string | undefined;
|
|
206
|
+
metadataForms?: FormOutput[] | undefined;
|
|
199
207
|
}
|
|
200
208
|
export interface AwsConsoleLinkParameters {
|
|
201
209
|
uri?: string | undefined;
|
|
@@ -730,12 +738,6 @@ export interface CreateAssetInput {
|
|
|
730
738
|
predictionConfiguration?: PredictionConfiguration | undefined;
|
|
731
739
|
clientToken?: string | undefined;
|
|
732
740
|
}
|
|
733
|
-
export interface FormOutput {
|
|
734
|
-
formName: string | undefined;
|
|
735
|
-
typeName?: string | undefined;
|
|
736
|
-
typeRevision?: string | undefined;
|
|
737
|
-
content?: string | undefined;
|
|
738
|
-
}
|
|
739
741
|
export interface TimeSeriesDataPointSummaryFormOutput {
|
|
740
742
|
formName: string | undefined;
|
|
741
743
|
typeIdentifier: string | undefined;
|
|
@@ -1262,6 +1264,16 @@ export interface AssetTypeItem {
|
|
|
1262
1264
|
updatedAt?: Date | undefined;
|
|
1263
1265
|
updatedBy?: string | undefined;
|
|
1264
1266
|
}
|
|
1267
|
+
export declare const RuleScopeSelectionMode: {
|
|
1268
|
+
readonly ALL: "ALL";
|
|
1269
|
+
readonly SPECIFIC: "SPECIFIC";
|
|
1270
|
+
};
|
|
1271
|
+
export type RuleScopeSelectionMode =
|
|
1272
|
+
(typeof RuleScopeSelectionMode)[keyof typeof RuleScopeSelectionMode];
|
|
1273
|
+
export interface AssetTypesForRule {
|
|
1274
|
+
selectionMode: RuleScopeSelectionMode | undefined;
|
|
1275
|
+
specificAssetTypes?: string[] | undefined;
|
|
1276
|
+
}
|
|
1265
1277
|
export interface AssociateEnvironmentRoleInput {
|
|
1266
1278
|
domainIdentifier: string | undefined;
|
|
1267
1279
|
environmentIdentifier: string | undefined;
|
|
@@ -2133,6 +2145,98 @@ export interface CreateProjectMembershipInput {
|
|
|
2133
2145
|
designation: UserDesignation | undefined;
|
|
2134
2146
|
}
|
|
2135
2147
|
export interface CreateProjectMembershipOutput {}
|
|
2148
|
+
export declare const RuleAction: {
|
|
2149
|
+
readonly CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST";
|
|
2150
|
+
};
|
|
2151
|
+
export type RuleAction = (typeof RuleAction)[keyof typeof RuleAction];
|
|
2152
|
+
export interface MetadataFormReference {
|
|
2153
|
+
typeIdentifier: string | undefined;
|
|
2154
|
+
typeRevision: string | undefined;
|
|
2155
|
+
}
|
|
2156
|
+
export interface MetadataFormEnforcementDetail {
|
|
2157
|
+
requiredMetadataForms?: MetadataFormReference[] | undefined;
|
|
2158
|
+
}
|
|
2159
|
+
export type RuleDetail =
|
|
2160
|
+
| RuleDetail.MetadataFormEnforcementDetailMember
|
|
2161
|
+
| RuleDetail.$UnknownMember;
|
|
2162
|
+
export declare namespace RuleDetail {
|
|
2163
|
+
interface MetadataFormEnforcementDetailMember {
|
|
2164
|
+
metadataFormEnforcementDetail: MetadataFormEnforcementDetail;
|
|
2165
|
+
$unknown?: never;
|
|
2166
|
+
}
|
|
2167
|
+
interface $UnknownMember {
|
|
2168
|
+
metadataFormEnforcementDetail?: never;
|
|
2169
|
+
$unknown: [string, any];
|
|
2170
|
+
}
|
|
2171
|
+
interface Visitor<T> {
|
|
2172
|
+
metadataFormEnforcementDetail: (value: MetadataFormEnforcementDetail) => T;
|
|
2173
|
+
_: (name: string, value: any) => T;
|
|
2174
|
+
}
|
|
2175
|
+
const visit: <T>(value: RuleDetail, visitor: Visitor<T>) => T;
|
|
2176
|
+
}
|
|
2177
|
+
export interface ProjectsForRule {
|
|
2178
|
+
selectionMode: RuleScopeSelectionMode | undefined;
|
|
2179
|
+
specificProjects?: string[] | undefined;
|
|
2180
|
+
}
|
|
2181
|
+
export interface RuleScope {
|
|
2182
|
+
assetType?: AssetTypesForRule | undefined;
|
|
2183
|
+
dataProduct?: boolean | undefined;
|
|
2184
|
+
project?: ProjectsForRule | undefined;
|
|
2185
|
+
}
|
|
2186
|
+
export interface DomainUnitTarget {
|
|
2187
|
+
domainUnitId: string | undefined;
|
|
2188
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
2189
|
+
}
|
|
2190
|
+
export type RuleTarget =
|
|
2191
|
+
| RuleTarget.DomainUnitTargetMember
|
|
2192
|
+
| RuleTarget.$UnknownMember;
|
|
2193
|
+
export declare namespace RuleTarget {
|
|
2194
|
+
interface DomainUnitTargetMember {
|
|
2195
|
+
domainUnitTarget: DomainUnitTarget;
|
|
2196
|
+
$unknown?: never;
|
|
2197
|
+
}
|
|
2198
|
+
interface $UnknownMember {
|
|
2199
|
+
domainUnitTarget?: never;
|
|
2200
|
+
$unknown: [string, any];
|
|
2201
|
+
}
|
|
2202
|
+
interface Visitor<T> {
|
|
2203
|
+
domainUnitTarget: (value: DomainUnitTarget) => T;
|
|
2204
|
+
_: (name: string, value: any) => T;
|
|
2205
|
+
}
|
|
2206
|
+
const visit: <T>(value: RuleTarget, visitor: Visitor<T>) => T;
|
|
2207
|
+
}
|
|
2208
|
+
export interface CreateRuleInput {
|
|
2209
|
+
domainIdentifier: string | undefined;
|
|
2210
|
+
name: string | undefined;
|
|
2211
|
+
target: RuleTarget | undefined;
|
|
2212
|
+
action: RuleAction | undefined;
|
|
2213
|
+
scope: RuleScope | undefined;
|
|
2214
|
+
detail: RuleDetail | undefined;
|
|
2215
|
+
description?: string | undefined;
|
|
2216
|
+
clientToken?: string | undefined;
|
|
2217
|
+
}
|
|
2218
|
+
export declare const RuleType: {
|
|
2219
|
+
readonly METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT";
|
|
2220
|
+
};
|
|
2221
|
+
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
2222
|
+
export declare const RuleTargetType: {
|
|
2223
|
+
readonly DOMAIN_UNIT: "DOMAIN_UNIT";
|
|
2224
|
+
};
|
|
2225
|
+
export type RuleTargetType =
|
|
2226
|
+
(typeof RuleTargetType)[keyof typeof RuleTargetType];
|
|
2227
|
+
export interface CreateRuleOutput {
|
|
2228
|
+
identifier: string | undefined;
|
|
2229
|
+
name: string | undefined;
|
|
2230
|
+
ruleType: RuleType | undefined;
|
|
2231
|
+
target: RuleTarget | undefined;
|
|
2232
|
+
action: RuleAction | undefined;
|
|
2233
|
+
scope: RuleScope | undefined;
|
|
2234
|
+
detail: RuleDetail | undefined;
|
|
2235
|
+
targetType?: RuleTargetType | undefined;
|
|
2236
|
+
description?: string | undefined;
|
|
2237
|
+
createdAt: Date | undefined;
|
|
2238
|
+
createdBy: string | undefined;
|
|
2239
|
+
}
|
|
2136
2240
|
export interface ListingRevisionInput {
|
|
2137
2241
|
identifier: string | undefined;
|
|
2138
2242
|
revision: string | undefined;
|
|
@@ -2264,6 +2368,7 @@ export interface CreateSubscriptionRequestInput {
|
|
|
2264
2368
|
subscribedListings: SubscribedListingInput[] | undefined;
|
|
2265
2369
|
requestReason: string | undefined;
|
|
2266
2370
|
clientToken?: string | undefined;
|
|
2371
|
+
metadataForms?: FormInput[] | undefined;
|
|
2267
2372
|
}
|
|
2268
2373
|
export interface CreateSubscriptionRequestOutput {
|
|
2269
2374
|
id: string | undefined;
|
|
@@ -2278,6 +2383,8 @@ export interface CreateSubscriptionRequestOutput {
|
|
|
2278
2383
|
subscribedListings: SubscribedListing[] | undefined;
|
|
2279
2384
|
reviewerId?: string | undefined;
|
|
2280
2385
|
decisionComment?: string | undefined;
|
|
2386
|
+
existingSubscriptionId?: string | undefined;
|
|
2387
|
+
metadataForms?: FormOutput[] | undefined;
|
|
2281
2388
|
}
|
|
2282
2389
|
export interface SubscriptionTargetForm {
|
|
2283
2390
|
formName: string | undefined;
|
|
@@ -2843,95 +2950,6 @@ export interface ListDomainsInput {
|
|
|
2843
2950
|
maxResults?: number | undefined;
|
|
2844
2951
|
nextToken?: string | undefined;
|
|
2845
2952
|
}
|
|
2846
|
-
export interface DomainSummary {
|
|
2847
|
-
id: string | undefined;
|
|
2848
|
-
name: string | undefined;
|
|
2849
|
-
description?: string | undefined;
|
|
2850
|
-
arn: string | undefined;
|
|
2851
|
-
managedAccountId: string | undefined;
|
|
2852
|
-
status: DomainStatus | undefined;
|
|
2853
|
-
portalUrl?: string | undefined;
|
|
2854
|
-
createdAt: Date | undefined;
|
|
2855
|
-
lastUpdatedAt?: Date | undefined;
|
|
2856
|
-
}
|
|
2857
|
-
export interface ListDomainsOutput {
|
|
2858
|
-
items: DomainSummary[] | undefined;
|
|
2859
|
-
nextToken?: string | undefined;
|
|
2860
|
-
}
|
|
2861
|
-
export interface UpdateDomainInput {
|
|
2862
|
-
identifier: string | undefined;
|
|
2863
|
-
description?: string | undefined;
|
|
2864
|
-
singleSignOn?: SingleSignOn | undefined;
|
|
2865
|
-
domainExecutionRole?: string | undefined;
|
|
2866
|
-
name?: string | undefined;
|
|
2867
|
-
clientToken?: string | undefined;
|
|
2868
|
-
}
|
|
2869
|
-
export interface UpdateDomainOutput {
|
|
2870
|
-
id: string | undefined;
|
|
2871
|
-
rootDomainUnitId?: string | undefined;
|
|
2872
|
-
description?: string | undefined;
|
|
2873
|
-
singleSignOn?: SingleSignOn | undefined;
|
|
2874
|
-
domainExecutionRole?: string | undefined;
|
|
2875
|
-
name?: string | undefined;
|
|
2876
|
-
lastUpdatedAt?: Date | undefined;
|
|
2877
|
-
}
|
|
2878
|
-
export interface DeleteDomainUnitInput {
|
|
2879
|
-
domainIdentifier: string | undefined;
|
|
2880
|
-
identifier: string | undefined;
|
|
2881
|
-
}
|
|
2882
|
-
export interface DeleteDomainUnitOutput {}
|
|
2883
|
-
export interface GetDomainUnitInput {
|
|
2884
|
-
domainIdentifier: string | undefined;
|
|
2885
|
-
identifier: string | undefined;
|
|
2886
|
-
}
|
|
2887
|
-
export interface GetDomainUnitOutput {
|
|
2888
|
-
id: string | undefined;
|
|
2889
|
-
domainId: string | undefined;
|
|
2890
|
-
name: string | undefined;
|
|
2891
|
-
parentDomainUnitId?: string | undefined;
|
|
2892
|
-
description?: string | undefined;
|
|
2893
|
-
owners: DomainUnitOwnerProperties[] | undefined;
|
|
2894
|
-
createdAt?: Date | undefined;
|
|
2895
|
-
lastUpdatedAt?: Date | undefined;
|
|
2896
|
-
createdBy?: string | undefined;
|
|
2897
|
-
lastUpdatedBy?: string | undefined;
|
|
2898
|
-
}
|
|
2899
|
-
export interface ListDomainUnitsForParentInput {
|
|
2900
|
-
domainIdentifier: string | undefined;
|
|
2901
|
-
parentDomainUnitIdentifier: string | undefined;
|
|
2902
|
-
maxResults?: number | undefined;
|
|
2903
|
-
nextToken?: string | undefined;
|
|
2904
|
-
}
|
|
2905
|
-
export interface DomainUnitSummary {
|
|
2906
|
-
name: string | undefined;
|
|
2907
|
-
id: string | undefined;
|
|
2908
|
-
}
|
|
2909
|
-
export interface ListDomainUnitsForParentOutput {
|
|
2910
|
-
items: DomainUnitSummary[] | undefined;
|
|
2911
|
-
nextToken?: string | undefined;
|
|
2912
|
-
}
|
|
2913
|
-
export interface UpdateDomainUnitInput {
|
|
2914
|
-
domainIdentifier: string | undefined;
|
|
2915
|
-
identifier: string | undefined;
|
|
2916
|
-
description?: string | undefined;
|
|
2917
|
-
name?: string | undefined;
|
|
2918
|
-
}
|
|
2919
|
-
export interface UpdateDomainUnitOutput {
|
|
2920
|
-
id: string | undefined;
|
|
2921
|
-
domainId: string | undefined;
|
|
2922
|
-
name: string | undefined;
|
|
2923
|
-
owners: DomainUnitOwnerProperties[] | undefined;
|
|
2924
|
-
description?: string | undefined;
|
|
2925
|
-
parentDomainUnitId?: string | undefined;
|
|
2926
|
-
createdAt?: Date | undefined;
|
|
2927
|
-
lastUpdatedAt?: Date | undefined;
|
|
2928
|
-
createdBy?: string | undefined;
|
|
2929
|
-
lastUpdatedBy?: string | undefined;
|
|
2930
|
-
}
|
|
2931
|
-
export interface DeleteEnvironmentBlueprintConfigurationInput {
|
|
2932
|
-
domainIdentifier: string | undefined;
|
|
2933
|
-
environmentBlueprintIdentifier: string | undefined;
|
|
2934
|
-
}
|
|
2935
2953
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2936
2954
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2937
2955
|
obj: AcceptPredictionsInput
|
|
@@ -2939,6 +2957,7 @@ export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
|
2939
2957
|
export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (
|
|
2940
2958
|
obj: AcceptSubscriptionRequestInput
|
|
2941
2959
|
) => any;
|
|
2960
|
+
export declare const FormOutputFilterSensitiveLog: (obj: FormOutput) => any;
|
|
2942
2961
|
export declare const DetailedGlossaryTermFilterSensitiveLog: (
|
|
2943
2962
|
obj: DetailedGlossaryTerm
|
|
2944
2963
|
) => any;
|
|
@@ -2967,7 +2986,6 @@ export declare const FormInputFilterSensitiveLog: (obj: FormInput) => any;
|
|
|
2967
2986
|
export declare const CreateAssetInputFilterSensitiveLog: (
|
|
2968
2987
|
obj: CreateAssetInput
|
|
2969
2988
|
) => any;
|
|
2970
|
-
export declare const FormOutputFilterSensitiveLog: (obj: FormOutput) => any;
|
|
2971
2989
|
export declare const CreateAssetOutputFilterSensitiveLog: (
|
|
2972
2990
|
obj: CreateAssetOutput
|
|
2973
2991
|
) => any;
|
|
@@ -3076,6 +3094,12 @@ export declare const CreateProjectInputFilterSensitiveLog: (
|
|
|
3076
3094
|
export declare const CreateProjectOutputFilterSensitiveLog: (
|
|
3077
3095
|
obj: CreateProjectOutput
|
|
3078
3096
|
) => any;
|
|
3097
|
+
export declare const CreateRuleInputFilterSensitiveLog: (
|
|
3098
|
+
obj: CreateRuleInput
|
|
3099
|
+
) => any;
|
|
3100
|
+
export declare const CreateRuleOutputFilterSensitiveLog: (
|
|
3101
|
+
obj: CreateRuleOutput
|
|
3102
|
+
) => any;
|
|
3079
3103
|
export declare const CreateSubscriptionRequestInputFilterSensitiveLog: (
|
|
3080
3104
|
obj: CreateSubscriptionRequestInput
|
|
3081
3105
|
) => any;
|
|
@@ -3139,18 +3163,3 @@ export declare const UpdateDataSourceOutputFilterSensitiveLog: (
|
|
|
3139
3163
|
export declare const DataSourceRunActivityFilterSensitiveLog: (
|
|
3140
3164
|
obj: DataSourceRunActivity
|
|
3141
3165
|
) => any;
|
|
3142
|
-
export declare const DomainSummaryFilterSensitiveLog: (
|
|
3143
|
-
obj: DomainSummary
|
|
3144
|
-
) => any;
|
|
3145
|
-
export declare const ListDomainsOutputFilterSensitiveLog: (
|
|
3146
|
-
obj: ListDomainsOutput
|
|
3147
|
-
) => any;
|
|
3148
|
-
export declare const GetDomainUnitOutputFilterSensitiveLog: (
|
|
3149
|
-
obj: GetDomainUnitOutput
|
|
3150
|
-
) => any;
|
|
3151
|
-
export declare const UpdateDomainUnitInputFilterSensitiveLog: (
|
|
3152
|
-
obj: UpdateDomainUnitInput
|
|
3153
|
-
) => any;
|
|
3154
|
-
export declare const UpdateDomainUnitOutputFilterSensitiveLog: (
|
|
3155
|
-
obj: UpdateDomainUnitOutput
|
|
3156
|
-
) => any;
|