@aws-sdk/client-datazone 3.930.0 → 3.932.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +120 -47
- package/dist-es/models/models_0.js +10 -25
- package/dist-es/models/models_1.js +19 -0
- package/dist-es/schemas/schemas_0.js +109 -40
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +36 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +50 -0
- package/dist-types/commands/DeleteSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/GetSubscriptionGrantCommand.d.ts +6 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +23 -0
- package/dist-types/commands/ListSubscriptionGrantsCommand.d.ts +10 -1
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +26 -1
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +26 -2
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +23 -0
- package/dist-types/commands/UpdateSubscriptionGrantStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +224 -234
- package/dist-types/models/models_1.d.ts +320 -379
- package/dist-types/models/models_2.d.ts +325 -3
- package/dist-types/schemas/schemas_0.d.ts +9 -1
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListSubscriptionGrantsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSubscriptionRequestsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +96 -87
- package/dist-types/ts3.4/models/models_1.d.ts +121 -106
- package/dist-types/ts3.4/models/models_2.d.ts +76 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -1
- package/package.json +5 -5
|
@@ -18,7 +18,6 @@ import {
|
|
|
18
18
|
Deployment,
|
|
19
19
|
DeploymentProperties,
|
|
20
20
|
EnvironmentConfigurationUserParameter,
|
|
21
|
-
EnvironmentDeploymentDetails,
|
|
22
21
|
EnvironmentParameter,
|
|
23
22
|
EnvironmentStatus,
|
|
24
23
|
FilterStatus,
|
|
@@ -35,12 +34,9 @@ import {
|
|
|
35
34
|
OwnerProperties,
|
|
36
35
|
PhysicalEndpoint,
|
|
37
36
|
PolicyGrantPrincipal,
|
|
38
|
-
ProjectDeletionError,
|
|
39
|
-
ProjectStatus,
|
|
40
37
|
ProvisioningProperties,
|
|
41
38
|
ResolutionStrategy,
|
|
42
39
|
Resource,
|
|
43
|
-
ResourceTag,
|
|
44
40
|
RowFilterExpression,
|
|
45
41
|
SubscribedListing,
|
|
46
42
|
SubscribedPrincipal,
|
|
@@ -49,14 +45,19 @@ import {
|
|
|
49
45
|
TargetEntityType,
|
|
50
46
|
TermRelations,
|
|
51
47
|
TimeSeriesDataPointSummaryFormOutput,
|
|
48
|
+
UserProfileDetails,
|
|
52
49
|
} from "./models_0";
|
|
53
50
|
import {
|
|
54
51
|
DataProductListingItem,
|
|
55
52
|
DataProductResultItem,
|
|
56
53
|
EnvironmentConfiguration,
|
|
54
|
+
EnvironmentDeploymentDetails,
|
|
57
55
|
FailureCause,
|
|
58
56
|
GrantedEntity,
|
|
59
57
|
Import,
|
|
58
|
+
ProjectDeletionError,
|
|
59
|
+
ProjectStatus,
|
|
60
|
+
ResourceTag,
|
|
60
61
|
ResourceTagParameter,
|
|
61
62
|
RuleAction,
|
|
62
63
|
RuleDetail,
|
|
@@ -70,14 +71,82 @@ import {
|
|
|
70
71
|
SubscribedAsset,
|
|
71
72
|
SubscriptionGrantOverallStatus,
|
|
72
73
|
SubscriptionGrantStatus,
|
|
73
|
-
|
|
74
|
+
SubscriptionGrantSummary,
|
|
74
75
|
SubscriptionTargetForm,
|
|
75
76
|
TimeSeriesDataPointFormOutput,
|
|
76
77
|
TimeSeriesEntityType,
|
|
77
|
-
UserProfileDetails,
|
|
78
78
|
UserProfileStatus,
|
|
79
79
|
UserProfileType,
|
|
80
80
|
} from "./models_1";
|
|
81
|
+
export interface ListSubscriptionGrantsOutput {
|
|
82
|
+
items: SubscriptionGrantSummary[] | undefined;
|
|
83
|
+
nextToken?: string | undefined;
|
|
84
|
+
}
|
|
85
|
+
export interface ListSubscriptionRequestsInput {
|
|
86
|
+
domainIdentifier: string | undefined;
|
|
87
|
+
status?: SubscriptionRequestStatus | undefined;
|
|
88
|
+
subscribedListingId?: string | undefined;
|
|
89
|
+
owningProjectId?: string | undefined;
|
|
90
|
+
approverProjectId?: string | undefined;
|
|
91
|
+
owningUserId?: string | undefined;
|
|
92
|
+
owningGroupId?: string | undefined;
|
|
93
|
+
sortBy?: SortKey | undefined;
|
|
94
|
+
sortOrder?: SortOrder | undefined;
|
|
95
|
+
maxResults?: number | undefined;
|
|
96
|
+
nextToken?: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface MetadataFormSummary {
|
|
99
|
+
formName?: string | undefined;
|
|
100
|
+
typeName: string | undefined;
|
|
101
|
+
typeRevision: string | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface SubscriptionRequestSummary {
|
|
104
|
+
id: string | undefined;
|
|
105
|
+
createdBy: string | undefined;
|
|
106
|
+
updatedBy?: string | undefined;
|
|
107
|
+
domainId: string | undefined;
|
|
108
|
+
status: SubscriptionRequestStatus | undefined;
|
|
109
|
+
createdAt: Date | undefined;
|
|
110
|
+
updatedAt: Date | undefined;
|
|
111
|
+
requestReason: string | undefined;
|
|
112
|
+
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
113
|
+
subscribedListings: SubscribedListing[] | undefined;
|
|
114
|
+
reviewerId?: string | undefined;
|
|
115
|
+
decisionComment?: string | undefined;
|
|
116
|
+
existingSubscriptionId?: string | undefined;
|
|
117
|
+
metadataFormsSummary?: MetadataFormSummary[] | undefined;
|
|
118
|
+
}
|
|
119
|
+
export interface ListSubscriptionRequestsOutput {
|
|
120
|
+
items: SubscriptionRequestSummary[] | undefined;
|
|
121
|
+
nextToken?: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface ListSubscriptionsInput {
|
|
124
|
+
domainIdentifier: string | undefined;
|
|
125
|
+
subscriptionRequestIdentifier?: string | undefined;
|
|
126
|
+
status?: SubscriptionStatus | undefined;
|
|
127
|
+
subscribedListingId?: string | undefined;
|
|
128
|
+
owningProjectId?: string | undefined;
|
|
129
|
+
owningUserId?: string | undefined;
|
|
130
|
+
owningGroupId?: string | undefined;
|
|
131
|
+
approverProjectId?: string | undefined;
|
|
132
|
+
sortBy?: SortKey | undefined;
|
|
133
|
+
sortOrder?: SortOrder | undefined;
|
|
134
|
+
maxResults?: number | undefined;
|
|
135
|
+
nextToken?: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface SubscriptionSummary {
|
|
138
|
+
id: string | undefined;
|
|
139
|
+
createdBy: string | undefined;
|
|
140
|
+
updatedBy?: string | undefined;
|
|
141
|
+
domainId: string | undefined;
|
|
142
|
+
status: SubscriptionStatus | undefined;
|
|
143
|
+
createdAt: Date | undefined;
|
|
144
|
+
updatedAt: Date | undefined;
|
|
145
|
+
subscribedPrincipal: SubscribedPrincipal | undefined;
|
|
146
|
+
subscribedListing: SubscribedListing | undefined;
|
|
147
|
+
subscriptionRequestId?: string | undefined;
|
|
148
|
+
retainPermissions?: boolean | undefined;
|
|
149
|
+
}
|
|
81
150
|
export interface ListSubscriptionsOutput {
|
|
82
151
|
items: SubscriptionSummary[] | undefined;
|
|
83
152
|
nextToken?: string | undefined;
|
|
@@ -894,6 +963,7 @@ export interface UpdateSubscriptionGrantStatusOutput {
|
|
|
894
963
|
domainId: string | undefined;
|
|
895
964
|
createdAt: Date | undefined;
|
|
896
965
|
updatedAt: Date | undefined;
|
|
966
|
+
environmentId?: string | undefined;
|
|
897
967
|
subscriptionTargetId: string | undefined;
|
|
898
968
|
grantedEntity: GrantedEntity | undefined;
|
|
899
969
|
status: SubscriptionGrantOverallStatus | undefined;
|
|
@@ -77,6 +77,7 @@ export declare var AssetListing: StaticStructureSchema;
|
|
|
77
77
|
export declare var AssetListingDetails: StaticStructureSchema;
|
|
78
78
|
export declare var AssetListingItem: StaticStructureSchema;
|
|
79
79
|
export declare var AssetListingItemAdditionalAttributes: StaticStructureSchema;
|
|
80
|
+
export declare var AssetPermission: StaticStructureSchema;
|
|
80
81
|
export declare var AssetRevision: StaticStructureSchema;
|
|
81
82
|
export declare var AssetScope: StaticStructureSchema;
|
|
82
83
|
export declare var AssetTargetNameMap: StaticStructureSchema;
|
|
@@ -557,11 +558,15 @@ export declare var StartMetadataGenerationRunInput: StaticStructureSchema;
|
|
|
557
558
|
export declare var StartMetadataGenerationRunOutput: StaticStructureSchema;
|
|
558
559
|
export declare var SubscribedAsset: StaticStructureSchema;
|
|
559
560
|
export declare var SubscribedAssetListing: StaticStructureSchema;
|
|
561
|
+
export declare var SubscribedGroup: StaticStructureSchema;
|
|
562
|
+
export declare var SubscribedGroupInput: StaticStructureSchema;
|
|
560
563
|
export declare var SubscribedListing: StaticStructureSchema;
|
|
561
564
|
export declare var SubscribedListingInput: StaticStructureSchema;
|
|
562
565
|
export declare var SubscribedProductListing: StaticStructureSchema;
|
|
563
566
|
export declare var SubscribedProject: StaticStructureSchema;
|
|
564
567
|
export declare var SubscribedProjectInput: StaticStructureSchema;
|
|
568
|
+
export declare var SubscribedUser: StaticStructureSchema;
|
|
569
|
+
export declare var SubscribedUserInput: StaticStructureSchema;
|
|
565
570
|
export declare var SubscriptionGrantSummary: StaticStructureSchema;
|
|
566
571
|
export declare var SubscriptionRequestSummary: StaticStructureSchema;
|
|
567
572
|
export declare var SubscriptionSummary: StaticStructureSchema;
|
|
@@ -577,7 +582,7 @@ export declare var TimeSeriesDataPointFormOutput: StaticStructureSchema;
|
|
|
577
582
|
export declare var TimeSeriesDataPointSummaryFormOutput: StaticStructureSchema;
|
|
578
583
|
export declare var Topic: StaticStructureSchema;
|
|
579
584
|
export declare var UnauthorizedException: StaticErrorSchema;
|
|
580
|
-
export declare var
|
|
585
|
+
export declare var Unit: StaticStructureSchema;
|
|
581
586
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
582
587
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
583
588
|
export declare var UpdateAccountPoolInput: StaticStructureSchema;
|
|
@@ -638,6 +643,7 @@ export declare var AggregationOutputList: StaticListSchema;
|
|
|
638
643
|
export declare var ApplicableAssetTypes: number;
|
|
639
644
|
export declare var AssetFilters: StaticListSchema;
|
|
640
645
|
export declare var AssetInDataProductListingItems: StaticListSchema;
|
|
646
|
+
export declare var AssetPermissions: StaticListSchema;
|
|
641
647
|
export declare var AssetRevisions: StaticListSchema;
|
|
642
648
|
export declare var AssetTargetNames: StaticListSchema;
|
|
643
649
|
export declare var AssetTypeIdentifiers: number;
|
|
@@ -721,6 +727,7 @@ export declare var RuleAssetTypeList: number;
|
|
|
721
727
|
export declare var RuleProjectIdentifierList: number;
|
|
722
728
|
export declare var RuleSummaries: StaticListSchema;
|
|
723
729
|
export declare var S3LocationList: number;
|
|
730
|
+
export declare var S3Permissions: number;
|
|
724
731
|
export declare var SearchInList: StaticListSchema;
|
|
725
732
|
export declare var SearchInventoryResultItems: StaticListSchema;
|
|
726
733
|
export declare var SearchOutputAdditionalAttributes: number;
|
|
@@ -784,6 +791,7 @@ export declare var MemberDetails: StaticStructureSchema;
|
|
|
784
791
|
export declare var Model: StaticStructureSchema;
|
|
785
792
|
export declare var OwnerProperties: StaticStructureSchema;
|
|
786
793
|
export declare var OwnerPropertiesOutput: StaticStructureSchema;
|
|
794
|
+
export declare var Permissions: StaticStructureSchema;
|
|
787
795
|
export declare var PolicyGrantDetail: StaticStructureSchema;
|
|
788
796
|
export declare var PolicyGrantPrincipal: StaticStructureSchema;
|
|
789
797
|
export declare var ProjectGrantFilter: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.932.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.932.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.932.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.932.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.932.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|