@aws-sdk/client-datazone 3.930.0 → 3.932.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +120 -47
- package/dist-es/models/models_0.js +10 -25
- package/dist-es/models/models_1.js +19 -0
- package/dist-es/schemas/schemas_0.js +109 -40
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +36 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +50 -0
- package/dist-types/commands/DeleteSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/GetSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +23 -0
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +10 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +26 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +26 -2
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/UpdateSubscriptionGrantStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +224 -234
- package/dist-types/models/models_1.d.ts +320 -379
- package/dist-types/models/models_2.d.ts +325 -3
- package/dist-types/schemas/schemas_0.d.ts +9 -1
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +96 -87
- package/dist-types/ts3.4/models/models_1.d.ts +121 -106
- package/dist-types/ts3.4/models/models_2.d.ts +76 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -1
- package/package.json +5 -5
|
@@ -1,5 +1,322 @@
|
|
|
1
|
-
import { AccountSource, ActionParameters, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionScope, ConnectionType, CustomParameter, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentConfigurationUserParameter,
|
|
2
|
-
import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, FailureCause, GrantedEntity, Import, ResourceTagParameter, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortKey, SortOrder, Status, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus,
|
|
1
|
+
import { AccountSource, ActionParameters, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionScope, ConnectionType, CustomParameter, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentConfigurationUserParameter, EnvironmentParameter, EnvironmentStatus, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GroupProfileStatus, ManagedPolicyType, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProvisioningProperties, ResolutionStrategy, Resource, RowFilterExpression, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
|
|
2
|
+
import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, EnvironmentDeploymentDetails, FailureCause, GrantedEntity, Import, ProjectDeletionError, ProjectStatus, ResourceTag, ResourceTagParameter, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortKey, SortOrder, Status, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionGrantSummary, SubscriptionTargetForm, TimeSeriesDataPointFormOutput, TimeSeriesEntityType, UserProfileStatus, UserProfileType } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ListSubscriptionGrantsOutput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The results of the <code>ListSubscriptionGrants</code> action. </p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
items: SubscriptionGrantSummary[] | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>When the number of subscription grants is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscription grants, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionGrants</code> to list the next set of subscription grants.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
nextToken?: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface ListSubscriptionRequestsInput {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
domainIdentifier: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>Specifies the status of the subscription requests.</p> <note> <p>This is not a required parameter, but if not specified, by default, Amazon DataZone returns only <code>PENDING</code> subscription requests. </p> </note>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
status?: SubscriptionRequestStatus | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The identifier of the subscribed listing.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
subscribedListingId?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The identifier of the project for the subscription requests.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
owningProjectId?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The identifier of the subscription request approver's project.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
approverProjectId?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The ID of the owning user.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
owningUserId?: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The ID of the owning group.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
owningGroupId?: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>Specifies the way to sort the results of this action.</p>
|
|
59
|
+
*
|
|
60
|
+
* @deprecated Results are always sorted by updatedAt
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
sortBy?: SortKey | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>Specifies the sort order for the results of this action.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
sortOrder?: SortOrder | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The maximum number of subscription requests to return in a single call to <code>ListSubscriptionRequests</code>. When the number of subscription requests to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>ListSubscriptionRequests</code> to list the next set of subscription requests.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
maxResults?: number | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* <p>When the number of subscription requests is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscription requests, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionRequests</code> to list the next set of subscription requests.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
nextToken?: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* <p>The summary of the metadata form.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export interface MetadataFormSummary {
|
|
85
|
+
/**
|
|
86
|
+
* <p>The form name of the metadata form.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
formName?: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The type name of the metadata form.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
typeName: string | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The type revision of the metadata form.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
typeRevision: string | undefined;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>The details of the subscription request.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface SubscriptionRequestSummary {
|
|
106
|
+
/**
|
|
107
|
+
* <p>The identifier of the subscription request.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
id: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The Amazon DataZone user who created the subscription request.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
createdBy: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The identifier of the Amazon DataZone user who updated the subscription request.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
updatedBy?: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The identifier of the Amazon DataZone domain in which a subscription request exists.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
domainId: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The status of the subscription request.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
status: SubscriptionRequestStatus | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The timestamp of when a subscription request was created.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
createdAt: Date | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>The timestamp of when the subscription request was updated.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
updatedAt: Date | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>The reason for the subscription request.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
requestReason: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>The principals included in the subscription request. </p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>The listings included in the subscription request.</p>
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
subscribedListings: SubscribedListing[] | undefined;
|
|
156
|
+
/**
|
|
157
|
+
* <p>The identifier of the subscription request reviewer.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
reviewerId?: string | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* <p>The decision comment of the subscription request.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
decisionComment?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The ID of the existing subscription.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
existingSubscriptionId?: string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* <p>The summary of the metadata forms.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
metadataFormsSummary?: MetadataFormSummary[] | undefined;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export interface ListSubscriptionRequestsOutput {
|
|
181
|
+
/**
|
|
182
|
+
* <p>The results of the <code>ListSubscriptionRequests</code> action. </p>
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
items: SubscriptionRequestSummary[] | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* <p>When the number of subscription requests is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscription requests, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionRequests</code> to list the next set of subscription requests.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
nextToken?: string | undefined;
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
export interface ListSubscriptionsInput {
|
|
196
|
+
/**
|
|
197
|
+
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
domainIdentifier: string | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The identifier of the subscription request for the subscriptions that you want to list.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
subscriptionRequestIdentifier?: string | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The status of the subscriptions that you want to list.</p> <note> <p>This is not a required parameter, but if not provided, by default, Amazon DataZone returns only <code>APPROVED</code> subscriptions. </p> </note>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
status?: SubscriptionStatus | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* <p>The identifier of the subscribed listing for the subscriptions that you want to list.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
subscribedListingId?: string | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p>The identifier of the owning project.</p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
owningProjectId?: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>The ID of the owning user.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
owningUserId?: string | undefined;
|
|
226
|
+
/**
|
|
227
|
+
* <p>The ID of the owning group.</p>
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
owningGroupId?: string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p>The identifier of the project for the subscription's approver.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
approverProjectId?: string | undefined;
|
|
236
|
+
/**
|
|
237
|
+
* <p>Specifies the way in which the results of this action are to be sorted.</p>
|
|
238
|
+
*
|
|
239
|
+
* @deprecated Results are always sorted by updatedAt
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
sortBy?: SortKey | undefined;
|
|
243
|
+
/**
|
|
244
|
+
* <p>Specifies the sort order for the results of this action.</p>
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
247
|
+
sortOrder?: SortOrder | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* <p>The maximum number of subscriptions to return in a single call to <code>ListSubscriptions</code>. When the number of subscriptions to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>ListSubscriptions</code> to list the next set of Subscriptions. </p>
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
maxResults?: number | undefined;
|
|
253
|
+
/**
|
|
254
|
+
* <p>When the number of subscriptions is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscriptions, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptions</code> to list the next set of subscriptions.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
nextToken?: string | undefined;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* <p>The details of the subscription.</p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export interface SubscriptionSummary {
|
|
264
|
+
/**
|
|
265
|
+
* <p>The identifier of the subscription.</p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
id: string | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* <p>The Amazon DataZone user who created the subscription.</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
createdBy: string | undefined;
|
|
274
|
+
/**
|
|
275
|
+
* <p>The Amazon DataZone user who updated the subscription.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
updatedBy?: string | undefined;
|
|
279
|
+
/**
|
|
280
|
+
* <p>The identifier of the Amazon DataZone domain in which a subscription exists.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
domainId: string | undefined;
|
|
284
|
+
/**
|
|
285
|
+
* <p>The status of the subscription.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
status: SubscriptionStatus | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* <p>The timestamp of when the subscription was created.</p>
|
|
291
|
+
* @public
|
|
292
|
+
*/
|
|
293
|
+
createdAt: Date | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* <p>The timestamp of when the subscription was updated.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
updatedAt: Date | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* <p>The principal included in the subscription.</p>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
subscribedPrincipal: SubscribedPrincipal | undefined;
|
|
304
|
+
/**
|
|
305
|
+
* <p>The listing included in the subscription.</p>
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
subscribedListing: SubscribedListing | undefined;
|
|
309
|
+
/**
|
|
310
|
+
* <p>The identifier of the subscription request for the subscription.</p>
|
|
311
|
+
* @public
|
|
312
|
+
*/
|
|
313
|
+
subscriptionRequestId?: string | undefined;
|
|
314
|
+
/**
|
|
315
|
+
* <p>The retain permissions included in the subscription.</p>
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
retainPermissions?: boolean | undefined;
|
|
319
|
+
}
|
|
3
320
|
/**
|
|
4
321
|
* @public
|
|
5
322
|
*/
|
|
@@ -3131,6 +3448,11 @@ export interface UpdateSubscriptionGrantStatusOutput {
|
|
|
3131
3448
|
* @public
|
|
3132
3449
|
*/
|
|
3133
3450
|
updatedAt: Date | undefined;
|
|
3451
|
+
/**
|
|
3452
|
+
* <p>The ID of the environment in which the subscription grant is updated.</p>
|
|
3453
|
+
* @public
|
|
3454
|
+
*/
|
|
3455
|
+
environmentId?: string | undefined;
|
|
3134
3456
|
/**
|
|
3135
3457
|
* <p>The identifier of the subscription target whose subscription grant status is to be updated.</p>
|
|
3136
3458
|
* @public
|
|
@@ -3434,7 +3756,7 @@ export interface UpdateUserProfileOutput {
|
|
|
3434
3756
|
*/
|
|
3435
3757
|
status?: UserProfileStatus | undefined;
|
|
3436
3758
|
/**
|
|
3437
|
-
* <p>The
|
|
3759
|
+
* <p>The results of the UpdateUserProfile action.</p>
|
|
3438
3760
|
* @public
|
|
3439
3761
|
*/
|
|
3440
3762
|
details?: UserProfileDetails | undefined;
|
|
@@ -70,6 +70,7 @@ export declare var AssetListing: StaticStructureSchema;
|
|
|
70
70
|
export declare var AssetListingDetails: StaticStructureSchema;
|
|
71
71
|
export declare var AssetListingItem: StaticStructureSchema;
|
|
72
72
|
export declare var AssetListingItemAdditionalAttributes: StaticStructureSchema;
|
|
73
|
+
export declare var AssetPermission: StaticStructureSchema;
|
|
73
74
|
export declare var AssetRevision: StaticStructureSchema;
|
|
74
75
|
export declare var AssetScope: StaticStructureSchema;
|
|
75
76
|
export declare var AssetTargetNameMap: StaticStructureSchema;
|
|
@@ -550,11 +551,15 @@ export declare var StartMetadataGenerationRunInput: StaticStructureSchema;
|
|
|
550
551
|
export declare var StartMetadataGenerationRunOutput: StaticStructureSchema;
|
|
551
552
|
export declare var SubscribedAsset: StaticStructureSchema;
|
|
552
553
|
export declare var SubscribedAssetListing: StaticStructureSchema;
|
|
554
|
+
export declare var SubscribedGroup: StaticStructureSchema;
|
|
555
|
+
export declare var SubscribedGroupInput: StaticStructureSchema;
|
|
553
556
|
export declare var SubscribedListing: StaticStructureSchema;
|
|
554
557
|
export declare var SubscribedListingInput: StaticStructureSchema;
|
|
555
558
|
export declare var SubscribedProductListing: StaticStructureSchema;
|
|
556
559
|
export declare var SubscribedProject: StaticStructureSchema;
|
|
557
560
|
export declare var SubscribedProjectInput: StaticStructureSchema;
|
|
561
|
+
export declare var SubscribedUser: StaticStructureSchema;
|
|
562
|
+
export declare var SubscribedUserInput: StaticStructureSchema;
|
|
558
563
|
export declare var SubscriptionGrantSummary: StaticStructureSchema;
|
|
559
564
|
export declare var SubscriptionRequestSummary: StaticStructureSchema;
|
|
560
565
|
export declare var SubscriptionSummary: StaticStructureSchema;
|
|
@@ -570,7 +575,7 @@ export declare var TimeSeriesDataPointFormOutput: StaticStructureSchema;
|
|
|
570
575
|
export declare var TimeSeriesDataPointSummaryFormOutput: StaticStructureSchema;
|
|
571
576
|
export declare var Topic: StaticStructureSchema;
|
|
572
577
|
export declare var UnauthorizedException: StaticErrorSchema;
|
|
573
|
-
export declare var
|
|
578
|
+
export declare var Unit: StaticStructureSchema;
|
|
574
579
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
575
580
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
576
581
|
export declare var UpdateAccountPoolInput: StaticStructureSchema;
|
|
@@ -631,6 +636,7 @@ export declare var AggregationOutputList: StaticListSchema;
|
|
|
631
636
|
export declare var ApplicableAssetTypes: number;
|
|
632
637
|
export declare var AssetFilters: StaticListSchema;
|
|
633
638
|
export declare var AssetInDataProductListingItems: StaticListSchema;
|
|
639
|
+
export declare var AssetPermissions: StaticListSchema;
|
|
634
640
|
export declare var AssetRevisions: StaticListSchema;
|
|
635
641
|
export declare var AssetTargetNames: StaticListSchema;
|
|
636
642
|
export declare var AssetTypeIdentifiers: number;
|
|
@@ -714,6 +720,7 @@ export declare var RuleAssetTypeList: number;
|
|
|
714
720
|
export declare var RuleProjectIdentifierList: number;
|
|
715
721
|
export declare var RuleSummaries: StaticListSchema;
|
|
716
722
|
export declare var S3LocationList: number;
|
|
723
|
+
export declare var S3Permissions: number;
|
|
717
724
|
export declare var SearchInList: StaticListSchema;
|
|
718
725
|
export declare var SearchInventoryResultItems: StaticListSchema;
|
|
719
726
|
export declare var SearchOutputAdditionalAttributes: number;
|
|
@@ -777,6 +784,7 @@ export declare var MemberDetails: StaticStructureSchema;
|
|
|
777
784
|
export declare var Model: StaticStructureSchema;
|
|
778
785
|
export declare var OwnerProperties: StaticStructureSchema;
|
|
779
786
|
export declare var OwnerPropertiesOutput: StaticStructureSchema;
|
|
787
|
+
export declare var Permissions: StaticStructureSchema;
|
|
780
788
|
export declare var PolicyGrantDetail: StaticStructureSchema;
|
|
781
789
|
export declare var PolicyGrantPrincipal: StaticStructureSchema;
|
|
782
790
|
export declare var ProjectGrantFilter: StaticStructureSchema;
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { CreateProjectInput
|
|
8
|
+
import { CreateProjectInput } from "../models/models_0";
|
|
9
|
+
import { CreateProjectOutput } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface CreateProjectCommandInput extends CreateProjectInput {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListSubscriptionGrantsOutput,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListSubscriptionGrantsInput } from "../models/models_1";
|
|
9
|
+
import { ListSubscriptionGrantsOutput } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListSubscriptionGrantsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListSubscriptionRequestsInput,
|
|
10
10
|
ListSubscriptionRequestsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListSubscriptionRequestsCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListSubscriptionsInput,
|
|
10
|
+
ListSubscriptionsOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListSubscriptionsCommandInput extends ListSubscriptionsInput {}
|