@aws-sdk/client-datazone 3.1029.0 → 3.1031.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 (38) hide show
  1. package/dist-cjs/index.js +9 -7
  2. package/dist-cjs/schemas/schemas_0.js +65 -48
  3. package/dist-es/models/enums.js +9 -7
  4. package/dist-es/schemas/schemas_0.js +57 -40
  5. package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +2 -0
  6. package/dist-types/commands/CancelSubscriptionCommand.d.ts +2 -0
  7. package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateGroupProfileCommand.d.ts +4 -1
  9. package/dist-types/commands/CreateProjectCommand.d.ts +12 -0
  10. package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +2 -0
  11. package/dist-types/commands/CreateUserProfileCommand.d.ts +4 -1
  12. package/dist-types/commands/GetGroupProfileCommand.d.ts +2 -0
  13. package/dist-types/commands/GetProjectCommand.d.ts +1 -0
  14. package/dist-types/commands/GetSubscriptionCommand.d.ts +2 -0
  15. package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +2 -0
  16. package/dist-types/commands/GetUserProfileCommand.d.ts +3 -0
  17. package/dist-types/commands/ListProjectsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +2 -0
  19. package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -0
  20. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +2 -0
  21. package/dist-types/commands/RevokeSubscriptionCommand.d.ts +2 -0
  22. package/dist-types/commands/SearchGroupProfilesCommand.d.ts +3 -1
  23. package/dist-types/commands/SearchUserProfilesCommand.d.ts +2 -0
  24. package/dist-types/commands/UpdateGroupProfileCommand.d.ts +2 -0
  25. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +2 -0
  27. package/dist-types/commands/UpdateUserProfileCommand.d.ts +3 -0
  28. package/dist-types/models/enums.d.ts +17 -15
  29. package/dist-types/models/models_0.d.ts +105 -60
  30. package/dist-types/models/models_1.d.ts +52 -27
  31. package/dist-types/models/models_2.d.ts +58 -2
  32. package/dist-types/schemas/schemas_0.d.ts +1 -0
  33. package/dist-types/ts3.4/models/enums.d.ts +11 -9
  34. package/dist-types/ts3.4/models/models_0.d.ts +41 -32
  35. package/dist-types/ts3.4/models/models_1.d.ts +11 -7
  36. package/dist-types/ts3.4/models/models_2.d.ts +13 -2
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  38. 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.1029.0",
4
+ "version": "3.1031.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.973.27",
25
- "@aws-sdk/credential-provider-node": "^3.972.30",
26
- "@aws-sdk/middleware-host-header": "^3.972.9",
27
- "@aws-sdk/middleware-logger": "^3.972.9",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.10",
29
- "@aws-sdk/middleware-user-agent": "^3.972.29",
30
- "@aws-sdk/region-config-resolver": "^3.972.11",
31
- "@aws-sdk/types": "^3.973.7",
32
- "@aws-sdk/util-endpoints": "^3.996.6",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.9",
34
- "@aws-sdk/util-user-agent-node": "^3.973.15",
35
- "@smithy/config-resolver": "^4.4.14",
36
- "@smithy/core": "^3.23.14",
37
- "@smithy/fetch-http-handler": "^5.3.16",
38
- "@smithy/hash-node": "^4.2.13",
39
- "@smithy/invalid-dependency": "^4.2.13",
40
- "@smithy/middleware-content-length": "^4.2.13",
41
- "@smithy/middleware-endpoint": "^4.4.29",
42
- "@smithy/middleware-retry": "^4.5.0",
43
- "@smithy/middleware-serde": "^4.2.17",
44
- "@smithy/middleware-stack": "^4.2.13",
45
- "@smithy/node-config-provider": "^4.3.13",
46
- "@smithy/node-http-handler": "^4.5.2",
47
- "@smithy/protocol-http": "^5.3.13",
48
- "@smithy/smithy-client": "^4.12.9",
49
- "@smithy/types": "^4.14.0",
50
- "@smithy/url-parser": "^4.2.13",
24
+ "@aws-sdk/core": "^3.974.0",
25
+ "@aws-sdk/credential-provider-node": "^3.972.31",
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.30",
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.16",
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.45",
55
- "@smithy/util-defaults-mode-node": "^4.2.49",
56
- "@smithy/util-endpoints": "^3.3.4",
57
- "@smithy/util-middleware": "^4.2.13",
58
- "@smithy/util-retry": "^4.3.0",
59
- "@smithy/util-stream": "^4.5.22",
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
  },