@aws-sdk/client-datazone 3.1030.0 → 3.1032.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 +9 -7
- package/dist-cjs/schemas/schemas_0.js +65 -48
- package/dist-es/models/enums.js +9 -7
- package/dist-es/schemas/schemas_0.js +57 -40
- package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +2 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
- package/dist-types/commands/CreateGroupProfileCommand.d.ts +4 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +12 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +2 -0
- package/dist-types/commands/CreateUserProfileCommand.d.ts +4 -1
- package/dist-types/commands/GetGroupProfileCommand.d.ts +2 -0
- package/dist-types/commands/GetProjectCommand.d.ts +1 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +2 -0
- package/dist-types/commands/GetUserProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +2 -0
- package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +2 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -0
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +2 -0
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/SearchGroupProfilesCommand.d.ts +3 -1
- package/dist-types/commands/SearchUserProfilesCommand.d.ts +2 -0
- package/dist-types/commands/UpdateGroupProfileCommand.d.ts +2 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +2 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +3 -0
- package/dist-types/models/enums.d.ts +17 -15
- package/dist-types/models/models_0.d.ts +105 -60
- package/dist-types/models/models_1.d.ts +52 -27
- package/dist-types/models/models_2.d.ts +58 -2
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +11 -9
- package/dist-types/ts3.4/models/models_0.d.ts +41 -32
- package/dist-types/ts3.4/models/models_1.d.ts +11 -7
- package/dist-types/ts3.4/models/models_2.d.ts +13 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +34 -34
|
@@ -56,18 +56,25 @@ import {
|
|
|
56
56
|
SubscribedAsset,
|
|
57
57
|
SubscribedListing,
|
|
58
58
|
SubscribedPrincipal,
|
|
59
|
-
SubscriptionTargetForm,
|
|
60
59
|
UserProfileDetails,
|
|
61
60
|
} from "./models_0";
|
|
62
61
|
import {
|
|
63
62
|
DataProductListingItem,
|
|
64
63
|
Filter,
|
|
65
|
-
GroupProfileSummary,
|
|
66
64
|
Import,
|
|
67
65
|
RelationPattern,
|
|
68
66
|
SearchInItem,
|
|
69
67
|
SearchSort,
|
|
68
|
+
SubscriptionTargetForm,
|
|
70
69
|
} from "./models_1";
|
|
70
|
+
export interface GroupProfileSummary {
|
|
71
|
+
domainId?: string | undefined;
|
|
72
|
+
id?: string | undefined;
|
|
73
|
+
status?: GroupProfileStatus | undefined;
|
|
74
|
+
groupName?: string | undefined;
|
|
75
|
+
rolePrincipalArn?: string | undefined;
|
|
76
|
+
rolePrincipalId?: string | undefined;
|
|
77
|
+
}
|
|
71
78
|
export interface SearchGroupProfilesOutput {
|
|
72
79
|
items?: GroupProfileSummary[] | undefined;
|
|
73
80
|
nextToken?: string | undefined;
|
|
@@ -345,6 +352,8 @@ export interface UpdateGroupProfileOutput {
|
|
|
345
352
|
id?: string | undefined;
|
|
346
353
|
status?: GroupProfileStatus | undefined;
|
|
347
354
|
groupName?: string | undefined;
|
|
355
|
+
rolePrincipalArn?: string | undefined;
|
|
356
|
+
rolePrincipalId?: string | undefined;
|
|
348
357
|
}
|
|
349
358
|
export interface UpdateProjectInput {
|
|
350
359
|
domainIdentifier: string | undefined;
|
|
@@ -374,6 +383,7 @@ export interface UpdateProjectOutput {
|
|
|
374
383
|
projectProfileId?: string | undefined;
|
|
375
384
|
userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
|
|
376
385
|
environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
|
|
386
|
+
projectCategory?: string | undefined;
|
|
377
387
|
}
|
|
378
388
|
export interface UpdateProjectProfileInput {
|
|
379
389
|
domainIdentifier: string | undefined;
|
|
@@ -487,6 +497,7 @@ export interface UpdateUserProfileInput {
|
|
|
487
497
|
userIdentifier: string | undefined;
|
|
488
498
|
type?: UserProfileType | undefined;
|
|
489
499
|
status: UserProfileStatus | undefined;
|
|
500
|
+
sessionName?: string | undefined;
|
|
490
501
|
}
|
|
491
502
|
export interface UpdateUserProfileOutput {
|
|
492
503
|
domainId?: string | undefined;
|
|
@@ -470,6 +470,7 @@ export declare var PostTimeSeriesDataPointsOutput$: StaticStructureSchema;
|
|
|
470
470
|
export declare var PredictionConfiguration$: StaticStructureSchema;
|
|
471
471
|
export declare var ProjectDeletionError$: StaticStructureSchema;
|
|
472
472
|
export declare var ProjectMember$: StaticStructureSchema;
|
|
473
|
+
export declare var ProjectMembershipAssignment$: StaticStructureSchema;
|
|
473
474
|
export declare var ProjectPolicyGrantPrincipal$: StaticStructureSchema;
|
|
474
475
|
export declare var ProjectProfileSummary$: StaticStructureSchema;
|
|
475
476
|
export declare var ProjectsForRule$: 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.1032.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.14.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.974.1",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.32",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.31",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
31
|
+
"@aws-sdk/types": "^3.973.8",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.17",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.16",
|
|
36
|
+
"@smithy/core": "^3.23.15",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
|
+
"@smithy/hash-node": "^4.2.14",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.30",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.18",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.14",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.3",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.11",
|
|
49
|
+
"@smithy/types": "^4.14.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
59
|
-
"@smithy/util-stream": "^4.5.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.47",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.52",
|
|
56
|
+
"@smithy/util-endpoints": "^3.4.1",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
+
"@smithy/util-retry": "^4.3.2",
|
|
59
|
+
"@smithy/util-stream": "^4.5.23",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.2",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|