@aws-sdk/client-datazone 3.967.0 → 3.969.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 +562 -540
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +555 -540
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +3 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -0
- package/dist-types/commands/GetDataProductCommand.d.ts +1 -1
- package/dist-types/commands/GetSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +3 -0
- package/dist-types/commands/GetSubscriptionTargetCommand.d.ts +1 -0
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +1 -0
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +4 -0
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +4 -0
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +3 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +3 -0
- package/dist-types/commands/UpdateSubscriptionTargetCommand.d.ts +2 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +67 -98
- package/dist-types/models/models_1.d.ts +122 -22
- package/dist-types/models/models_2.d.ts +31 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDataProductCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -21
- package/dist-types/ts3.4/models/models_1.d.ts +29 -5
- package/dist-types/ts3.4/models/models_2.d.ts +8 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +37 -37
|
@@ -94,6 +94,9 @@ declare const AcceptSubscriptionRequestCommand_base: {
|
|
|
94
94
|
* // id: "STRING_VALUE",
|
|
95
95
|
* // name: "STRING_VALUE",
|
|
96
96
|
* // },
|
|
97
|
+
* // iam: { // SubscribedIamPrincipal
|
|
98
|
+
* // principalArn: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
97
100
|
* // },
|
|
98
101
|
* // ],
|
|
99
102
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -73,6 +73,9 @@ declare const CancelSubscriptionCommand_base: {
|
|
|
73
73
|
* // id: "STRING_VALUE",
|
|
74
74
|
* // name: "STRING_VALUE",
|
|
75
75
|
* // },
|
|
76
|
+
* // iam: { // SubscribedIamPrincipal
|
|
77
|
+
* // principalArn: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
76
79
|
* // },
|
|
77
80
|
* // subscribedListing: { // SubscribedListing
|
|
78
81
|
* // id: "STRING_VALUE", // required
|
|
@@ -49,6 +49,9 @@ declare const CreateSubscriptionRequestCommand_base: {
|
|
|
49
49
|
* group: { // SubscribedGroupInput
|
|
50
50
|
* identifier: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
|
+
* iam: { // SubscribedIamPrincipalInput
|
|
53
|
+
* identifier: "STRING_VALUE",
|
|
54
|
+
* },
|
|
52
55
|
* },
|
|
53
56
|
* ],
|
|
54
57
|
* subscribedListings: [ // SubscribedListingInputs // required
|
|
@@ -120,6 +123,9 @@ declare const CreateSubscriptionRequestCommand_base: {
|
|
|
120
123
|
* // id: "STRING_VALUE",
|
|
121
124
|
* // name: "STRING_VALUE",
|
|
122
125
|
* // },
|
|
126
|
+
* // iam: { // SubscribedIamPrincipal
|
|
127
|
+
* // principalArn: "STRING_VALUE",
|
|
128
|
+
* // },
|
|
123
129
|
* // },
|
|
124
130
|
* // ],
|
|
125
131
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -56,6 +56,7 @@ declare const CreateSubscriptionTargetCommand_base: {
|
|
|
56
56
|
* ],
|
|
57
57
|
* provider: "STRING_VALUE",
|
|
58
58
|
* clientToken: "STRING_VALUE",
|
|
59
|
+
* subscriptionGrantCreationMode: "AUTOMATIC" || "MANUAL",
|
|
59
60
|
* };
|
|
60
61
|
* const command = new CreateSubscriptionTargetCommand(input);
|
|
61
62
|
* const response = await client.send(command);
|
|
@@ -84,6 +85,7 @@ declare const CreateSubscriptionTargetCommand_base: {
|
|
|
84
85
|
* // },
|
|
85
86
|
* // ],
|
|
86
87
|
* // provider: "STRING_VALUE", // required
|
|
88
|
+
* // subscriptionGrantCreationMode: "AUTOMATIC" || "MANUAL",
|
|
87
89
|
* // };
|
|
88
90
|
*
|
|
89
91
|
* ```
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { GetDataProductInput, GetDataProductOutput } from "../models/
|
|
4
|
+
import type { GetDataProductInput, GetDataProductOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -73,6 +73,9 @@ declare const GetSubscriptionCommand_base: {
|
|
|
73
73
|
* // id: "STRING_VALUE",
|
|
74
74
|
* // name: "STRING_VALUE",
|
|
75
75
|
* // },
|
|
76
|
+
* // iam: { // SubscribedIamPrincipal
|
|
77
|
+
* // principalArn: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
76
79
|
* // },
|
|
77
80
|
* // subscribedListing: { // SubscribedListing
|
|
78
81
|
* // id: "STRING_VALUE", // required
|
|
@@ -75,6 +75,9 @@ declare const GetSubscriptionRequestDetailsCommand_base: {
|
|
|
75
75
|
* // id: "STRING_VALUE",
|
|
76
76
|
* // name: "STRING_VALUE",
|
|
77
77
|
* // },
|
|
78
|
+
* // iam: { // SubscribedIamPrincipal
|
|
79
|
+
* // principalArn: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
78
81
|
* // },
|
|
79
82
|
* // ],
|
|
80
83
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -43,6 +43,7 @@ declare const ListSubscriptionGrantsCommand_base: {
|
|
|
43
43
|
* subscribedListingId: "STRING_VALUE",
|
|
44
44
|
* subscriptionId: "STRING_VALUE",
|
|
45
45
|
* owningProjectId: "STRING_VALUE",
|
|
46
|
+
* owningIamPrincipalArn: "STRING_VALUE",
|
|
46
47
|
* owningUserId: "STRING_VALUE",
|
|
47
48
|
* owningGroupId: "STRING_VALUE",
|
|
48
49
|
* sortBy: "CREATED_AT" || "UPDATED_AT",
|
|
@@ -41,6 +41,7 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
41
41
|
* status: "PENDING" || "ACCEPTED" || "REJECTED",
|
|
42
42
|
* subscribedListingId: "STRING_VALUE",
|
|
43
43
|
* owningProjectId: "STRING_VALUE",
|
|
44
|
+
* owningIamPrincipalArn: "STRING_VALUE",
|
|
44
45
|
* approverProjectId: "STRING_VALUE",
|
|
45
46
|
* owningUserId: "STRING_VALUE",
|
|
46
47
|
* owningGroupId: "STRING_VALUE",
|
|
@@ -86,6 +87,9 @@ declare const ListSubscriptionRequestsCommand_base: {
|
|
|
86
87
|
* // id: "STRING_VALUE",
|
|
87
88
|
* // name: "STRING_VALUE",
|
|
88
89
|
* // },
|
|
90
|
+
* // iam: { // SubscribedIamPrincipal
|
|
91
|
+
* // principalArn: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
89
93
|
* // },
|
|
90
94
|
* // ],
|
|
91
95
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -42,6 +42,7 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
42
42
|
* status: "APPROVED" || "REVOKED" || "CANCELLED",
|
|
43
43
|
* subscribedListingId: "STRING_VALUE",
|
|
44
44
|
* owningProjectId: "STRING_VALUE",
|
|
45
|
+
* owningIamPrincipalArn: "STRING_VALUE",
|
|
45
46
|
* owningUserId: "STRING_VALUE",
|
|
46
47
|
* owningGroupId: "STRING_VALUE",
|
|
47
48
|
* approverProjectId: "STRING_VALUE",
|
|
@@ -85,6 +86,9 @@ declare const ListSubscriptionsCommand_base: {
|
|
|
85
86
|
* // id: "STRING_VALUE",
|
|
86
87
|
* // name: "STRING_VALUE",
|
|
87
88
|
* // },
|
|
89
|
+
* // iam: { // SubscribedIamPrincipal
|
|
90
|
+
* // principalArn: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
88
92
|
* // },
|
|
89
93
|
* // subscribedListing: { // SubscribedListing
|
|
90
94
|
* // id: "STRING_VALUE", // required
|
|
@@ -76,6 +76,9 @@ declare const RejectSubscriptionRequestCommand_base: {
|
|
|
76
76
|
* // id: "STRING_VALUE",
|
|
77
77
|
* // name: "STRING_VALUE",
|
|
78
78
|
* // },
|
|
79
|
+
* // iam: { // SubscribedIamPrincipal
|
|
80
|
+
* // principalArn: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
79
82
|
* // },
|
|
80
83
|
* // ],
|
|
81
84
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -74,6 +74,9 @@ declare const RevokeSubscriptionCommand_base: {
|
|
|
74
74
|
* // id: "STRING_VALUE",
|
|
75
75
|
* // name: "STRING_VALUE",
|
|
76
76
|
* // },
|
|
77
|
+
* // iam: { // SubscribedIamPrincipal
|
|
78
|
+
* // principalArn: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
77
80
|
* // },
|
|
78
81
|
* // subscribedListing: { // SubscribedListing
|
|
79
82
|
* // id: "STRING_VALUE", // required
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { UntagResourceRequest, UntagResourceResponse } from "../models/
|
|
4
|
+
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -76,6 +76,9 @@ declare const UpdateSubscriptionRequestCommand_base: {
|
|
|
76
76
|
* // id: "STRING_VALUE",
|
|
77
77
|
* // name: "STRING_VALUE",
|
|
78
78
|
* // },
|
|
79
|
+
* // iam: { // SubscribedIamPrincipal
|
|
80
|
+
* // principalArn: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
79
82
|
* // },
|
|
80
83
|
* // ],
|
|
81
84
|
* // subscribedListings: [ // SubscribedListings // required
|
|
@@ -55,6 +55,7 @@ declare const UpdateSubscriptionTargetCommand_base: {
|
|
|
55
55
|
* ],
|
|
56
56
|
* manageAccessRole: "STRING_VALUE",
|
|
57
57
|
* provider: "STRING_VALUE",
|
|
58
|
+
* subscriptionGrantCreationMode: "AUTOMATIC" || "MANUAL",
|
|
58
59
|
* };
|
|
59
60
|
* const command = new UpdateSubscriptionTargetCommand(input);
|
|
60
61
|
* const response = await client.send(command);
|
|
@@ -83,6 +84,7 @@ declare const UpdateSubscriptionTargetCommand_base: {
|
|
|
83
84
|
* // },
|
|
84
85
|
* // ],
|
|
85
86
|
* // provider: "STRING_VALUE", // required
|
|
87
|
+
* // subscriptionGrantCreationMode: "AUTOMATIC" || "MANUAL",
|
|
86
88
|
* // };
|
|
87
89
|
*
|
|
88
90
|
* ```
|
|
@@ -890,6 +890,18 @@ export declare const SubscriptionGrantOverallStatus: {
|
|
|
890
890
|
* @public
|
|
891
891
|
*/
|
|
892
892
|
export type SubscriptionGrantOverallStatus = (typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
|
|
893
|
+
/**
|
|
894
|
+
* @public
|
|
895
|
+
* @enum
|
|
896
|
+
*/
|
|
897
|
+
export declare const SubscriptionGrantCreationMode: {
|
|
898
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
899
|
+
readonly MANUAL: "MANUAL";
|
|
900
|
+
};
|
|
901
|
+
/**
|
|
902
|
+
* @public
|
|
903
|
+
*/
|
|
904
|
+
export type SubscriptionGrantCreationMode = (typeof SubscriptionGrantCreationMode)[keyof typeof SubscriptionGrantCreationMode];
|
|
893
905
|
/**
|
|
894
906
|
* @public
|
|
895
907
|
* @enum
|
|
@@ -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
|
-
}
|