@aws-sdk/client-datazone 3.921.0 → 3.925.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 +38 -8
- package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
- package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +3 -8
- package/dist-es/models/models_2.js +11 -1
- package/dist-es/protocols/Aws_restJson1.js +20 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectMembershipCommand.d.ts +1 -1
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +18 -0
- package/dist-types/commands/GetProjectCommand.d.ts +7 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +9 -0
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -2
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +43 -30
- package/dist-types/models/models_1.d.ts +102 -140
- package/dist-types/models/models_2.d.ts +181 -2
- package/dist-types/ts3.4/commands/CreateProjectMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +13 -7
- package/dist-types/ts3.4/models/models_1.d.ts +23 -35
- package/dist-types/ts3.4/models/models_2.d.ts +47 -1
- package/package.json +14 -14
|
@@ -8862,6 +8862,11 @@ export interface CreateProjectInput {
|
|
|
8862
8862
|
* @public
|
|
8863
8863
|
*/
|
|
8864
8864
|
description?: string | undefined;
|
|
8865
|
+
/**
|
|
8866
|
+
* <p>The resource tags of the project.</p>
|
|
8867
|
+
* @public
|
|
8868
|
+
*/
|
|
8869
|
+
resourceTags?: Record<string, string> | undefined;
|
|
8865
8870
|
/**
|
|
8866
8871
|
* <p>The glossary terms that can be used in this Amazon DataZone project.</p>
|
|
8867
8872
|
* @public
|
|
@@ -8946,6 +8951,39 @@ export declare const ProjectStatus: {
|
|
|
8946
8951
|
* @public
|
|
8947
8952
|
*/
|
|
8948
8953
|
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
8954
|
+
/**
|
|
8955
|
+
* @public
|
|
8956
|
+
* @enum
|
|
8957
|
+
*/
|
|
8958
|
+
export declare const ResourceTagSource: {
|
|
8959
|
+
readonly PROJECT: "PROJECT";
|
|
8960
|
+
readonly PROJECT_PROFILE: "PROJECT_PROFILE";
|
|
8961
|
+
};
|
|
8962
|
+
/**
|
|
8963
|
+
* @public
|
|
8964
|
+
*/
|
|
8965
|
+
export type ResourceTagSource = (typeof ResourceTagSource)[keyof typeof ResourceTagSource];
|
|
8966
|
+
/**
|
|
8967
|
+
* <p>The resource tag of the project.</p>
|
|
8968
|
+
* @public
|
|
8969
|
+
*/
|
|
8970
|
+
export interface ResourceTag {
|
|
8971
|
+
/**
|
|
8972
|
+
* <p>The key of the resource tag of the project.</p>
|
|
8973
|
+
* @public
|
|
8974
|
+
*/
|
|
8975
|
+
key: string | undefined;
|
|
8976
|
+
/**
|
|
8977
|
+
* <p>The value of the resource tag of the project.</p>
|
|
8978
|
+
* @public
|
|
8979
|
+
*/
|
|
8980
|
+
value: string | undefined;
|
|
8981
|
+
/**
|
|
8982
|
+
* <p>The source of the resource tag of the project.</p>
|
|
8983
|
+
* @public
|
|
8984
|
+
*/
|
|
8985
|
+
source: ResourceTagSource | undefined;
|
|
8986
|
+
}
|
|
8949
8987
|
/**
|
|
8950
8988
|
* @public
|
|
8951
8989
|
*/
|
|
@@ -8995,6 +9033,11 @@ export interface CreateProjectOutput {
|
|
|
8995
9033
|
* @public
|
|
8996
9034
|
*/
|
|
8997
9035
|
lastUpdatedAt?: Date | undefined;
|
|
9036
|
+
/**
|
|
9037
|
+
* <p>The resource tags of the project.</p>
|
|
9038
|
+
* @public
|
|
9039
|
+
*/
|
|
9040
|
+
resourceTags?: ResourceTag[] | undefined;
|
|
8998
9041
|
/**
|
|
8999
9042
|
* <p>The glossary terms that can be used in the project.</p>
|
|
9000
9043
|
* @public
|
|
@@ -9078,36 +9121,6 @@ export declare namespace Member {
|
|
|
9078
9121
|
}
|
|
9079
9122
|
const visit: <T>(value: Member, visitor: Visitor<T>) => T;
|
|
9080
9123
|
}
|
|
9081
|
-
/**
|
|
9082
|
-
* @public
|
|
9083
|
-
*/
|
|
9084
|
-
export interface CreateProjectMembershipInput {
|
|
9085
|
-
/**
|
|
9086
|
-
* <p>The ID of the Amazon DataZone domain in which project membership is created.</p>
|
|
9087
|
-
* @public
|
|
9088
|
-
*/
|
|
9089
|
-
domainIdentifier: string | undefined;
|
|
9090
|
-
/**
|
|
9091
|
-
* <p>The ID of the project for which this project membership was created.</p>
|
|
9092
|
-
* @public
|
|
9093
|
-
*/
|
|
9094
|
-
projectIdentifier: string | undefined;
|
|
9095
|
-
/**
|
|
9096
|
-
* <p>The project member whose project membership was created.</p>
|
|
9097
|
-
* @public
|
|
9098
|
-
*/
|
|
9099
|
-
member: Member | undefined;
|
|
9100
|
-
/**
|
|
9101
|
-
* <p>The designation of the project membership.</p>
|
|
9102
|
-
* @public
|
|
9103
|
-
*/
|
|
9104
|
-
designation: UserDesignation | undefined;
|
|
9105
|
-
}
|
|
9106
|
-
/**
|
|
9107
|
-
* @public
|
|
9108
|
-
*/
|
|
9109
|
-
export interface CreateProjectMembershipOutput {
|
|
9110
|
-
}
|
|
9111
9124
|
/**
|
|
9112
9125
|
* @internal
|
|
9113
9126
|
*/
|
|
@@ -1,4 +1,34 @@
|
|
|
1
|
-
import { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, AwsAccount, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionScope, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, ListingStatus, ManagedPolicyType, MatchRationaleItem, Member, Model, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, ResolutionStrategy, Resource, RuleScopeSelectionMode, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, UserDesignation } from "./models_0";
|
|
1
|
+
import { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, AwsAccount, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionScope, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, ListingStatus, ManagedPolicyType, MatchRationaleItem, Member, Model, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, ResolutionStrategy, Resource, ResourceTag, RuleScopeSelectionMode, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, UserDesignation } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface CreateProjectMembershipInput {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The ID of the Amazon DataZone domain in which project membership is created.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
domainIdentifier: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ID of the project for which this project membership was created.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
projectIdentifier: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The project member whose project membership was created.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
member: Member | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The designation of the project membership.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
designation: UserDesignation | undefined;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface CreateProjectMembershipOutput {
|
|
31
|
+
}
|
|
2
32
|
/**
|
|
3
33
|
* <p>The Amazon Web Services Region.</p>
|
|
4
34
|
* @public
|
|
@@ -151,6 +181,27 @@ export interface EnvironmentConfiguration {
|
|
|
151
181
|
*/
|
|
152
182
|
deploymentOrder?: number | undefined;
|
|
153
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* <p>The resource tag parameter of the project profile.</p>
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
export interface ResourceTagParameter {
|
|
189
|
+
/**
|
|
190
|
+
* <p>The key of the resource tag parameter of the project profile.</p>
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
key: string | undefined;
|
|
194
|
+
/**
|
|
195
|
+
* <p>The value of the resource tag parameter key of the project profile.</p>
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
value: string | undefined;
|
|
199
|
+
/**
|
|
200
|
+
* <p>Specifies whether the value of the resource tag parameter of the project profile is editable at the project level.</p>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
isValueEditable: boolean | undefined;
|
|
204
|
+
}
|
|
154
205
|
/**
|
|
155
206
|
* @public
|
|
156
207
|
* @enum
|
|
@@ -187,6 +238,21 @@ export interface CreateProjectProfileInput {
|
|
|
187
238
|
* @public
|
|
188
239
|
*/
|
|
189
240
|
status?: Status | undefined;
|
|
241
|
+
/**
|
|
242
|
+
* <p>The resource tags of the project profile.</p>
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
projectResourceTags?: ResourceTagParameter[] | undefined;
|
|
246
|
+
/**
|
|
247
|
+
* <p>Specifies whether custom project resource tags are supported.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
allowCustomProjectResourceTags?: boolean | undefined;
|
|
251
|
+
/**
|
|
252
|
+
* <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
projectResourceTagsDescription?: string | undefined;
|
|
190
256
|
/**
|
|
191
257
|
* <p>Environment configurations of the project profile.</p>
|
|
192
258
|
* @public
|
|
@@ -227,6 +293,21 @@ export interface CreateProjectProfileOutput {
|
|
|
227
293
|
* @public
|
|
228
294
|
*/
|
|
229
295
|
status?: Status | undefined;
|
|
296
|
+
/**
|
|
297
|
+
* <p>The resource tags of the project profile.</p>
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
projectResourceTags?: ResourceTagParameter[] | undefined;
|
|
301
|
+
/**
|
|
302
|
+
* <p>Specifies whether custom project resource tags are supported.</p>
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
allowCustomProjectResourceTags?: boolean | undefined;
|
|
306
|
+
/**
|
|
307
|
+
* <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
|
|
308
|
+
* @public
|
|
309
|
+
*/
|
|
310
|
+
projectResourceTagsDescription?: string | undefined;
|
|
230
311
|
/**
|
|
231
312
|
* <p>Environment configurations of a project profile.</p>
|
|
232
313
|
* @public
|
|
@@ -5328,6 +5409,11 @@ export interface GetProjectOutput {
|
|
|
5328
5409
|
* @public
|
|
5329
5410
|
*/
|
|
5330
5411
|
lastUpdatedAt?: Date | undefined;
|
|
5412
|
+
/**
|
|
5413
|
+
* <p>The resource tags of the project.</p>
|
|
5414
|
+
* @public
|
|
5415
|
+
*/
|
|
5416
|
+
resourceTags?: ResourceTag[] | undefined;
|
|
5331
5417
|
/**
|
|
5332
5418
|
* <p>The business glossary terms that can be used in the project.</p>
|
|
5333
5419
|
* @public
|
|
@@ -5398,6 +5484,21 @@ export interface GetProjectProfileOutput {
|
|
|
5398
5484
|
* @public
|
|
5399
5485
|
*/
|
|
5400
5486
|
status?: Status | undefined;
|
|
5487
|
+
/**
|
|
5488
|
+
* <p>The resource tags of the project profile.</p>
|
|
5489
|
+
* @public
|
|
5490
|
+
*/
|
|
5491
|
+
projectResourceTags?: ResourceTagParameter[] | undefined;
|
|
5492
|
+
/**
|
|
5493
|
+
* <p>Specifies whether custom project resource tags are supported.</p>
|
|
5494
|
+
* @public
|
|
5495
|
+
*/
|
|
5496
|
+
allowCustomProjectResourceTags?: boolean | undefined;
|
|
5497
|
+
/**
|
|
5498
|
+
* <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
|
|
5499
|
+
* @public
|
|
5500
|
+
*/
|
|
5501
|
+
projectResourceTagsDescription?: string | undefined;
|
|
5401
5502
|
/**
|
|
5402
5503
|
* <p>The environment configurations of the project profile.</p>
|
|
5403
5504
|
* @public
|
|
@@ -8834,137 +8935,6 @@ export interface SubscriptionSummary {
|
|
|
8834
8935
|
*/
|
|
8835
8936
|
retainPermissions?: boolean | undefined;
|
|
8836
8937
|
}
|
|
8837
|
-
/**
|
|
8838
|
-
* @public
|
|
8839
|
-
*/
|
|
8840
|
-
export interface ListSubscriptionsOutput {
|
|
8841
|
-
/**
|
|
8842
|
-
* <p>The results of the <code>ListSubscriptions</code> action.</p>
|
|
8843
|
-
* @public
|
|
8844
|
-
*/
|
|
8845
|
-
items: SubscriptionSummary[] | undefined;
|
|
8846
|
-
/**
|
|
8847
|
-
* <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>
|
|
8848
|
-
* @public
|
|
8849
|
-
*/
|
|
8850
|
-
nextToken?: string | undefined;
|
|
8851
|
-
}
|
|
8852
|
-
/**
|
|
8853
|
-
* @public
|
|
8854
|
-
*/
|
|
8855
|
-
export interface ListSubscriptionTargetsInput {
|
|
8856
|
-
/**
|
|
8857
|
-
* <p>The identifier of the Amazon DataZone domain where you want to list subscription targets.</p>
|
|
8858
|
-
* @public
|
|
8859
|
-
*/
|
|
8860
|
-
domainIdentifier: string | undefined;
|
|
8861
|
-
/**
|
|
8862
|
-
* <p>The identifier of the environment where you want to list subscription targets.</p>
|
|
8863
|
-
* @public
|
|
8864
|
-
*/
|
|
8865
|
-
environmentIdentifier: string | undefined;
|
|
8866
|
-
/**
|
|
8867
|
-
* <p>Specifies the way in which the results of this action are to be sorted.</p>
|
|
8868
|
-
* @public
|
|
8869
|
-
*/
|
|
8870
|
-
sortBy?: SortKey | undefined;
|
|
8871
|
-
/**
|
|
8872
|
-
* <p>Specifies the sort order for the results of this action.</p>
|
|
8873
|
-
* @public
|
|
8874
|
-
*/
|
|
8875
|
-
sortOrder?: SortOrder | undefined;
|
|
8876
|
-
/**
|
|
8877
|
-
* <p>The maximum number of subscription targets to return in a single call to <code>ListSubscriptionTargets</code>. When the number of subscription targets 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>ListSubscriptionTargets</code> to list the next set of subscription targets. </p>
|
|
8878
|
-
* @public
|
|
8879
|
-
*/
|
|
8880
|
-
maxResults?: number | undefined;
|
|
8881
|
-
/**
|
|
8882
|
-
* <p>When the number of subscription targets 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 targets, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionTargets</code> to list the next set of subscription targets.</p>
|
|
8883
|
-
* @public
|
|
8884
|
-
*/
|
|
8885
|
-
nextToken?: string | undefined;
|
|
8886
|
-
}
|
|
8887
|
-
/**
|
|
8888
|
-
* <p>The details of the subscription target.</p>
|
|
8889
|
-
* @public
|
|
8890
|
-
*/
|
|
8891
|
-
export interface SubscriptionTargetSummary {
|
|
8892
|
-
/**
|
|
8893
|
-
* <p>The identifier of the subscription target.</p>
|
|
8894
|
-
* @public
|
|
8895
|
-
*/
|
|
8896
|
-
id: string | undefined;
|
|
8897
|
-
/**
|
|
8898
|
-
* <p>The authorized principals included in the subscription target.</p>
|
|
8899
|
-
* @public
|
|
8900
|
-
*/
|
|
8901
|
-
authorizedPrincipals: string[] | undefined;
|
|
8902
|
-
/**
|
|
8903
|
-
* <p>The identifier of the Amazon DataZone domain in which the subscription target exists.</p>
|
|
8904
|
-
* @public
|
|
8905
|
-
*/
|
|
8906
|
-
domainId: string | undefined;
|
|
8907
|
-
/**
|
|
8908
|
-
* <p>The identifier of the project specified in the subscription target.</p>
|
|
8909
|
-
* @public
|
|
8910
|
-
*/
|
|
8911
|
-
projectId: string | undefined;
|
|
8912
|
-
/**
|
|
8913
|
-
* <p>The identifier of the environment of the subscription target.</p>
|
|
8914
|
-
* @public
|
|
8915
|
-
*/
|
|
8916
|
-
environmentId: string | undefined;
|
|
8917
|
-
/**
|
|
8918
|
-
* <p>The name of the subscription target.</p>
|
|
8919
|
-
* @public
|
|
8920
|
-
*/
|
|
8921
|
-
name: string | undefined;
|
|
8922
|
-
/**
|
|
8923
|
-
* <p>The type of the subscription target.</p>
|
|
8924
|
-
* @public
|
|
8925
|
-
*/
|
|
8926
|
-
type: string | undefined;
|
|
8927
|
-
/**
|
|
8928
|
-
* <p>The Amazon DataZone user who created the subscription target.</p>
|
|
8929
|
-
* @public
|
|
8930
|
-
*/
|
|
8931
|
-
createdBy: string | undefined;
|
|
8932
|
-
/**
|
|
8933
|
-
* <p>The Amazon DataZone user who updated the subscription target.</p>
|
|
8934
|
-
* @public
|
|
8935
|
-
*/
|
|
8936
|
-
updatedBy?: string | undefined;
|
|
8937
|
-
/**
|
|
8938
|
-
* <p>The timestamp of when the subscription target was created.</p>
|
|
8939
|
-
* @public
|
|
8940
|
-
*/
|
|
8941
|
-
createdAt: Date | undefined;
|
|
8942
|
-
/**
|
|
8943
|
-
* <p>The timestamp of when the subscription target was updated.</p>
|
|
8944
|
-
* @public
|
|
8945
|
-
*/
|
|
8946
|
-
updatedAt?: Date | undefined;
|
|
8947
|
-
/**
|
|
8948
|
-
* <p>The manage access role specified in the subscription target.</p>
|
|
8949
|
-
* @public
|
|
8950
|
-
*/
|
|
8951
|
-
manageAccessRole?: string | undefined;
|
|
8952
|
-
/**
|
|
8953
|
-
* <p>The asset types included in the subscription target.</p>
|
|
8954
|
-
* @public
|
|
8955
|
-
*/
|
|
8956
|
-
applicableAssetTypes: string[] | undefined;
|
|
8957
|
-
/**
|
|
8958
|
-
* <p>The configuration of the subscription target.</p>
|
|
8959
|
-
* @public
|
|
8960
|
-
*/
|
|
8961
|
-
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
8962
|
-
/**
|
|
8963
|
-
* <p>The provider of the subscription target.</p>
|
|
8964
|
-
* @public
|
|
8965
|
-
*/
|
|
8966
|
-
provider: string | undefined;
|
|
8967
|
-
}
|
|
8968
8938
|
/**
|
|
8969
8939
|
* @internal
|
|
8970
8940
|
*/
|
|
@@ -9289,11 +9259,3 @@ export declare const ListSubscriptionRequestsOutputFilterSensitiveLog: (obj: Lis
|
|
|
9289
9259
|
* @internal
|
|
9290
9260
|
*/
|
|
9291
9261
|
export declare const SubscriptionSummaryFilterSensitiveLog: (obj: SubscriptionSummary) => any;
|
|
9292
|
-
/**
|
|
9293
|
-
* @internal
|
|
9294
|
-
*/
|
|
9295
|
-
export declare const ListSubscriptionsOutputFilterSensitiveLog: (obj: ListSubscriptionsOutput) => any;
|
|
9296
|
-
/**
|
|
9297
|
-
* @internal
|
|
9298
|
-
*/
|
|
9299
|
-
export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: SubscriptionTargetSummary) => any;
|
|
@@ -1,5 +1,136 @@
|
|
|
1
|
-
import { AccountSource, ActionParameters, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionScope, ConnectionType, CustomParameter, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GroupProfileStatus, ManagedPolicyType, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, ResolutionStrategy, Resource, RowFilterExpression, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
|
|
2
|
-
import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, FailureCause, GrantedEntity, Import, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, 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, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GroupProfileStatus, ManagedPolicyType, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, ResolutionStrategy, Resource, ResourceTag, RowFilterExpression, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
|
|
2
|
+
import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, FailureCause, GrantedEntity, Import, ResourceTagParameter, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortKey, SortOrder, Status, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionSummary, SubscriptionTargetForm, TimeSeriesDataPointFormOutput, TimeSeriesEntityType, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ListSubscriptionsOutput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The results of the <code>ListSubscriptions</code> action.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
items: SubscriptionSummary[] | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <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>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
nextToken?: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface ListSubscriptionTargetsInput {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The identifier of the Amazon DataZone domain where you want to list subscription targets.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
domainIdentifier: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The identifier of the environment where you want to list subscription targets.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
environmentIdentifier: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>Specifies the way in which the results of this action are to be sorted.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
sortBy?: SortKey | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>Specifies the sort order for the results of this action.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
sortOrder?: SortOrder | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The maximum number of subscription targets to return in a single call to <code>ListSubscriptionTargets</code>. When the number of subscription targets 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>ListSubscriptionTargets</code> to list the next set of subscription targets. </p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
maxResults?: number | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>When the number of subscription targets 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 targets, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionTargets</code> to list the next set of subscription targets.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
nextToken?: string | undefined;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* <p>The details of the subscription target.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export interface SubscriptionTargetSummary {
|
|
58
|
+
/**
|
|
59
|
+
* <p>The identifier of the subscription target.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
id: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The authorized principals included in the subscription target.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
authorizedPrincipals: string[] | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The identifier of the Amazon DataZone domain in which the subscription target exists.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
domainId: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The identifier of the project specified in the subscription target.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
projectId: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The identifier of the environment of the subscription target.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
environmentId: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>The name of the subscription target.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
name: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The type of the subscription target.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
type: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The Amazon DataZone user who created the subscription target.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
createdBy: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The Amazon DataZone user who updated the subscription target.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
updatedBy?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>The timestamp of when the subscription target was created.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
createdAt: Date | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The timestamp of when the subscription target was updated.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
updatedAt?: Date | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>The manage access role specified in the subscription target.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
manageAccessRole?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The asset types included in the subscription target.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
applicableAssetTypes: string[] | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The configuration of the subscription target.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* <p>The provider of the subscription target.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
provider: string | undefined;
|
|
133
|
+
}
|
|
3
134
|
/**
|
|
4
135
|
* @public
|
|
5
136
|
*/
|
|
@@ -2686,6 +2817,11 @@ export interface UpdateProjectInput {
|
|
|
2686
2817
|
* @public
|
|
2687
2818
|
*/
|
|
2688
2819
|
description?: string | undefined;
|
|
2820
|
+
/**
|
|
2821
|
+
* <p>The resource tags of the project.</p>
|
|
2822
|
+
* @public
|
|
2823
|
+
*/
|
|
2824
|
+
resourceTags?: Record<string, string> | undefined;
|
|
2689
2825
|
/**
|
|
2690
2826
|
* <p>The glossary terms to be updated as part of the <code>UpdateProject</code> action.</p>
|
|
2691
2827
|
* @public
|
|
@@ -2761,6 +2897,11 @@ export interface UpdateProjectOutput {
|
|
|
2761
2897
|
* @public
|
|
2762
2898
|
*/
|
|
2763
2899
|
lastUpdatedAt?: Date | undefined;
|
|
2900
|
+
/**
|
|
2901
|
+
* <p>The resource tags of the project.</p>
|
|
2902
|
+
* @public
|
|
2903
|
+
*/
|
|
2904
|
+
resourceTags?: ResourceTag[] | undefined;
|
|
2764
2905
|
/**
|
|
2765
2906
|
* <p>The glossary terms of the project that are to be updated.</p>
|
|
2766
2907
|
* @public
|
|
@@ -2816,6 +2957,21 @@ export interface UpdateProjectProfileInput {
|
|
|
2816
2957
|
* @public
|
|
2817
2958
|
*/
|
|
2818
2959
|
status?: Status | undefined;
|
|
2960
|
+
/**
|
|
2961
|
+
* <p>The resource tags of the project profile.</p>
|
|
2962
|
+
* @public
|
|
2963
|
+
*/
|
|
2964
|
+
projectResourceTags?: ResourceTagParameter[] | undefined;
|
|
2965
|
+
/**
|
|
2966
|
+
* <p>Specifies whether custom project resource tags are supported.</p>
|
|
2967
|
+
* @public
|
|
2968
|
+
*/
|
|
2969
|
+
allowCustomProjectResourceTags?: boolean | undefined;
|
|
2970
|
+
/**
|
|
2971
|
+
* <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
|
|
2972
|
+
* @public
|
|
2973
|
+
*/
|
|
2974
|
+
projectResourceTagsDescription?: string | undefined;
|
|
2819
2975
|
/**
|
|
2820
2976
|
* <p>The environment configurations of a project profile.</p>
|
|
2821
2977
|
* @public
|
|
@@ -2856,6 +3012,21 @@ export interface UpdateProjectProfileOutput {
|
|
|
2856
3012
|
* @public
|
|
2857
3013
|
*/
|
|
2858
3014
|
status?: Status | undefined;
|
|
3015
|
+
/**
|
|
3016
|
+
* <p>The resource tags of the project profile.</p>
|
|
3017
|
+
* @public
|
|
3018
|
+
*/
|
|
3019
|
+
projectResourceTags?: ResourceTagParameter[] | undefined;
|
|
3020
|
+
/**
|
|
3021
|
+
* <p>Specifies whether custom project resource tags are supported.</p>
|
|
3022
|
+
* @public
|
|
3023
|
+
*/
|
|
3024
|
+
allowCustomProjectResourceTags?: boolean | undefined;
|
|
3025
|
+
/**
|
|
3026
|
+
* <p>Field viewable through the UI that provides a project user with the allowed resource tag specifications.</p>
|
|
3027
|
+
* @public
|
|
3028
|
+
*/
|
|
3029
|
+
projectResourceTagsDescription?: string | undefined;
|
|
2859
3030
|
/**
|
|
2860
3031
|
* <p>The environment configurations of a project profile.</p>
|
|
2861
3032
|
* @public
|
|
@@ -3834,6 +4005,14 @@ export interface UpdateAssetFilterOutput {
|
|
|
3834
4005
|
*/
|
|
3835
4006
|
effectiveRowFilter?: string | undefined;
|
|
3836
4007
|
}
|
|
4008
|
+
/**
|
|
4009
|
+
* @internal
|
|
4010
|
+
*/
|
|
4011
|
+
export declare const ListSubscriptionsOutputFilterSensitiveLog: (obj: ListSubscriptionsOutput) => any;
|
|
4012
|
+
/**
|
|
4013
|
+
* @internal
|
|
4014
|
+
*/
|
|
4015
|
+
export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: SubscriptionTargetSummary) => any;
|
|
3837
4016
|
/**
|
|
3838
4017
|
* @internal
|
|
3839
4018
|
*/
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListSubscriptionTargetsInput,
|
|
10
|
+
ListSubscriptionTargetsOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListSubscriptionTargetsCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListSubscriptionsOutput,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListSubscriptionsInput } from "../models/models_1";
|
|
9
|
+
import { ListSubscriptionsOutput } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListSubscriptionsCommandInput extends ListSubscriptionsInput {}
|