@aws-sdk/client-datazone 3.1034.0 → 3.1036.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/schemas/schemas_0.js +42 -23
- package/dist-es/schemas/schemas_0.js +31 -12
- package/dist-types/commands/CreateConnectionCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +3 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +3 -0
- package/dist-types/commands/SearchCommand.d.ts +1 -2
- package/dist-types/commands/SearchGroupProfilesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +130 -198
- package/dist-types/models/models_1.d.ts +197 -127
- package/dist-types/models/models_2.d.ts +128 -3
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchGroupProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +94 -76
- package/dist-types/ts3.4/models/models_1.d.ts +83 -64
- package/dist-types/ts3.4/models/models_2.d.ts +67 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +15 -15
|
@@ -1,5 +1,200 @@
|
|
|
1
|
-
import type { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus,
|
|
2
|
-
import type { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary,
|
|
1
|
+
import type { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
|
|
2
|
+
import type { AcceptedAssetScope, AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetPermission, AssetRevision, ConfigurableEnvironmentAction, Configuration, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, CustomParameter, DataProductItem, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, FormInput, FormOutput, GrantedEntity, MatchRationaleItem, Member, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, RecommendationConfiguration, Resource, ResourceTag, ResourceTagParameter, RuleDetail, RuleScope, RuleTarget, ScheduleConfiguration, SingleSignOn, SubscribedAsset, SubscribedGroupInput, SubscribedIamPrincipalInput, SubscribedListing, SubscribedListingInput, SubscribedPrincipal, SubscribedProjectInput, SubscribedUserInput, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The principal that is to be given a subscriptiong grant.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export type SubscribedPrincipalInput = SubscribedPrincipalInput.GroupMember | SubscribedPrincipalInput.IamMember | SubscribedPrincipalInput.ProjectMember | SubscribedPrincipalInput.UserMember | SubscribedPrincipalInput.$UnknownMember;
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export declare namespace SubscribedPrincipalInput {
|
|
12
|
+
/**
|
|
13
|
+
* <p>The project that is to be given a subscription grant.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
interface ProjectMember {
|
|
17
|
+
project: SubscribedProjectInput;
|
|
18
|
+
user?: never;
|
|
19
|
+
group?: never;
|
|
20
|
+
iam?: never;
|
|
21
|
+
$unknown?: never;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* <p>The subscribed user.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
interface UserMember {
|
|
28
|
+
project?: never;
|
|
29
|
+
user: SubscribedUserInput;
|
|
30
|
+
group?: never;
|
|
31
|
+
iam?: never;
|
|
32
|
+
$unknown?: never;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* <p>The subscribed group.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
interface GroupMember {
|
|
39
|
+
project?: never;
|
|
40
|
+
user?: never;
|
|
41
|
+
group: SubscribedGroupInput;
|
|
42
|
+
iam?: never;
|
|
43
|
+
$unknown?: never;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* <p>The subscribed IAM principal.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
interface IamMember {
|
|
50
|
+
project?: never;
|
|
51
|
+
user?: never;
|
|
52
|
+
group?: never;
|
|
53
|
+
iam: SubscribedIamPrincipalInput;
|
|
54
|
+
$unknown?: never;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
interface $UnknownMember {
|
|
60
|
+
project?: never;
|
|
61
|
+
user?: never;
|
|
62
|
+
group?: never;
|
|
63
|
+
iam?: never;
|
|
64
|
+
$unknown: [string, any];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @deprecated unused in schema-serde mode.
|
|
68
|
+
*
|
|
69
|
+
*/
|
|
70
|
+
interface Visitor<T> {
|
|
71
|
+
project: (value: SubscribedProjectInput) => T;
|
|
72
|
+
user: (value: SubscribedUserInput) => T;
|
|
73
|
+
group: (value: SubscribedGroupInput) => T;
|
|
74
|
+
iam: (value: SubscribedIamPrincipalInput) => T;
|
|
75
|
+
_: (name: string, value: any) => T;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export interface CreateSubscriptionRequestInput {
|
|
82
|
+
/**
|
|
83
|
+
* <p>The ID of the Amazon DataZone domain in which the subscription request is created.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
domainIdentifier: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The Amazon DataZone principals for whom the subscription request is created.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
subscribedPrincipals: SubscribedPrincipalInput[] | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
subscribedListings: SubscribedListingInput[] | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The reason for the subscription request.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
requestReason: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
clientToken?: string | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The metadata form included in the subscription request.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
metadataForms?: FormInput[] | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The asset permissions of the subscription request.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
assetPermissions?: AssetPermission[] | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The asset scopes of the subscription request.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
assetScopes?: AcceptedAssetScope[] | undefined;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export interface CreateSubscriptionRequestOutput {
|
|
127
|
+
/**
|
|
128
|
+
* <p>The ID of the subscription request.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
id: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p>The Amazon DataZone user who created the subscription request.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
createdBy: string | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>The Amazon DataZone user who updated the subscription request.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
updatedBy?: string | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* <p>The ID of the Amazon DataZone domain in whcih the subscription request is created.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
domainId: string | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The status of the subscription request.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
status: SubscriptionRequestStatus | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>A timestamp of when the subscription request is created.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
createdAt: Date | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The timestamp of when the subscription request was updated.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
updatedAt: Date | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* <p>The reason for the subscription request.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
requestReason: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>The subscribed principals of the subscription request.</p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
subscribedListings: SubscribedListing[] | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* <p>The ID of the reviewer of the subscription request.</p>
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
reviewerId?: string | undefined;
|
|
182
|
+
/**
|
|
183
|
+
* <p>The decision comment of the subscription request.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
decisionComment?: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The ID of the existing subscription.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
existingSubscriptionId?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The metadata form included in the subscription request.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
metadataForms?: FormOutput[] | undefined;
|
|
197
|
+
}
|
|
3
198
|
/**
|
|
4
199
|
* <p>The details of the subscription target configuration.</p>
|
|
5
200
|
* @public
|
|
@@ -9479,128 +9674,3 @@ export interface GlossaryTermItem {
|
|
|
9479
9674
|
*/
|
|
9480
9675
|
additionalAttributes?: GlossaryTermItemAdditionalAttributes | undefined;
|
|
9481
9676
|
}
|
|
9482
|
-
/**
|
|
9483
|
-
* <p>The details of the search results.</p>
|
|
9484
|
-
* @public
|
|
9485
|
-
*/
|
|
9486
|
-
export type SearchInventoryResultItem = SearchInventoryResultItem.AssetItemMember | SearchInventoryResultItem.DataProductItemMember | SearchInventoryResultItem.GlossaryItemMember | SearchInventoryResultItem.GlossaryTermItemMember | SearchInventoryResultItem.$UnknownMember;
|
|
9487
|
-
/**
|
|
9488
|
-
* @public
|
|
9489
|
-
*/
|
|
9490
|
-
export declare namespace SearchInventoryResultItem {
|
|
9491
|
-
/**
|
|
9492
|
-
* <p>The glossary item included in the search results.</p>
|
|
9493
|
-
* @public
|
|
9494
|
-
*/
|
|
9495
|
-
interface GlossaryItemMember {
|
|
9496
|
-
glossaryItem: GlossaryItem;
|
|
9497
|
-
glossaryTermItem?: never;
|
|
9498
|
-
assetItem?: never;
|
|
9499
|
-
dataProductItem?: never;
|
|
9500
|
-
$unknown?: never;
|
|
9501
|
-
}
|
|
9502
|
-
/**
|
|
9503
|
-
* <p>The glossary term item included in the search results.</p>
|
|
9504
|
-
* @public
|
|
9505
|
-
*/
|
|
9506
|
-
interface GlossaryTermItemMember {
|
|
9507
|
-
glossaryItem?: never;
|
|
9508
|
-
glossaryTermItem: GlossaryTermItem;
|
|
9509
|
-
assetItem?: never;
|
|
9510
|
-
dataProductItem?: never;
|
|
9511
|
-
$unknown?: never;
|
|
9512
|
-
}
|
|
9513
|
-
/**
|
|
9514
|
-
* <p>The asset item included in the search results.</p>
|
|
9515
|
-
* @public
|
|
9516
|
-
*/
|
|
9517
|
-
interface AssetItemMember {
|
|
9518
|
-
glossaryItem?: never;
|
|
9519
|
-
glossaryTermItem?: never;
|
|
9520
|
-
assetItem: AssetItem;
|
|
9521
|
-
dataProductItem?: never;
|
|
9522
|
-
$unknown?: never;
|
|
9523
|
-
}
|
|
9524
|
-
/**
|
|
9525
|
-
* <p>The data product.</p>
|
|
9526
|
-
* @public
|
|
9527
|
-
*/
|
|
9528
|
-
interface DataProductItemMember {
|
|
9529
|
-
glossaryItem?: never;
|
|
9530
|
-
glossaryTermItem?: never;
|
|
9531
|
-
assetItem?: never;
|
|
9532
|
-
dataProductItem: DataProductResultItem;
|
|
9533
|
-
$unknown?: never;
|
|
9534
|
-
}
|
|
9535
|
-
/**
|
|
9536
|
-
* @public
|
|
9537
|
-
*/
|
|
9538
|
-
interface $UnknownMember {
|
|
9539
|
-
glossaryItem?: never;
|
|
9540
|
-
glossaryTermItem?: never;
|
|
9541
|
-
assetItem?: never;
|
|
9542
|
-
dataProductItem?: never;
|
|
9543
|
-
$unknown: [string, any];
|
|
9544
|
-
}
|
|
9545
|
-
/**
|
|
9546
|
-
* @deprecated unused in schema-serde mode.
|
|
9547
|
-
*
|
|
9548
|
-
*/
|
|
9549
|
-
interface Visitor<T> {
|
|
9550
|
-
glossaryItem: (value: GlossaryItem) => T;
|
|
9551
|
-
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
9552
|
-
assetItem: (value: AssetItem) => T;
|
|
9553
|
-
dataProductItem: (value: DataProductResultItem) => T;
|
|
9554
|
-
_: (name: string, value: any) => T;
|
|
9555
|
-
}
|
|
9556
|
-
}
|
|
9557
|
-
/**
|
|
9558
|
-
* @public
|
|
9559
|
-
*/
|
|
9560
|
-
export interface SearchOutput {
|
|
9561
|
-
/**
|
|
9562
|
-
* <p>The results of the <code>Search</code> action.</p>
|
|
9563
|
-
* @public
|
|
9564
|
-
*/
|
|
9565
|
-
items?: SearchInventoryResultItem[] | undefined;
|
|
9566
|
-
/**
|
|
9567
|
-
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>Search</code> to list the next set of results.</p>
|
|
9568
|
-
* @public
|
|
9569
|
-
*/
|
|
9570
|
-
nextToken?: string | undefined;
|
|
9571
|
-
/**
|
|
9572
|
-
* <p>Total number of search results.</p>
|
|
9573
|
-
* @public
|
|
9574
|
-
*/
|
|
9575
|
-
totalMatchCount?: number | undefined;
|
|
9576
|
-
}
|
|
9577
|
-
/**
|
|
9578
|
-
* @public
|
|
9579
|
-
*/
|
|
9580
|
-
export interface SearchGroupProfilesInput {
|
|
9581
|
-
/**
|
|
9582
|
-
* <p>The identifier of the Amazon DataZone domain in which you want to search group profiles.</p>
|
|
9583
|
-
* @public
|
|
9584
|
-
*/
|
|
9585
|
-
domainIdentifier: string | undefined;
|
|
9586
|
-
/**
|
|
9587
|
-
* <p>The group type for which to search.</p>
|
|
9588
|
-
* @public
|
|
9589
|
-
*/
|
|
9590
|
-
groupType: GroupSearchType | undefined;
|
|
9591
|
-
/**
|
|
9592
|
-
* <p>Specifies the text for which to search.</p>
|
|
9593
|
-
* @public
|
|
9594
|
-
*/
|
|
9595
|
-
searchText?: string | undefined;
|
|
9596
|
-
/**
|
|
9597
|
-
* <p>The maximum number of results to return in a single call to <code>SearchGroupProfiles</code>. When the number of results 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>SearchGroupProfiles</code> to list the next set of results. </p>
|
|
9598
|
-
* @public
|
|
9599
|
-
*/
|
|
9600
|
-
maxResults?: number | undefined;
|
|
9601
|
-
/**
|
|
9602
|
-
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchGroupProfiles</code> to list the next set of results.</p>
|
|
9603
|
-
* @public
|
|
9604
|
-
*/
|
|
9605
|
-
nextToken?: string | undefined;
|
|
9606
|
-
}
|
|
@@ -1,6 +1,131 @@
|
|
|
1
|
-
import type { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, FormTypeStatus, GraphEntityType, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
|
|
2
|
-
import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, GrantedEntity, Model, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, UserProfileDetails } from "./models_0";
|
|
3
|
-
import type { DataProductListingItem, Filter, Import, RelationPattern, SearchInItem, SearchSort, SubscriptionTargetForm } from "./models_1";
|
|
1
|
+
import type { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, FormTypeStatus, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
|
|
2
|
+
import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormEntryOutput, FormOutput, GrantedEntity, Model, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, UserProfileDetails } from "./models_0";
|
|
3
|
+
import type { DataProductListingItem, DataProductResultItem, Filter, GlossaryItem, GlossaryTermItem, Import, RelationPattern, SearchInItem, SearchSort, SubscriptionTargetForm } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The details of the search results.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type SearchInventoryResultItem = SearchInventoryResultItem.AssetItemMember | SearchInventoryResultItem.DataProductItemMember | SearchInventoryResultItem.GlossaryItemMember | SearchInventoryResultItem.GlossaryTermItemMember | SearchInventoryResultItem.$UnknownMember;
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export declare namespace SearchInventoryResultItem {
|
|
13
|
+
/**
|
|
14
|
+
* <p>The glossary item included in the search results.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
interface GlossaryItemMember {
|
|
18
|
+
glossaryItem: GlossaryItem;
|
|
19
|
+
glossaryTermItem?: never;
|
|
20
|
+
assetItem?: never;
|
|
21
|
+
dataProductItem?: never;
|
|
22
|
+
$unknown?: never;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* <p>The glossary term item included in the search results.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
interface GlossaryTermItemMember {
|
|
29
|
+
glossaryItem?: never;
|
|
30
|
+
glossaryTermItem: GlossaryTermItem;
|
|
31
|
+
assetItem?: never;
|
|
32
|
+
dataProductItem?: never;
|
|
33
|
+
$unknown?: never;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* <p>The asset item included in the search results.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
interface AssetItemMember {
|
|
40
|
+
glossaryItem?: never;
|
|
41
|
+
glossaryTermItem?: never;
|
|
42
|
+
assetItem: AssetItem;
|
|
43
|
+
dataProductItem?: never;
|
|
44
|
+
$unknown?: never;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p>The data product.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
interface DataProductItemMember {
|
|
51
|
+
glossaryItem?: never;
|
|
52
|
+
glossaryTermItem?: never;
|
|
53
|
+
assetItem?: never;
|
|
54
|
+
dataProductItem: DataProductResultItem;
|
|
55
|
+
$unknown?: never;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
interface $UnknownMember {
|
|
61
|
+
glossaryItem?: never;
|
|
62
|
+
glossaryTermItem?: never;
|
|
63
|
+
assetItem?: never;
|
|
64
|
+
dataProductItem?: never;
|
|
65
|
+
$unknown: [string, any];
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated unused in schema-serde mode.
|
|
69
|
+
*
|
|
70
|
+
*/
|
|
71
|
+
interface Visitor<T> {
|
|
72
|
+
glossaryItem: (value: GlossaryItem) => T;
|
|
73
|
+
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
74
|
+
assetItem: (value: AssetItem) => T;
|
|
75
|
+
dataProductItem: (value: DataProductResultItem) => T;
|
|
76
|
+
_: (name: string, value: any) => T;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface SearchOutput {
|
|
83
|
+
/**
|
|
84
|
+
* <p>The results of the <code>Search</code> action.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
items?: SearchInventoryResultItem[] | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>Search</code> to list the next set of results.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
nextToken?: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>Total number of search results.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
totalMatchCount?: number | undefined;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export interface SearchGroupProfilesInput {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The identifier of the Amazon DataZone domain in which you want to search group profiles.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
domainIdentifier: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The group type for which to search.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
groupType: GroupSearchType | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>Specifies the text for which to search.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
searchText?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The maximum number of results to return in a single call to <code>SearchGroupProfiles</code>. When the number of results 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>SearchGroupProfiles</code> to list the next set of results. </p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
maxResults?: number | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchGroupProfiles</code> to list the next set of results.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
nextToken?: string | undefined;
|
|
128
|
+
}
|
|
4
129
|
/**
|
|
5
130
|
* <p>The details of a group profile.</p>
|
|
6
131
|
* @public
|
|
@@ -352,6 +352,9 @@ export declare var IsNullExpression$: StaticStructureSchema;
|
|
|
352
352
|
export declare var JobRunError$: StaticStructureSchema;
|
|
353
353
|
export declare var JobRunSummary$: StaticStructureSchema;
|
|
354
354
|
export declare var LakeFormationConfiguration$: StaticStructureSchema;
|
|
355
|
+
export declare var LakehousePropertiesInput$: StaticStructureSchema;
|
|
356
|
+
export declare var LakehousePropertiesOutput$: StaticStructureSchema;
|
|
357
|
+
export declare var LakehousePropertiesPatch$: StaticStructureSchema;
|
|
355
358
|
export declare var LessThanExpression$: StaticStructureSchema;
|
|
356
359
|
export declare var LessThanOrEqualToExpression$: StaticStructureSchema;
|
|
357
360
|
export declare var LikeExpression$: StaticStructureSchema;
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateSubscriptionRequestInput,
|
|
10
10
|
CreateSubscriptionRequestOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateSubscriptionRequestCommandInput
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { SearchOutput } from "../models/
|
|
9
|
-
import { SearchInput } from "../models/models_2";
|
|
8
|
+
import { SearchInput, SearchOutput } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface SearchCommandInput extends SearchInput {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
SearchGroupProfilesInput,
|
|
10
|
+
SearchGroupProfilesOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface SearchGroupProfilesCommandInput
|