@aws-sdk/client-datazone 3.967.0 → 3.968.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.
Files changed (33) hide show
  1. package/dist-cjs/index.js +44 -22
  2. package/dist-es/models/enums.js +4 -0
  3. package/dist-es/schemas/schemas_0.js +37 -22
  4. package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +3 -0
  5. package/dist-types/commands/CancelSubscriptionCommand.d.ts +3 -0
  6. package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -0
  8. package/dist-types/commands/GetDataProductCommand.d.ts +1 -1
  9. package/dist-types/commands/GetSubscriptionCommand.d.ts +3 -0
  10. package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +3 -0
  11. package/dist-types/commands/GetSubscriptionTargetCommand.d.ts +1 -0
  12. package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -0
  13. package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +4 -0
  14. package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -0
  15. package/dist-types/commands/ListSubscriptionsCommand.d.ts +4 -0
  16. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +3 -0
  17. package/dist-types/commands/RevokeSubscriptionCommand.d.ts +3 -0
  18. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +3 -0
  20. package/dist-types/commands/UpdateSubscriptionTargetCommand.d.ts +2 -0
  21. package/dist-types/models/enums.d.ts +12 -0
  22. package/dist-types/models/models_0.d.ts +67 -98
  23. package/dist-types/models/models_1.d.ts +122 -22
  24. package/dist-types/models/models_2.d.ts +31 -1
  25. package/dist-types/schemas/schemas_0.d.ts +2 -0
  26. package/dist-types/ts3.4/commands/GetDataProductCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +35 -21
  30. package/dist-types/ts3.4/models/models_1.d.ts +29 -5
  31. package/dist-types/ts3.4/models/models_2.d.ts +8 -0
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  33. package/package.json +21 -21
@@ -1,4 +1,4 @@
1
- import { AcceptRuleBehavior, AttributeEntityType, AuthenticationType, AuthType, ChangeAction, ComputeEnvironments, ConfigurableActionTypeAuthorization, ConnectionScope, ConnectionStatus, ConnectionType, DataProductItemType, DataProductStatus, DataSourceErrorType, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, DeploymentMode, DeploymentStatus, DeploymentType, DomainStatus, DomainUnitDesignation, DomainVersion, EnableSetting, EntityType, EnvironmentStatus, FilterExpressionType, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GlueConnectionType, GovernanceType, GovernedEntityType, GroupProfileStatus, HyperPodOrchestrator, ListingStatus, ManagedPolicyType, OAuth2GrantType, OverallDeploymentStatus, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, Timezone, UserAssignment, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
1
+ import { AcceptRuleBehavior, AttributeEntityType, AuthenticationType, AuthType, ChangeAction, ComputeEnvironments, ConfigurableActionTypeAuthorization, ConnectionScope, ConnectionStatus, ConnectionType, DataProductItemType, DataProductStatus, DataSourceErrorType, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, DeploymentMode, DeploymentStatus, DeploymentType, DomainStatus, DomainUnitDesignation, DomainVersion, EnableSetting, EntityType, EnvironmentStatus, FilterExpressionType, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GlueConnectionType, GovernanceType, GovernedEntityType, GroupProfileStatus, HyperPodOrchestrator, ListingStatus, ManagedPolicyType, OAuth2GrantType, OverallDeploymentStatus, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, Timezone, UserAssignment, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
2
2
  /**
3
3
  * <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted.</p>
4
4
  * @public
@@ -454,6 +454,17 @@ export interface SubscribedGroup {
454
454
  */
455
455
  name?: string | undefined;
456
456
  }
457
+ /**
458
+ * <p>The IAM principal that subscribes to the asset.</p>
459
+ * @public
460
+ */
461
+ export interface SubscribedIamPrincipal {
462
+ /**
463
+ * <p>The ARN of the subscribed IAM principal.</p>
464
+ * @public
465
+ */
466
+ principalArn?: string | undefined;
467
+ }
457
468
  /**
458
469
  * <p>The project that has the subscription grant.</p>
459
470
  * @public
@@ -572,7 +583,7 @@ export interface SubscribedUser {
572
583
  * <p>The principal that has the subscription grant for the asset.</p>
573
584
  * @public
574
585
  */
575
- export type SubscribedPrincipal = SubscribedPrincipal.GroupMember | SubscribedPrincipal.ProjectMember | SubscribedPrincipal.UserMember | SubscribedPrincipal.$UnknownMember;
586
+ export type SubscribedPrincipal = SubscribedPrincipal.GroupMember | SubscribedPrincipal.IamMember | SubscribedPrincipal.ProjectMember | SubscribedPrincipal.UserMember | SubscribedPrincipal.$UnknownMember;
576
587
  /**
577
588
  * @public
578
589
  */
@@ -585,6 +596,7 @@ export declare namespace SubscribedPrincipal {
585
596
  project: SubscribedProject;
586
597
  user?: never;
587
598
  group?: never;
599
+ iam?: never;
588
600
  $unknown?: never;
589
601
  }
590
602
  /**
@@ -595,6 +607,7 @@ export declare namespace SubscribedPrincipal {
595
607
  project?: never;
596
608
  user: SubscribedUser;
597
609
  group?: never;
610
+ iam?: never;
598
611
  $unknown?: never;
599
612
  }
600
613
  /**
@@ -605,6 +618,18 @@ export declare namespace SubscribedPrincipal {
605
618
  project?: never;
606
619
  user?: never;
607
620
  group: SubscribedGroup;
621
+ iam?: never;
622
+ $unknown?: never;
623
+ }
624
+ /**
625
+ * <p>The subscribed IAM principal.</p>
626
+ * @public
627
+ */
628
+ interface IamMember {
629
+ project?: never;
630
+ user?: never;
631
+ group?: never;
632
+ iam: SubscribedIamPrincipal;
608
633
  $unknown?: never;
609
634
  }
610
635
  /**
@@ -614,6 +639,7 @@ export declare namespace SubscribedPrincipal {
614
639
  project?: never;
615
640
  user?: never;
616
641
  group?: never;
642
+ iam?: never;
617
643
  $unknown: [string, any];
618
644
  }
619
645
  /**
@@ -624,6 +650,7 @@ export declare namespace SubscribedPrincipal {
624
650
  project: (value: SubscribedProject) => T;
625
651
  user: (value: SubscribedUser) => T;
626
652
  group: (value: SubscribedGroup) => T;
653
+ iam: (value: SubscribedIamPrincipal) => T;
627
654
  _: (name: string, value: any) => T;
628
655
  }
629
656
  }
@@ -9548,6 +9575,17 @@ export interface SubscribedGroupInput {
9548
9575
  */
9549
9576
  identifier?: string | undefined;
9550
9577
  }
9578
+ /**
9579
+ * <p>The details of the subscribed IAM principal.</p>
9580
+ * @public
9581
+ */
9582
+ export interface SubscribedIamPrincipalInput {
9583
+ /**
9584
+ * <p>The ARN of the subscribed IAM principal.</p>
9585
+ * @public
9586
+ */
9587
+ identifier?: string | undefined;
9588
+ }
9551
9589
  /**
9552
9590
  * <p>The project that is to be given a subscription grant.</p>
9553
9591
  * @public
@@ -9574,7 +9612,7 @@ export interface SubscribedUserInput {
9574
9612
  * <p>The principal that is to be given a subscriptiong grant.</p>
9575
9613
  * @public
9576
9614
  */
9577
- export type SubscribedPrincipalInput = SubscribedPrincipalInput.GroupMember | SubscribedPrincipalInput.ProjectMember | SubscribedPrincipalInput.UserMember | SubscribedPrincipalInput.$UnknownMember;
9615
+ export type SubscribedPrincipalInput = SubscribedPrincipalInput.GroupMember | SubscribedPrincipalInput.IamMember | SubscribedPrincipalInput.ProjectMember | SubscribedPrincipalInput.UserMember | SubscribedPrincipalInput.$UnknownMember;
9578
9616
  /**
9579
9617
  * @public
9580
9618
  */
@@ -9587,6 +9625,7 @@ export declare namespace SubscribedPrincipalInput {
9587
9625
  project: SubscribedProjectInput;
9588
9626
  user?: never;
9589
9627
  group?: never;
9628
+ iam?: never;
9590
9629
  $unknown?: never;
9591
9630
  }
9592
9631
  /**
@@ -9597,6 +9636,7 @@ export declare namespace SubscribedPrincipalInput {
9597
9636
  project?: never;
9598
9637
  user: SubscribedUserInput;
9599
9638
  group?: never;
9639
+ iam?: never;
9600
9640
  $unknown?: never;
9601
9641
  }
9602
9642
  /**
@@ -9607,6 +9647,18 @@ export declare namespace SubscribedPrincipalInput {
9607
9647
  project?: never;
9608
9648
  user?: never;
9609
9649
  group: SubscribedGroupInput;
9650
+ iam?: never;
9651
+ $unknown?: never;
9652
+ }
9653
+ /**
9654
+ * <p>The subscribed IAM principal.</p>
9655
+ * @public
9656
+ */
9657
+ interface IamMember {
9658
+ project?: never;
9659
+ user?: never;
9660
+ group?: never;
9661
+ iam: SubscribedIamPrincipalInput;
9610
9662
  $unknown?: never;
9611
9663
  }
9612
9664
  /**
@@ -9616,6 +9668,7 @@ export declare namespace SubscribedPrincipalInput {
9616
9668
  project?: never;
9617
9669
  user?: never;
9618
9670
  group?: never;
9671
+ iam?: never;
9619
9672
  $unknown: [string, any];
9620
9673
  }
9621
9674
  /**
@@ -9626,6 +9679,7 @@ export declare namespace SubscribedPrincipalInput {
9626
9679
  project: (value: SubscribedProjectInput) => T;
9627
9680
  user: (value: SubscribedUserInput) => T;
9628
9681
  group: (value: SubscribedGroupInput) => T;
9682
+ iam: (value: SubscribedIamPrincipalInput) => T;
9629
9683
  _: (name: string, value: any) => T;
9630
9684
  }
9631
9685
  }
@@ -9819,6 +9873,11 @@ export interface CreateSubscriptionTargetInput {
9819
9873
  * @public
9820
9874
  */
9821
9875
  clientToken?: string | undefined;
9876
+ /**
9877
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
9878
+ * @public
9879
+ */
9880
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
9822
9881
  }
9823
9882
  /**
9824
9883
  * @public
@@ -9899,6 +9958,11 @@ export interface CreateSubscriptionTargetOutput {
9899
9958
  * @public
9900
9959
  */
9901
9960
  provider: string | undefined;
9961
+ /**
9962
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
9963
+ * @public
9964
+ */
9965
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
9902
9966
  }
9903
9967
  /**
9904
9968
  * @public
@@ -9975,98 +10039,3 @@ export interface DeleteDataProductInput {
9975
10039
  */
9976
10040
  export interface DeleteDataProductOutput {
9977
10041
  }
9978
- /**
9979
- * @public
9980
- */
9981
- export interface GetDataProductInput {
9982
- /**
9983
- * <p>The ID of the domain where the data product lives.</p>
9984
- * @public
9985
- */
9986
- domainIdentifier: string | undefined;
9987
- /**
9988
- * <p>The ID of the data product.</p>
9989
- * @public
9990
- */
9991
- identifier: string | undefined;
9992
- /**
9993
- * <p>The revision of the data product.</p>
9994
- * @public
9995
- */
9996
- revision?: string | undefined;
9997
- }
9998
- /**
9999
- * @public
10000
- */
10001
- export interface GetDataProductOutput {
10002
- /**
10003
- * <p>The ID of the domain where the data product lives.</p>
10004
- * @public
10005
- */
10006
- domainId: string | undefined;
10007
- /**
10008
- * <p>The ID of the data product.</p>
10009
- * @public
10010
- */
10011
- id: string | undefined;
10012
- /**
10013
- * <p>The revision of the data product.</p>
10014
- * @public
10015
- */
10016
- revision: string | undefined;
10017
- /**
10018
- * <p>The ID of the owning project of the data product.</p>
10019
- * @public
10020
- */
10021
- owningProjectId: string | undefined;
10022
- /**
10023
- * <p>The name of the data product.</p>
10024
- * @public
10025
- */
10026
- name: string | undefined;
10027
- /**
10028
- * <p>The status of the data product.</p>
10029
- * @public
10030
- */
10031
- status: DataProductStatus | undefined;
10032
- /**
10033
- * <p>The description of the data product.</p>
10034
- * @public
10035
- */
10036
- description?: string | undefined;
10037
- /**
10038
- * <p>The glossary terms of the data product.</p>
10039
- * @public
10040
- */
10041
- glossaryTerms?: string[] | undefined;
10042
- /**
10043
- * <p>The data assets of the data product.</p>
10044
- * @public
10045
- */
10046
- items?: DataProductItem[] | undefined;
10047
- /**
10048
- * <p>The metadata forms of the data product.</p>
10049
- * @public
10050
- */
10051
- formsOutput?: FormOutput[] | undefined;
10052
- /**
10053
- * <p>The timestamp at which the data product is created.</p>
10054
- * @public
10055
- */
10056
- createdAt?: Date | undefined;
10057
- /**
10058
- * <p>The user who created the data product.</p>
10059
- * @public
10060
- */
10061
- createdBy?: string | undefined;
10062
- /**
10063
- * <p>The timestamp at which the first revision of the data product is created.</p>
10064
- * @public
10065
- */
10066
- firstRevisionCreatedAt?: Date | undefined;
10067
- /**
10068
- * <p>The user who created the first revision of the data product.</p>
10069
- * @public
10070
- */
10071
- firstRevisionCreatedBy?: string | undefined;
10072
- }
@@ -1,5 +1,100 @@
1
- import { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, GroupSearchType, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
- import { type AccountSource, type ActionParameters, type ConnectionCredentials, type ConnectionPropertiesOutput, type DataSourceConfigurationInput, type DataSourceConfigurationOutput, type DataSourceErrorMessage, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type GrantedEntity, type Member, type Model, type OwnerProperties, type PolicyGrantDetail, type PolicyGrantPrincipal, type ProvisioningProperties, type RecommendationConfiguration, type RuleDetail, type RuleScope, type RuleTarget, type ScheduleConfiguration, type SingleSignOn, type TermRelations, type UserProfileDetails, AccountInfo, AccountPoolSummary, AggregationOutput, AssetFilterSummary, AssetItem, AssetListing, AssetListingItem, AssetRevision, AssetTypeItem, ConfigurableEnvironmentAction, ConnectionSummary, CustomParameter, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, FormEntryOutput, FormInput, FormOutput, MatchRationaleItem, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
1
+ import { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, GroupSearchType, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
2
+ import { type AccountSource, type ActionParameters, type ConnectionCredentials, type ConnectionPropertiesOutput, type DataSourceConfigurationInput, type DataSourceConfigurationOutput, type DataSourceErrorMessage, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type GrantedEntity, type Member, type Model, type OwnerProperties, type PolicyGrantDetail, type PolicyGrantPrincipal, type ProvisioningProperties, type RecommendationConfiguration, type RuleDetail, type RuleScope, type RuleTarget, type ScheduleConfiguration, type SingleSignOn, type TermRelations, type UserProfileDetails, AccountInfo, AccountPoolSummary, AggregationOutput, AssetFilterSummary, AssetItem, AssetListing, AssetListingItem, AssetRevision, AssetTypeItem, ConfigurableEnvironmentAction, ConnectionSummary, CustomParameter, DataProductItem, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, FormEntryOutput, FormInput, FormOutput, MatchRationaleItem, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface GetDataProductInput {
7
+ /**
8
+ * <p>The ID of the domain where the data product lives.</p>
9
+ * @public
10
+ */
11
+ domainIdentifier: string | undefined;
12
+ /**
13
+ * <p>The ID of the data product.</p>
14
+ * @public
15
+ */
16
+ identifier: string | undefined;
17
+ /**
18
+ * <p>The revision of the data product.</p>
19
+ * @public
20
+ */
21
+ revision?: string | undefined;
22
+ }
23
+ /**
24
+ * @public
25
+ */
26
+ export interface GetDataProductOutput {
27
+ /**
28
+ * <p>The ID of the domain where the data product lives.</p>
29
+ * @public
30
+ */
31
+ domainId: string | undefined;
32
+ /**
33
+ * <p>The ID of the data product.</p>
34
+ * @public
35
+ */
36
+ id: string | undefined;
37
+ /**
38
+ * <p>The revision of the data product.</p>
39
+ * @public
40
+ */
41
+ revision: string | undefined;
42
+ /**
43
+ * <p>The ID of the owning project of the data product.</p>
44
+ * @public
45
+ */
46
+ owningProjectId: string | undefined;
47
+ /**
48
+ * <p>The name of the data product.</p>
49
+ * @public
50
+ */
51
+ name: string | undefined;
52
+ /**
53
+ * <p>The status of the data product.</p>
54
+ * @public
55
+ */
56
+ status: DataProductStatus | undefined;
57
+ /**
58
+ * <p>The description of the data product.</p>
59
+ * @public
60
+ */
61
+ description?: string | undefined;
62
+ /**
63
+ * <p>The glossary terms of the data product.</p>
64
+ * @public
65
+ */
66
+ glossaryTerms?: string[] | undefined;
67
+ /**
68
+ * <p>The data assets of the data product.</p>
69
+ * @public
70
+ */
71
+ items?: DataProductItem[] | undefined;
72
+ /**
73
+ * <p>The metadata forms of the data product.</p>
74
+ * @public
75
+ */
76
+ formsOutput?: FormOutput[] | undefined;
77
+ /**
78
+ * <p>The timestamp at which the data product is created.</p>
79
+ * @public
80
+ */
81
+ createdAt?: Date | undefined;
82
+ /**
83
+ * <p>The user who created the data product.</p>
84
+ * @public
85
+ */
86
+ createdBy?: string | undefined;
87
+ /**
88
+ * <p>The timestamp at which the first revision of the data product is created.</p>
89
+ * @public
90
+ */
91
+ firstRevisionCreatedAt?: Date | undefined;
92
+ /**
93
+ * <p>The user who created the first revision of the data product.</p>
94
+ * @public
95
+ */
96
+ firstRevisionCreatedBy?: string | undefined;
97
+ }
3
98
  /**
4
99
  * <p>The additional attributes of an Amazon DataZone data product.</p>
5
100
  * @public
@@ -4323,6 +4418,11 @@ export interface GetSubscriptionTargetOutput {
4323
4418
  * @public
4324
4419
  */
4325
4420
  provider: string | undefined;
4421
+ /**
4422
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
4423
+ * @public
4424
+ */
4425
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
4326
4426
  }
4327
4427
  /**
4328
4428
  * @public
@@ -6892,6 +6992,11 @@ export interface ListSubscriptionGrantsInput {
6892
6992
  * @public
6893
6993
  */
6894
6994
  owningProjectId?: string | undefined;
6995
+ /**
6996
+ * <p>The ARN of the owning IAM principal.</p>
6997
+ * @public
6998
+ */
6999
+ owningIamPrincipalArn?: string | undefined;
6895
7000
  /**
6896
7001
  * <p>The ID of the owning user.</p>
6897
7002
  * @public
@@ -7032,6 +7137,11 @@ export interface ListSubscriptionRequestsInput {
7032
7137
  * @public
7033
7138
  */
7034
7139
  owningProjectId?: string | undefined;
7140
+ /**
7141
+ * <p>The ARN of the owning IAM principal.</p>
7142
+ * @public
7143
+ */
7144
+ owningIamPrincipalArn?: string | undefined;
7035
7145
  /**
7036
7146
  * <p>The identifier of the subscription request approver's project.</p>
7037
7147
  * @public
@@ -7211,6 +7321,11 @@ export interface ListSubscriptionsInput {
7211
7321
  * @public
7212
7322
  */
7213
7323
  owningProjectId?: string | undefined;
7324
+ /**
7325
+ * <p>The ARN of the owning IAM principal.</p>
7326
+ * @public
7327
+ */
7328
+ owningIamPrincipalArn?: string | undefined;
7214
7329
  /**
7215
7330
  * <p>The ID of the owning user.</p>
7216
7331
  * @public
@@ -7440,6 +7555,11 @@ export interface SubscriptionTargetSummary {
7440
7555
  * @public
7441
7556
  */
7442
7557
  provider: string | undefined;
7558
+ /**
7559
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
7560
+ * @public
7561
+ */
7562
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
7443
7563
  }
7444
7564
  /**
7445
7565
  * @public
@@ -9426,23 +9546,3 @@ export interface TagResourceRequest {
9426
9546
  */
9427
9547
  export interface TagResourceResponse {
9428
9548
  }
9429
- /**
9430
- * @public
9431
- */
9432
- export interface UntagResourceRequest {
9433
- /**
9434
- * <p>The ARN of the resource to be untagged in Amazon DataZone.</p>
9435
- * @public
9436
- */
9437
- resourceArn: string | undefined;
9438
- /**
9439
- * <p>Specifies the tag keys for the <code>UntagResource</code> action.</p>
9440
- * @public
9441
- */
9442
- tagKeys: string[] | undefined;
9443
- }
9444
- /**
9445
- * @public
9446
- */
9447
- export interface UntagResourceResponse {
9448
- }
@@ -1,6 +1,26 @@
1
- import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType } from "./enums";
1
+ import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType } from "./enums";
2
2
  import { type AccountSource, type ActionParameters, type AwsLocation, type ConnectionPropertiesOutput, type ConnectionPropertiesPatch, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type FailureCause, type GrantedEntity, type ProvisioningProperties, type UserProfileDetails, AggregationListItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentParameter, FormOutput, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm } from "./models_0";
3
3
  import { type SearchSort, Filter, SearchInItem } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UntagResourceRequest {
8
+ /**
9
+ * <p>The ARN of the resource to be untagged in Amazon DataZone.</p>
10
+ * @public
11
+ */
12
+ resourceArn: string | undefined;
13
+ /**
14
+ * <p>Specifies the tag keys for the <code>UntagResource</code> action.</p>
15
+ * @public
16
+ */
17
+ tagKeys: string[] | undefined;
18
+ }
19
+ /**
20
+ * @public
21
+ */
22
+ export interface UntagResourceResponse {
23
+ }
4
24
  /**
5
25
  * @public
6
26
  */
@@ -1182,6 +1202,11 @@ export interface UpdateSubscriptionTargetInput {
1182
1202
  * @public
1183
1203
  */
1184
1204
  provider?: string | undefined;
1205
+ /**
1206
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
1207
+ * @public
1208
+ */
1209
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
1185
1210
  }
1186
1211
  /**
1187
1212
  * @public
@@ -1262,6 +1287,11 @@ export interface UpdateSubscriptionTargetOutput {
1262
1287
  * @public
1263
1288
  */
1264
1289
  provider: string | undefined;
1290
+ /**
1291
+ * <p> Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually. </p>
1292
+ * @public
1293
+ */
1294
+ subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
1265
1295
  }
1266
1296
  /**
1267
1297
  * @public
@@ -528,6 +528,8 @@ export declare var SubscribedAsset$: StaticStructureSchema;
528
528
  export declare var SubscribedAssetListing$: StaticStructureSchema;
529
529
  export declare var SubscribedGroup$: StaticStructureSchema;
530
530
  export declare var SubscribedGroupInput$: StaticStructureSchema;
531
+ export declare var SubscribedIamPrincipal$: StaticStructureSchema;
532
+ export declare var SubscribedIamPrincipalInput$: StaticStructureSchema;
531
533
  export declare var SubscribedListing$: StaticStructureSchema;
532
534
  export declare var SubscribedListingInput$: StaticStructureSchema;
533
535
  export declare var SubscribedProductListing$: StaticStructureSchema;
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import { GetDataProductInput, GetDataProductOutput } from "../models/models_0";
8
+ import { GetDataProductInput, GetDataProductOutput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface GetDataProductCommandInput extends GetDataProductInput {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UntagResourceRequest,
10
10
  UntagResourceResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
@@ -515,6 +515,12 @@ export declare const SubscriptionGrantOverallStatus: {
515
515
  };
516
516
  export type SubscriptionGrantOverallStatus =
517
517
  (typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
518
+ export declare const SubscriptionGrantCreationMode: {
519
+ readonly AUTOMATIC: "AUTOMATIC";
520
+ readonly MANUAL: "MANUAL";
521
+ };
522
+ export type SubscriptionGrantCreationMode =
523
+ (typeof SubscriptionGrantCreationMode)[keyof typeof SubscriptionGrantCreationMode];
518
524
  export declare const UserType: {
519
525
  readonly IAM_ROLE: "IAM_ROLE";
520
526
  readonly IAM_USER: "IAM_USER";